Contexto

Una empresa de Carolina del Norte, EE.UU., gestiona reclamaciones de compensaciones laborales para sus clientes. A continuación se provee un análisis de datos para identificar los principales costos de los reclamos y el tiempo necesario para procesarlos, brindando así un programa que vuelva más eficiente el trabajo y convierta a la empresa en una más receptiva hacia los reclamantes.

Cuando un trabajador de una empresa participante se lesiona en su trabajo, puede presentar un reclamo para cubrir los gastos médicos y la pérdida de salarios relacionados con la lesión. Cuando se presenta un reclamo por primera vez, se crea un identificador único para el reclamo y se registran los detalles del mismo. Los detalles del reclamo se actualizan a medida que se realizan pagos para resolver el reclamo. Los pagos pueden realizarse por diversas actividades relacionadas con el reclamo, como visitas médicas, farmacia, etc.

1. Preparar la Base de Datos

1.1 Traer las Bases de Datos

La empresa cuenta con 2 bases de datos: la principal que contiene la descripción de cada reclamo y la secundaria con toda la información de transacciones económicas realizadas. Aquí se van a fusionar ambas a través del Identificador del Reclamo.

transaction <- read.csv("C:\\Users\\karim\\OneDrive\\Escritorio\\Ejercicios R\\Actividad 4.1 Intensiva\\TransactionsSummary2018.csv")
claims <- read.csv("C:\\Users\\karim\\OneDrive\\Escritorio\\Ejercicios R\\Actividad 4.1 Intensiva\\ClaimsData2018.csv")

# Se juntan ambas bases con "ClaimID" 
dfmerge0 <- merge(transaction, claims, by = "ClaimID", all = TRUE)

Filtrar mi Base de Datos

Antes de comenzar a preparar la base de datos, se iniciará con el filtro personalizado asignado a este trabajo. La indicación dada fue trabajar únicamente con la región del cuerpo (BodyPartRegion): cabeza (Head).

dfmerge <- subset(dfmerge0, BodyPartRegion == "Head")

1.2 Entender la Base de Datos

summary(dfmerge)
##     ClaimID         BillReviewALE         Hospital        PhysicianOutpatient
##  Min.   :  777635   Min.   : -456.00   Min.   :-12570.4   Min.   :  -549.5   
##  1st Qu.:  808894   1st Qu.:   16.00   1st Qu.:   205.3   1st Qu.:   109.0   
##  Median :  842276   Median :   24.00   Median :   569.6   Median :   215.7   
##  Mean   :10578303   Mean   :  177.61   Mean   :  4007.1   Mean   :  1595.5   
##  3rd Qu.:22721561   3rd Qu.:   68.47   3rd Qu.:  2124.9   3rd Qu.:   681.9   
##  Max.   :62203645   Max.   :16208.91   Max.   :194966.4   Max.   :310220.3   
##                     NA's   :10458      NA's   :10878      NA's   :8003       
##        Rx              TotalPaid         TotalReserves     TotalRecovery     
##  Min.   :     0.00   Min.   :      0.0   Min.   :      0   Min.   :    0.00  
##  1st Qu.:    22.50   1st Qu.:     36.2   1st Qu.:      0   1st Qu.:    0.00  
##  Median :    58.95   Median :    157.6   Median :      0   Median :    0.00  
##  Mean   :  1605.50   Mean   :   3238.6   Mean   :   1230   Mean   :   59.17  
##  3rd Qu.:   185.10   3rd Qu.:    501.0   3rd Qu.:      0   3rd Qu.:    0.00  
##  Max.   :210564.39   Max.   :1353862.0   Max.   :1303215   Max.   :90357.52  
##  NA's   :11076                                                               
##  IndemnityPaid      OtherPaid         ClaimStatus        IncidentDate      
##  Min.   :     0   Min.   :      0.0   Length:12832       Length:12832      
##  1st Qu.:     0   1st Qu.:     36.2   Class :character   Class :character  
##  Median :     0   Median :    156.0   Mode  :character   Mode  :character  
##  Mean   :  1415   Mean   :   1823.8                                        
##  3rd Qu.:     0   3rd Qu.:    484.0                                        
##  Max.   :450680   Max.   :1156503.6                                        
##                                                                            
##  IncidentDescription ReturnToWorkDate   AverageWeeklyWage  ClaimantOpenedDate
##  Length:12832        Length:12832       Length:12832       Length:12832      
##  Class :character    Class :character   Class :character   Class :character  
##  Mode  :character    Mode  :character   Mode  :character   Mode  :character  
##                                                                              
##                                                                              
##                                                                              
##                                                                              
##  ClaimantClosedDate EmployerNotificationDate ReceivedDate      
##  Length:12832       Length:12832             Length:12832      
##  Class :character   Class :character         Class :character  
##  Mode  :character   Mode  :character         Mode  :character  
##                                                                
##                                                                
##                                                                
##                                                                
##     IsDenied      ClaimantAge_at_DOI    Gender          ClaimantType      
##  Min.   :0.0000   Length:12832       Length:12832       Length:12832      
##  1st Qu.:0.0000   Class :character   Class :character   Class :character  
##  Median :0.0000   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :0.0272                                                           
##  3rd Qu.:0.0000                                                           
##  Max.   :1.0000                                                           
##                                                                           
##  InjuryNature       BodyPartRegion       BodyPart        
##  Length:12832       Length:12832       Length:12832      
##  Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character  
##                                                          
##                                                          
##                                                          
## 
# Se desglosan las variables de caracter para también analizarlas.
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
count(dfmerge, ClaimStatus, sort=TRUE)
##   ClaimStatus     n
## 1           C 12463
## 2           O   301
## 3           R    68
count(dfmerge, IncidentDate, sort=TRUE)
##      IncidentDate  n
## 1      05/08/2013 11
## 2      09/09/2004 10
## 3      21/10/2013 10
## 4      24/06/2004 10
## 5      29/04/2002 10
## 6      01/04/2013  9
## 7      02/05/1996  9
## 8      09/03/2001  9
## 9      17/11/2005  9
## 10     18/02/2004  9
## 11     18/02/2014  9
## 12     20/05/1996  9
## 13     25/06/2013  9
## 14     28/01/2004  9
## 15     30/04/1996  9
## 16     01/04/1996  8
## 17     01/08/2013  8
## 18     03/04/2002  8
## 19     03/08/2000  8
## 20     04/06/2007  8
## 21     06/06/2014  8
## 22     07/03/2000  8
## 23     07/05/2012  8
## 24     10/09/2013  8
## 25     11/06/2013  8
## 26     13/06/1996  8
## 27     14/02/2014  8
## 28     15/02/2000  8
## 29     15/04/1997  8
## 30     16/04/1996  8
## 31     17/05/1996  8
## 32     17/07/2000  8
## 33     19/03/2013  8
## 34     20/06/1996  8
## 35     22/04/2009  8
## 36     23/09/2010  8
## 37     25/03/2008  8
## 38     28/02/2007  8
## 39     30/10/2013  8
## 40     01/10/2003  7
## 41     02/10/2013  7
## 42     03/01/2005  7
## 43     04/01/2006  7
## 44     04/06/2013  7
## 45     05/06/2014  7
## 46     05/11/2012  7
## 47     07/02/2005  7
## 48     07/02/2014  7
## 49     07/09/2000  7
## 50     07/10/1997  7
## 51     08/10/2013  7
## 52     09/10/2002  7
## 53     11/04/1996  7
## 54     12/07/2006  7
## 55     12/12/2000  7
## 56     12/12/2013  7
## 57     13/02/2001  7
## 58     13/06/2003  7
## 59     13/12/2012  7
## 60     14/03/2002  7
## 61     14/05/1996  7
## 62     15/05/1996  7
## 63     15/10/2008  7
## 64     15/11/2011  7
## 65     16/02/2004  7
## 66     16/10/2013  7
## 67     17/10/2012  7
## 68     18/12/2002  7
## 69     19/03/2014  7
## 70     20/01/2011  7
## 71     20/02/1998  7
## 72     20/06/2000  7
## 73     20/06/2002  7
## 74     21/06/2001  7
## 75     21/08/2002  7
## 76     22/04/1996  7
## 77     22/08/2002  7
## 78     22/10/2007  7
## 79     23/03/2012  7
## 80     23/09/1996  7
## 81     24/02/2012  7
## 82     24/05/2005  7
## 83     25/01/2013  7
## 84     25/06/1997  7
## 85     25/08/2004  7
## 86     25/10/2005  7
## 87     27/02/2007  7
## 88     27/11/2013  7
## 89     28/08/2006  7
## 90     30/05/2013  7
## 91     30/09/2008  7
## 92     31/07/1996  7
## 93     01/04/2004  6
## 94     01/04/2008  6
## 95     01/09/2004  6
## 96     01/10/1996  6
## 97     01/12/2003  6
## 98     02/04/1996  6
## 99     02/06/2009  6
## 100    02/07/1996  6
## 101    02/07/2012  6
## 102    02/11/2001  6
## 103    02/11/2010  6
## 104    03/02/2005  6
## 105    03/02/2006  6
## 106    03/02/2014  6
## 107    03/03/2008  6
## 108    03/08/2005  6
## 109    03/09/2013  6
## 110    03/10/1996  6
## 111    04/01/2005  6
## 112    04/02/1999  6
## 113    04/03/2004  6
## 114    04/03/2014  6
## 115    05/02/2014  6
## 116    05/05/2000  6
## 117    05/09/1996  6
## 118    05/09/2013  6
## 119    05/12/2013  6
## 120    06/08/1999  6
## 121    06/09/2000  6
## 122    06/11/1996  6
## 123    07/02/2006  6
## 124    07/08/2000  6
## 125    07/12/1999  6
## 126    08/01/2014  6
## 127    08/06/2007  6
## 128    08/07/1996  6
## 129    08/07/1999  6
## 130    08/08/2000  6
## 131    08/10/1996  6
## 132    08/11/2012  6
## 133    09/04/2014  6
## 134    09/05/1997  6
## 135    09/08/2007  6
## 136    09/11/1998  6
## 137    10/05/2004  6
## 138    10/07/2013  6
## 139    10/08/2000  6
## 140    10/10/2013  6
## 141    10/12/2012  6
## 142    11/02/2013  6
## 143    11/03/2013  6
## 144    11/03/2014  6
## 145    11/04/2014  6
## 146    11/06/2002  6
## 147    11/07/2000  6
## 148    11/07/2008  6
## 149    11/08/2004  6
## 150    11/10/1999  6
## 151    11/10/2006  6
## 152    12/02/2013  6
## 153    12/03/2014  6
## 154    12/05/2004  6
## 155    12/06/2000  6
## 156    12/06/2007  6
## 157    12/08/1997  6
## 158    12/08/1999  6
## 159    12/08/2013  6
## 160    12/09/2000  6
## 161    13/03/2000  6
## 162    13/06/2006  6
## 163    13/07/2005  6
## 164    13/12/2005  6
## 165    14/03/2000  6
## 166    14/04/1997  6
## 167    14/04/2014  6
## 168    14/05/2003  6
## 169    14/05/2013  6
## 170    14/07/2005  6
## 171    14/09/2001  6
## 172    15/03/2005  6
## 173    15/08/2000  6
## 174    15/08/2006  6
## 175    16/04/2014  6
## 176    16/05/1996  6
## 177    16/07/1996  6
## 178    16/07/2013  6
## 179    16/11/2004  6
## 180    16/12/1996  6
## 181    17/02/2006  6
## 182    17/03/2004  6
## 183    17/03/2011  6
## 184    17/04/1996  6
## 185    17/06/2000  6
## 186    17/06/2010  6
## 187    17/10/2003  6
## 188    18/02/2013  6
## 189    18/04/1997  6
## 190    18/07/1996  6
## 191    18/07/2001  6
## 192    18/08/2004  6
## 193    19/03/2004  6
## 194    19/06/2007  6
## 195    19/07/2000  6
## 196    19/08/2008  6
## 197    20/06/2001  6
## 198    20/07/2000  6
## 199    20/08/2001  6
## 200    20/08/2013  6
## 201    20/10/1999  6
## 202    21/01/1999  6
## 203    21/08/2013  6
## 204    21/10/1996  6
## 205    21/11/2013  6
## 206    22/03/2006  6
## 207    22/03/2012  6
## 208    22/05/2008  6
## 209    22/06/1999  6
## 210    23/04/1996  6
## 211    23/04/2003  6
## 212    23/04/2013  6
## 213    23/05/2006  6
## 214    23/05/2007  6
## 215    23/07/2001  6
## 216    23/10/2013  6
## 217    24/02/2014  6
## 218    24/05/1999  6
## 219    24/07/2002  6
## 220    24/09/2008  6
## 221    25/04/1996  6
## 222    25/04/2000  6
## 223    25/06/1999  6
## 224    26/04/1996  6
## 225    27/03/1996  6
## 226    27/08/2008  6
## 227    27/10/1997  6
## 228    27/10/2008  6
## 229    28/01/1999  6
## 230    28/01/2000  6
## 231    28/01/2002  6
## 232    28/01/2013  6
## 233    28/04/2011  6
## 234    28/05/2014  6
## 235    28/06/2001  6
## 236    28/08/2013  6
## 237    29/10/1996  6
## 238    29/10/2001  6
## 239    30/09/2002  6
## 240    30/11/1999  6
## 241    31/01/1997  6
## 242    31/05/2007  6
## 243    31/07/2000  6
## 244    01/02/1999  5
## 245    01/02/2000  5
## 246    01/02/2010  5
## 247    01/02/2013  5
## 248    01/03/2000  5
## 249    01/08/2001  5
## 250    01/08/2006  5
## 251    01/10/2007  5
## 252    01/12/2011  5
## 253    02/01/1997  5
## 254    02/02/2004  5
## 255    02/05/2000  5
## 256    02/05/2006  5
## 257    02/05/2011  5
## 258    02/05/2012  5
## 259    02/06/1997  5
## 260    02/08/1999  5
## 261    02/10/2001  5
## 262    02/10/2002  5
## 263    02/10/2012  5
## 264    02/11/2012  5
## 265    03/01/2012  5
## 266    03/01/2013  5
## 267    03/02/1999  5
## 268    03/02/2010  5
## 269    03/02/2012  5
## 270    03/03/2000  5
## 271    03/04/2000  5
## 272    03/10/2005  5
## 273    03/10/2012  5
## 274    03/11/2011  5
## 275    03/12/2004  5
## 276    04/02/2003  5
## 277    04/03/1999  5
## 278    04/03/2008  5
## 279    04/03/2013  5
## 280    04/04/1996  5
## 281    04/04/2013  5
## 282    04/05/2000  5
## 283    04/11/2010  5
## 284    04/12/2002  5
## 285    04/12/2013  5
## 286    05/01/2000  5
## 287    05/04/1996  5
## 288    05/04/2013  5
## 289    05/08/2005  5
## 290    05/08/2008  5
## 291    05/10/2000  5
## 292    05/11/2013  5
## 293    05/12/2001  5
## 294    06/03/2013  5
## 295    06/07/2000  5
## 296    06/07/2010  5
## 297    06/10/2004  5
## 298    06/11/2000  5
## 299    06/11/2001  5
## 300    06/12/1999  5
## 301    06/12/2002  5
## 302    06/12/2005  5
## 303    06/12/2011  5
## 304    07/01/2010  5
## 305    07/03/2012  5
## 306    07/03/2013  5
## 307    07/05/1996  5
## 308    07/05/2004  5
## 309    07/06/2010  5
## 310    07/07/1999  5
## 311    07/07/2000  5
## 312    07/08/2001  5
## 313    07/10/2010  5
## 314    07/11/2012  5
## 315    07/12/2005  5
## 316    08/01/1998  5
## 317    08/01/2001  5
## 318    08/02/2000  5
## 319    08/03/1999  5
## 320    08/04/2013  5
## 321    08/04/2014  5
## 322    08/07/1998  5
## 323    08/07/2013  5
## 324    08/10/2012  5
## 325    08/12/2004  5
## 326    09/01/1998  5
## 327    09/01/2002  5
## 328    09/02/1999  5
## 329    09/03/2004  5
## 330    09/06/1999  5
## 331    09/07/1999  5
## 332    09/09/2002  5
## 333    09/10/2001  5
## 334    09/10/2013  5
## 335    10/01/2012  5
## 336    10/02/1997  5
## 337    10/02/2000  5
## 338    10/04/2012  5
## 339    10/06/1996  5
## 340    10/06/2004  5
## 341    10/09/2007  5
## 342    10/10/2001  5
## 343    10/12/1996  5
## 344    11/07/2002  5
## 345    11/07/2013  5
## 346    11/09/2008  5
## 347    12/01/2001  5
## 348    12/04/1999  5
## 349    12/04/2011  5
## 350    12/05/1997  5
## 351    12/05/2003  5
## 352    12/05/2010  5
## 353    12/06/1998  5
## 354    12/07/2013  5
## 355    12/08/1996  5
## 356    12/08/2010  5
## 357    12/09/2005  5
## 358    12/11/1998  5
## 359    13/01/2012  5
## 360    13/02/2002  5
## 361    13/02/2006  5
## 362    13/02/2008  5
## 363    13/03/2006  5
## 364    13/03/2014  5
## 365    13/05/1996  5
## 366    13/05/1999  5
## 367    13/06/2001  5
## 368    13/07/2004  5
## 369    13/08/2001  5
## 370    13/09/2012  5
## 371    13/12/2011  5
## 372    14/01/2004  5
## 373    14/02/2011  5
## 374    14/02/2013  5
## 375    14/03/2001  5
## 376    14/03/2013  5
## 377    14/03/2014  5
## 378    14/05/2002  5
## 379    14/05/2007  5
## 380    14/05/2012  5
## 381    14/06/2006  5
## 382    14/07/2004  5
## 383    14/08/2000  5
## 384    14/08/2013  5
## 385    14/09/2000  5
## 386    14/12/2011  5
## 387    15/03/2001  5
## 388    15/03/2012  5
## 389    15/04/2008  5
## 390    15/04/2014  5
## 391    15/05/2000  5
## 392    15/07/2003  5
## 393    15/08/2013  5
## 394    15/09/2005  5
## 395    15/10/2004  5
## 396    15/12/2003  5
## 397    16/01/2001  5
## 398    16/03/1999  5
## 399    16/03/2000  5
## 400    16/04/2012  5
## 401    16/04/2013  5
## 402    16/05/2000  5
## 403    16/05/2014  5
## 404    16/06/2011  5
## 405    16/07/2001  5
## 406    16/08/2001  5
## 407    16/09/2004  5
## 408    16/12/2003  5
## 409    16/12/2004  5
## 410    16/12/2010  5
## 411    17/01/2014  5
## 412    17/02/2010  5
## 413    17/02/2012  5
## 414    17/05/2013  5
## 415    17/06/1999  5
## 416    17/07/2001  5
## 417    17/07/2013  5
## 418    17/09/1998  5
## 419    17/12/2001  5
## 420    17/12/2012  5
## 421    18/03/1997  5
## 422    18/04/2008  5
## 423    18/05/2006  5
## 424    18/06/2001  5
## 425    18/06/2004  5
## 426    18/07/2000  5
## 427    18/07/2006  5
## 428    18/08/1999  5
## 429    18/09/1996  5
## 430    18/12/1997  5
## 431    18/12/2012  5
## 432    19/01/1999  5
## 433    19/03/2009  5
## 434    19/04/1996  5
## 435    19/05/1999  5
## 436    19/05/2014  5
## 437    19/06/2006  5
## 438    19/06/2013  5
## 439    19/06/2014  5
## 440    19/07/2006  5
## 441    19/08/1996  5
## 442    19/10/2005  5
## 443    20/01/2004  5
## 444    20/02/2001  5
## 445    20/03/2006  5
## 446    20/03/2012  5
## 447    20/03/2014  5
## 448    20/04/1999  5
## 449    20/08/2004  5
## 450    20/08/2007  5
## 451    20/10/2004  5
## 452    20/12/1999  5
## 453    20/12/2005  5
## 454    21/03/2013  5
## 455    21/04/2014  5
## 456    21/05/1996  5
## 457    21/05/2008  5
## 458    21/07/2003  5
## 459    21/08/1996  5
## 460    21/10/2008  5
## 461    21/12/2005  5
## 462    22/01/2013  5
## 463    22/02/2012  5
## 464    22/05/1997  5
## 465    22/05/2013  5
## 466    22/05/2014  5
## 467    22/08/2001  5
## 468    22/09/2010  5
## 469    22/10/1996  5
## 470    22/10/1998  5
## 471    23/01/2004  5
## 472    23/03/1998  5
## 473    23/03/2000  5
## 474    23/05/2000  5
## 475    23/05/2012  5
## 476    23/07/1997  5
## 477    24/01/2000  5
## 478    24/03/1997  5
## 479    24/03/2000  5
## 480    24/03/2006  5
## 481    24/04/2002  5
## 482    24/04/2007  5
## 483    24/06/2010  5
## 484    24/07/2006  5
## 485    24/08/1998  5
## 486    24/08/2006  5
## 487    24/09/2013  5
## 488    24/11/1997  5
## 489    25/01/2005  5
## 490    25/01/2006  5
## 491    25/03/2014  5
## 492    25/05/2004  5
## 493    25/06/2008  5
## 494    25/07/2006  5
## 495    25/08/1997  5
## 496    25/08/2003  5
## 497    25/09/2000  5
## 498    25/10/2000  5
## 499    26/01/2006  5
## 500    26/01/2011  5
## 501    26/02/2002  5
## 502    26/03/1998  5
## 503    26/03/2008  5
## 504    26/03/2013  5
## 505    26/08/2008  5
## 506    26/09/1996  5
## 507    26/09/2006  5
## 508    26/10/1998  5
## 509    27/03/2003  5
## 510    27/06/2011  5
## 511    27/06/2012  5
## 512    27/06/2013  5
## 513    27/07/2000  5
## 514    27/07/2005  5
## 515    27/09/1999  5
## 516    28/01/2003  5
## 517    28/02/2002  5
## 518    28/03/2012  5
## 519    28/04/2014  5
## 520    28/05/1998  5
## 521    28/05/2008  5
## 522    28/07/1999  5
## 523    28/07/2008  5
## 524    28/08/1996  5
## 525    28/09/1998  5
## 526    28/09/2005  5
## 527    29/01/2001  5
## 528    29/01/2004  5
## 529    29/03/2000  5
## 530    29/03/2003  5
## 531    29/06/2000  5
## 532    29/06/2004  5
## 533    29/07/1996  5
## 534    29/08/2000  5
## 535    29/08/2002  5
## 536    29/09/2003  5
## 537    29/11/2010  5
## 538    30/01/2002  5
## 539    30/01/2004  5
## 540    30/04/2001  5
## 541    30/04/2003  5
## 542    30/07/2002  5
## 543    30/07/2003  5
## 544    30/07/2008  5
## 545    30/08/1999  5
## 546    30/09/1996  5
## 547    30/09/2005  5
## 548    30/09/2013  5
## 549    31/03/2010  5
## 550    31/05/2001  5
## 551    31/10/2003  5
## 552    01/01/2011  4
## 553    01/03/2007  4
## 554    01/03/2012  4
## 555    01/05/2000  4
## 556    01/05/2007  4
## 557    01/06/1999  4
## 558    01/06/2005  4
## 559    01/07/1998  4
## 560    01/08/1997  4
## 561    01/10/1999  4
## 562    01/10/2002  4
## 563    01/11/2002  4
## 564    01/11/2007  4
## 565    01/12/1997  4
## 566    01/12/2006  4
## 567    02/01/2009  4
## 568    02/02/2010  4
## 569    02/03/2000  4
## 570    02/03/2007  4
## 571    02/04/1998  4
## 572    02/04/2001  4
## 573    02/04/2014  4
## 574    02/07/1997  4
## 575    02/07/2002  4
## 576    02/08/1996  4
## 577    02/10/1998  4
## 578    02/11/2004  4
## 579    03/01/2008  4
## 580    03/03/2006  4
## 581    03/03/2012  4
## 582    03/04/1996  4
## 583    03/04/2006  4
## 584    03/04/2008  4
## 585    03/04/2009  4
## 586    03/05/1999  4
## 587    03/05/2005  4
## 588    03/05/2008  4
## 589    03/06/1996  4
## 590    03/06/2008  4
## 591    03/06/2011  4
## 592    03/07/2007  4
## 593    03/08/2004  4
## 594    03/08/2012  4
## 595    03/09/1996  4
## 596    03/09/1999  4
## 597    03/09/2002  4
## 598    03/10/2013  4
## 599    03/11/1998  4
## 600    03/12/2012  4
## 601    04/01/2011  4
## 602    04/01/2013  4
## 603    04/02/1997  4
## 604    04/03/2005  4
## 605    04/03/2010  4
## 606    04/04/2001  4
## 607    04/04/2005  4
## 608    04/06/2003  4
## 609    04/08/2009  4
## 610    04/09/2002  4
## 611    04/09/2008  4
## 612    04/10/2012  4
## 613    04/11/1996  4
## 614    04/11/2008  4
## 615    04/11/2009  4
## 616    04/11/2011  4
## 617    04/11/2013  4
## 618    04/12/1998  4
## 619    04/12/2001  4
## 620    05/01/2005  4
## 621    05/02/1998  4
## 622    05/02/2001  4
## 623    05/03/2008  4
## 624    05/04/2000  4
## 625    05/04/2002  4
## 626    05/05/2001  4
## 627    05/05/2003  4
## 628    05/05/2014  4
## 629    05/06/2012  4
## 630    05/07/2001  4
## 631    05/08/2002  4
## 632    05/10/1998  4
## 633    05/11/2008  4
## 634    06/02/2001  4
## 635    06/03/2000  4
## 636    06/03/2012  4
## 637    06/04/1996  4
## 638    06/04/2001  4
## 639    06/04/2005  4
## 640    06/05/1999  4
## 641    06/06/1996  4
## 642    06/06/2006  4
## 643    06/06/2008  4
## 644    06/07/2005  4
## 645    06/08/1996  4
## 646    06/09/2011  4
## 647    06/09/2013  4
## 648    06/10/2001  4
## 649    06/12/2001  4
## 650    07/01/2001  4
## 651    07/01/2004  4
## 652    07/01/2008  4
## 653    07/01/2009  4
## 654    07/01/2014  4
## 655    07/02/2012  4
## 656    07/03/2003  4
## 657    07/04/2004  4
## 658    07/04/2012  4
## 659    07/05/2002  4
## 660    07/05/2010  4
## 661    07/08/2006  4
## 662    07/08/2007  4
## 663    07/08/2008  4
## 664    07/09/2004  4
## 665    07/09/2005  4
## 666    07/09/2011  4
## 667    07/10/2013  4
## 668    08/01/2004  4
## 669    08/04/1999  4
## 670    08/05/2007  4
## 671    08/06/2011  4
## 672    08/07/2009  4
## 673    08/08/2005  4
## 674    08/08/2013  4
## 675    08/09/2003  4
## 676    08/10/1997  4
## 677    08/10/1998  4
## 678    08/10/2004  4
## 679    08/11/2011  4
## 680    08/12/2005  4
## 681    08/12/2011  4
## 682    09/01/1997  4
## 683    09/03/2006  4
## 684    09/04/1997  4
## 685    09/05/2014  4
## 686    09/06/1998  4
## 687    09/06/2006  4
## 688    09/07/1997  4
## 689    09/07/2013  4
## 690    09/08/2004  4
## 691    09/09/1997  4
## 692    09/09/2003  4
## 693    09/09/2013  4
## 694    09/10/2003  4
## 695    09/10/2012  4
## 696    09/12/2013  4
## 697    10/01/2006  4
## 698    10/03/1997  4
## 699    10/03/2004  4
## 700    10/03/2009  4
## 701    10/04/2007  4
## 702    10/04/2014  4
## 703    10/05/1996  4
## 704    10/05/2000  4
## 705    10/05/2002  4
## 706    10/05/2010  4
## 707    10/05/2011  4
## 708    10/06/1997  4
## 709    10/06/1999  4
## 710    10/06/2013  4
## 711    10/07/2003  4
## 712    10/07/2006  4
## 713    10/07/2007  4
## 714    10/08/1996  4
## 715    10/08/1999  4
## 716    10/08/2006  4
## 717    10/08/2012  4
## 718    10/09/1996  4
## 719    10/09/2001  4
## 720    10/09/2004  4
## 721    10/09/2012  4
## 722    10/10/1996  4
## 723    10/11/2003  4
## 724    10/11/2004  4
## 725    11/01/2000  4
## 726    11/01/2011  4
## 727    11/03/1999  4
## 728    11/04/2006  4
## 729    11/04/2008  4
## 730    11/05/1999  4
## 731    11/05/2000  4
## 732    11/07/1997  4
## 733    11/07/2005  4
## 734    11/07/2012  4
## 735    11/08/2005  4
## 736    11/09/1996  4
## 737    11/09/2011  4
## 738    11/12/2012  4
## 739    12/01/1997  4
## 740    12/01/2004  4
## 741    12/01/2006  4
## 742    12/02/2002  4
## 743    12/04/1996  4
## 744    12/05/2006  4
## 745    12/05/2008  4
## 746    12/05/2014  4
## 747    12/06/2001  4
## 748    12/06/2008  4
## 749    12/06/2013  4
## 750    12/08/2002  4
## 751    12/08/2008  4
## 752    12/09/1996  4
## 753    12/09/2001  4
## 754    12/09/2011  4
## 755    12/11/1997  4
## 756    12/11/2003  4
## 757    12/11/2009  4
## 758    12/11/2013  4
## 759    12/12/2002  4
## 760    12/12/2007  4
## 761    13/01/1997  4
## 762    13/01/2003  4
## 763    13/01/2006  4
## 764    13/03/1997  4
## 765    13/04/2006  4
## 766    13/04/2010  4
## 767    13/05/1997  4
## 768    13/05/2008  4
## 769    13/06/2000  4
## 770    13/06/2008  4
## 771    13/06/2012  4
## 772    13/07/1998  4
## 773    13/07/2000  4
## 774    13/07/2006  4
## 775    13/07/2010  4
## 776    13/08/1996  4
## 777    13/08/2002  4
## 778    13/08/2008  4
## 779    13/09/2000  4
## 780    13/09/2013  4
## 781    13/10/2004  4
## 782    14/01/2002  4
## 783    14/02/2001  4
## 784    14/02/2012  4
## 785    14/03/2003  4
## 786    14/04/2005  4
## 787    14/05/2014  4
## 788    14/06/2010  4
## 789    14/06/2012  4
## 790    14/07/1996  4
## 791    14/08/2006  4
## 792    14/09/2005  4
## 793    14/09/2011  4
## 794    14/10/2013  4
## 795    14/11/1997  4
## 796    15/01/2003  4
## 797    15/01/2013  4
## 798    15/02/2002  4
## 799    15/02/2013  4
## 800    15/03/2014  4
## 801    15/04/1998  4
## 802    15/04/2011  4
## 803    15/05/2013  4
## 804    15/06/1999  4
## 805    15/06/2000  4
## 806    15/06/2006  4
## 807    15/06/2010  4
## 808    15/07/2008  4
## 809    15/07/2011  4
## 810    15/08/2001  4
## 811    15/08/2002  4
## 812    15/08/2005  4
## 813    15/09/2010  4
## 814    15/09/2011  4
## 815    15/09/2012  4
## 816    15/11/2000  4
## 817    15/12/1998  4
## 818    15/12/1999  4
## 819    15/12/2004  4
## 820    16/01/1997  4
## 821    16/01/2009  4
## 822    16/02/2001  4
## 823    16/02/2006  4
## 824    16/02/2012  4
## 825    16/04/1998  4
## 826    16/04/2002  4
## 827    16/04/2008  4
## 828    16/05/2006  4
## 829    16/05/2012  4
## 830    16/05/2013  4
## 831    16/06/1998  4
## 832    16/08/2000  4
## 833    16/08/2006  4
## 834    16/08/2007  4
## 835    16/09/1996  4
## 836    16/09/1999  4
## 837    16/10/2001  4
## 838    16/10/2006  4
## 839    16/10/2008  4
## 840    16/11/2005  4
## 841    16/12/1997  4
## 842    16/12/2013  4
## 843    17/01/2002  4
## 844    17/01/2013  4
## 845    17/03/1998  4
## 846    17/03/2003  4
## 847    17/03/2010  4
## 848    17/04/2002  4
## 849    17/04/2012  4
## 850    17/04/2014  4
## 851    17/05/2001  4
## 852    17/05/2002  4
## 853    17/05/2005  4
## 854    17/06/2004  4
## 855    17/07/2003  4
## 856    17/07/2009  4
## 857    17/08/2004  4
## 858    17/08/2005  4
## 859    17/09/2002  4
## 860    17/09/2007  4
## 861    17/10/1997  4
## 862    17/12/2003  4
## 863    17/12/2013  4
## 864    18/03/1996  4
## 865    18/03/2004  4
## 866    18/04/2014  4
## 867    18/05/2005  4
## 868    18/07/2013  4
## 869    18/09/2003  4
## 870    18/09/2008  4
## 871    18/09/2010  4
## 872    18/10/2010  4
## 873    18/11/2002  4
## 874    18/12/1998  4
## 875    19/01/2011  4
## 876    19/02/1997  4
## 877    19/02/2007  4
## 878    19/03/1999  4
## 879    19/05/1997  4
## 880    19/05/2000  4
## 881    19/06/1998  4
## 882    19/07/1999  4
## 883    19/07/2010  4
## 884    19/07/2011  4
## 885    19/08/2004  4
## 886    19/08/2010  4
## 887    19/08/2012  4
## 888    19/08/2013  4
## 889    19/09/2000  4
## 890    19/09/2005  4
## 891    19/09/2012  4
## 892    19/10/2010  4
## 893    19/11/1996  4
## 894    19/11/2002  4
## 895    20/01/2005  4
## 896    20/02/2012  4
## 897    20/02/2014  4
## 898    20/03/1996  4
## 899    20/03/2002  4
## 900    20/03/2008  4
## 901    20/04/2000  4
## 902    20/04/2009  4
## 903    20/05/2010  4
## 904    20/06/2007  4
## 905    20/06/2011  4
## 906    20/06/2012  4
## 907    20/07/1998  4
## 908    20/07/1999  4
## 909    20/09/2005  4
## 910    20/10/1997  4
## 911    20/10/2003  4
## 912    20/11/2001  4
## 913    20/11/2013  4
## 914    21/01/2005  4
## 915    21/02/2001  4
## 916    21/02/2006  4
## 917    21/02/2007  4
## 918    21/02/2011  4
## 919    21/03/1997  4
## 920    21/03/2001  4
## 921    21/03/2006  4
## 922    21/03/2007  4
## 923    21/03/2012  4
## 924    21/03/2014  4
## 925    21/05/1997  4
## 926    21/05/2012  4
## 927    21/06/2013  4
## 928    21/07/2005  4
## 929    21/08/2001  4
## 930    21/08/2006  4
## 931    21/08/2007  4
## 932    21/08/2012  4
## 933    21/09/2000  4
## 934    21/09/2005  4
## 935    21/09/2012  4
## 936    22/01/1997  4
## 937    22/01/2007  4
## 938    22/01/2008  4
## 939    22/01/2014  4
## 940    22/02/1999  4
## 941    22/02/2002  4
## 942    22/03/1999  4
## 943    22/03/2001  4
## 944    22/04/2010  4
## 945    22/04/2014  4
## 946    22/05/2000  4
## 947    22/05/2012  4
## 948    22/06/2005  4
## 949    22/07/1996  4
## 950    22/07/1998  4
## 951    22/07/2011  4
## 952    22/08/2011  4
## 953    22/09/2003  4
## 954    22/09/2004  4
## 955    22/09/2009  4
## 956    22/11/2002  4
## 957    23/01/2003  4
## 958    23/01/2012  4
## 959    23/01/2014  4
## 960    23/02/1998  4
## 961    23/02/2004  4
## 962    23/02/2012  4
## 963    23/04/2004  4
## 964    23/04/2008  4
## 965    23/06/2004  4
## 966    23/08/1996  4
## 967    23/08/2013  4
## 968    23/09/2004  4
## 969    23/10/2003  4
## 970    23/10/2007  4
## 971    23/11/1999  4
## 972    23/11/2009  4
## 973    24/01/2006  4
## 974    24/01/2011  4
## 975    24/03/2004  4
## 976    24/05/2007  4
## 977    24/06/1999  4
## 978    24/06/2009  4
## 979    24/07/2001  4
## 980    24/08/2000  4
## 981    24/09/1999  4
## 982    24/10/2000  4
## 983    24/10/2002  4
## 984    24/10/2003  4
## 985    24/10/2007  4
## 986    25/01/1999  4
## 987    25/01/2007  4
## 988    25/02/2014  4
## 989    25/03/1997  4
## 990    25/03/2002  4
## 991    25/04/1997  4
## 992    25/04/2001  4
## 993    25/04/2006  4
## 994    25/04/2008  4
## 995    25/05/2001  4
## 996    25/05/2012  4
## 997    25/06/2003  4
## 998    25/06/2014  4
## 999    25/07/2007  4
## 1000   25/07/2013  4
## 1001   25/09/2002  4
## 1002   25/09/2003  4
## 1003   25/11/1996  4
## 1004   26/01/2000  4
## 1005   26/02/1998  4
## 1006   26/02/2009  4
## 1007   26/03/2002  4
## 1008   26/03/2007  4
## 1009   26/04/2002  4
## 1010   26/05/1999  4
## 1011   26/06/1996  4
## 1012   26/06/2014  4
## 1013   26/07/2012  4
## 1014   26/08/1996  4
## 1015   26/08/2002  4
## 1016   26/08/2005  4
## 1017   26/08/2009  4
## 1018   26/09/2008  4
## 1019   26/09/2013  4
## 1020   26/10/1999  4
## 1021   26/10/2001  4
## 1022   26/11/1996  4
## 1023   26/11/2000  4
## 1024   26/11/2012  4
## 1025   26/11/2013  4
## 1026   27/01/2000  4
## 1027   27/02/2012  4
## 1028   27/03/2013  4
## 1029   27/05/1998  4
## 1030   27/06/1997  4
## 1031   27/06/2007  4
## 1032   27/07/2012  4
## 1033   27/08/2003  4
## 1034   27/08/2004  4
## 1035   27/08/2012  4
## 1036   27/09/1996  4
## 1037   27/09/2006  4
## 1038   27/10/1999  4
## 1039   28/01/1997  4
## 1040   28/01/2014  4
## 1041   28/03/1996  4
## 1042   28/03/2006  4
## 1043   28/03/2013  4
## 1044   28/03/2014  4
## 1045   28/04/2003  4
## 1046   28/06/2004  4
## 1047   28/06/2005  4
## 1048   28/06/2009  4
## 1049   28/07/1998  4
## 1050   28/07/2004  4
## 1051   28/08/1998  4
## 1052   29/01/1997  4
## 1053   29/01/2002  4
## 1054   29/01/2014  4
## 1055   29/03/2007  4
## 1056   29/05/2001  4
## 1057   29/05/2007  4
## 1058   29/06/1999  4
## 1059   29/06/2001  4
## 1060   29/08/2011  4
## 1061   29/08/2013  4
## 1062   29/09/2005  4
## 1063   29/10/2012  4
## 1064   29/11/2000  4
## 1065   29/11/2005  4
## 1066   30/01/2006  4
## 1067   30/03/1999  4
## 1068   30/03/2000  4
## 1069   30/03/2010  4
## 1070   30/03/2012  4
## 1071   30/04/1997  4
## 1072   30/04/2007  4
## 1073   30/04/2014  4
## 1074   30/05/2000  4
## 1075   30/05/2001  4
## 1076   30/07/2001  4
## 1077   30/07/2004  4
## 1078   30/07/2012  4
## 1079   30/08/2001  4
## 1080   30/08/2010  4
## 1081   30/09/1999  4
## 1082   30/09/2011  4
## 1083   30/10/1996  4
## 1084   30/10/2000  4
## 1085   31/01/2000  4
## 1086   31/03/1997  4
## 1087   31/03/2005  4
## 1088   31/05/2013  4
## 1089   31/07/2001  4
## 1090   31/08/2011  4
## 1091   31/08/2012  4
## 1092   31/10/2005  4
## 1093   31/10/2011  4
## 1094   01/02/2011  3
## 1095   01/03/1999  3
## 1096   01/03/2006  3
## 1097   01/03/2011  3
## 1098   01/03/2013  3
## 1099   01/04/2002  3
## 1100   01/04/2005  3
## 1101   01/04/2014  3
## 1102   01/05/1997  3
## 1103   01/05/2002  3
## 1104   01/05/2005  3
## 1105   01/05/2006  3
## 1106   01/05/2010  3
## 1107   01/05/2013  3
## 1108   01/06/2001  3
## 1109   01/06/2004  3
## 1110   01/06/2011  3
## 1111   01/06/2012  3
## 1112   01/07/2003  3
## 1113   01/07/2008  3
## 1114   01/08/2002  3
## 1115   01/08/2007  3
## 1116   01/08/2011  3
## 1117   01/09/1996  3
## 1118   01/09/2012  3
## 1119   01/10/1997  3
## 1120   01/10/2012  3
## 1121   01/10/2013  3
## 1122   01/11/1999  3
## 1123   01/11/2004  3
## 1124   01/11/2006  3
## 1125   01/11/2013  3
## 1126   01/12/2000  3
## 1127   02/02/1999  3
## 1128   02/02/2006  3
## 1129   02/02/2012  3
## 1130   02/03/1998  3
## 1131   02/03/2004  3
## 1132   02/03/2006  3
## 1133   02/04/2002  3
## 1134   02/04/2012  3
## 1135   02/05/1997  3
## 1136   02/05/2001  3
## 1137   02/05/2002  3
## 1138   02/05/2007  3
## 1139   02/06/1998  3
## 1140   02/06/1999  3
## 1141   02/06/2001  3
## 1142   02/07/1998  3
## 1143   02/07/1999  3
## 1144   02/07/2000  3
## 1145   02/07/2001  3
## 1146   02/07/2003  3
## 1147   02/07/2004  3
## 1148   02/07/2009  3
## 1149   02/08/2002  3
## 1150   02/08/2007  3
## 1151   02/08/2010  3
## 1152   02/09/2008  3
## 1153   02/09/2010  3
## 1154   02/10/1997  3
## 1155   02/11/1998  3
## 1156   02/11/2011  3
## 1157   02/12/1998  3
## 1158   02/12/2009  3
## 1159   02/12/2013  3
## 1160   03/01/1997  3
## 1161   03/01/2006  3
## 1162   03/02/1997  3
## 1163   03/02/2004  3
## 1164   03/02/2013  3
## 1165   03/03/2011  3
## 1166   03/04/2001  3
## 1167   03/05/1998  3
## 1168   03/05/2001  3
## 1169   03/05/2013  3
## 1170   03/05/2014  3
## 1171   03/06/1997  3
## 1172   03/06/2001  3
## 1173   03/06/2002  3
## 1174   03/06/2009  3
## 1175   03/06/2014  3
## 1176   03/07/1997  3
## 1177   03/07/2000  3
## 1178   03/07/2002  3
## 1179   03/08/1999  3
## 1180   03/08/2006  3
## 1181   03/10/2000  3
## 1182   03/10/2002  3
## 1183   03/10/2003  3
## 1184   03/11/1997  3
## 1185   03/11/2000  3
## 1186   03/11/2003  3
## 1187   03/11/2009  3
## 1188   03/12/1999  3
## 1189   04/01/2001  3
## 1190   04/01/2007  3
## 1191   04/01/2008  3
## 1192   04/01/2012  3
## 1193   04/02/2000  3
## 1194   04/02/2002  3
## 1195   04/02/2004  3
## 1196   04/02/2010  3
## 1197   04/02/2014  3
## 1198   04/03/2000  3
## 1199   04/03/2003  3
## 1200   04/03/2009  3
## 1201   04/03/2011  3
## 1202   04/04/2011  3
## 1203   04/05/2004  3
## 1204   04/05/2005  3
## 1205   04/06/2001  3
## 1206   04/07/1996  3
## 1207   04/08/1997  3
## 1208   04/08/2004  3
## 1209   04/08/2005  3
## 1210   04/08/2006  3
## 1211   04/08/2011  3
## 1212   04/08/2013  3
## 1213   04/09/2007  3
## 1214   04/09/2013  3
## 1215   04/10/1996  3
## 1216   04/10/2002  3
## 1217   04/10/2004  3
## 1218   04/10/2007  3
## 1219   04/11/1998  3
## 1220   04/12/2007  3
## 1221   04/12/2012  3
## 1222   05/01/2012  3
## 1223   05/02/2002  3
## 1224   05/02/2003  3
## 1225   05/02/2008  3
## 1226   05/02/2009  3
## 1227   05/03/2002  3
## 1228   05/03/2003  3
## 1229   05/03/2007  3
## 1230   05/03/2010  3
## 1231   05/03/2012  3
## 1232   05/04/2004  3
## 1233   05/04/2006  3
## 1234   05/04/2007  3
## 1235   05/04/2012  3
## 1236   05/05/1996  3
## 1237   05/05/2005  3
## 1238   05/05/2009  3
## 1239   05/06/1997  3
## 1240   05/06/2002  3
## 1241   05/08/1999  3
## 1242   05/08/2011  3
## 1243   05/09/2001  3
## 1244   05/09/2004  3
## 1245   05/10/2001  3
## 1246   05/10/2002  3
## 1247   05/10/2004  3
## 1248   05/11/2011  3
## 1249   05/12/2012  3
## 1250   06/01/2005  3
## 1251   06/01/2010  3
## 1252   06/02/1997  3
## 1253   06/02/2013  3
## 1254   06/03/2014  3
## 1255   06/04/1997  3
## 1256   06/04/1999  3
## 1257   06/04/2004  3
## 1258   06/04/2013  3
## 1259   06/05/1998  3
## 1260   06/05/2005  3
## 1261   06/05/2008  3
## 1262   06/05/2009  3
## 1263   06/05/2013  3
## 1264   06/05/2014  3
## 1265   06/06/1997  3
## 1266   06/06/2012  3
## 1267   06/07/1999  3
## 1268   06/07/2001  3
## 1269   06/07/2007  3
## 1270   06/07/2012  3
## 1271   06/08/2008  3
## 1272   06/08/2009  3
## 1273   06/09/1996  3
## 1274   06/09/2002  3
## 1275   06/09/2007  3
## 1276   06/10/2011  3
## 1277   06/11/2002  3
## 1278   06/11/2003  3
## 1279   06/11/2008  3
## 1280   06/11/2013  3
## 1281   06/12/2000  3
## 1282   06/12/2006  3
## 1283   06/12/2007  3
## 1284   07/01/1998  3
## 1285   07/01/2013  3
## 1286   07/02/2000  3
## 1287   07/02/2003  3
## 1288   07/03/2002  3
## 1289   07/03/2005  3
## 1290   07/04/2003  3
## 1291   07/04/2006  3
## 1292   07/04/2008  3
## 1293   07/04/2010  3
## 1294   07/05/1997  3
## 1295   07/05/2003  3
## 1296   07/05/2007  3
## 1297   07/05/2009  3
## 1298   07/05/2014  3
## 1299   07/06/1999  3
## 1300   07/06/2002  3
## 1301   07/06/2008  3
## 1302   07/07/1997  3
## 1303   07/08/1996  3
## 1304   07/08/2012  3
## 1305   07/08/2013  3
## 1306   07/09/2013  3
## 1307   07/11/1997  3
## 1308   07/11/2006  3
## 1309   07/11/2013  3
## 1310   08/01/1997  3
## 1311   08/01/2009  3
## 1312   08/02/2006  3
## 1313   08/02/2007  3
## 1314   08/02/2008  3
## 1315   08/02/2012  3
## 1316   08/03/2000  3
## 1317   08/03/2001  3
## 1318   08/03/2003  3
## 1319   08/03/2013  3
## 1320   08/04/1996  3
## 1321   08/04/1998  3
## 1322   08/04/2002  3
## 1323   08/04/2004  3
## 1324   08/04/2011  3
## 1325   08/05/1996  3
## 1326   08/05/2000  3
## 1327   08/05/2013  3
## 1328   08/05/2014  3
## 1329   08/06/1999  3
## 1330   08/06/2000  3
## 1331   08/06/2004  3
## 1332   08/06/2010  3
## 1333   08/07/2011  3
## 1334   08/08/1996  3
## 1335   08/08/2008  3
## 1336   08/08/2012  3
## 1337   08/09/1999  3
## 1338   08/09/2004  3
## 1339   08/09/2006  3
## 1340   08/09/2008  3
## 1341   08/09/2011  3
## 1342   08/10/1999  3
## 1343   08/10/2010  3
## 1344   08/11/1996  3
## 1345   08/11/2000  3
## 1346   08/11/2001  3
## 1347   08/11/2002  3
## 1348   08/11/2013  3
## 1349   08/12/1999  3
## 1350   08/12/2000  3
## 1351   08/12/2010  3
## 1352   09/01/2003  3
## 1353   09/01/2012  3
## 1354   09/01/2014  3
## 1355   09/02/1997  3
## 1356   09/02/2009  3
## 1357   09/02/2012  3
## 1358   09/03/2012  3
## 1359   09/04/1998  3
## 1360   09/04/1999  3
## 1361   09/04/2003  3
## 1362   09/04/2007  3
## 1363   09/05/2001  3
## 1364   09/06/1997  3
## 1365   09/06/2000  3
## 1366   09/06/2004  3
## 1367   09/06/2009  3
## 1368   09/06/2010  3
## 1369   09/06/2014  3
## 1370   09/08/1996  3
## 1371   09/08/2002  3
## 1372   09/08/2005  3
## 1373   09/08/2013  3
## 1374   09/09/1999  3
## 1375   09/09/2005  3
## 1376   09/09/2011  3
## 1377   09/10/2000  3
## 1378   09/10/2009  3
## 1379   09/12/2004  3
## 1380   10/01/2000  3
## 1381   10/01/2001  3
## 1382   10/01/2014  3
## 1383   10/02/2008  3
## 1384   10/03/2003  3
## 1385   10/03/2014  3
## 1386   10/04/2008  3
## 1387   10/05/2007  3
## 1388   10/05/2012  3
## 1389   10/06/2002  3
## 1390   10/06/2003  3
## 1391   10/06/2008  3
## 1392   10/06/2009  3
## 1393   10/06/2014  3
## 1394   10/07/2000  3
## 1395   10/07/2008  3
## 1396   10/09/1997  3
## 1397   10/09/2009  3
## 1398   10/10/2000  3
## 1399   10/10/2002  3
## 1400   10/10/2007  3
## 1401   10/11/2007  3
## 1402   10/12/2002  3
## 1403   10/12/2010  3
## 1404   10/12/2013  3
## 1405   11/01/1999  3
## 1406   11/01/2001  3
## 1407   11/01/2005  3
## 1408   11/02/1997  3
## 1409   11/02/1998  3
## 1410   11/02/2003  3
## 1411   11/02/2009  3
## 1412   11/03/2002  3
## 1413   11/04/1997  3
## 1414   11/04/2000  3
## 1415   11/04/2001  3
## 1416   11/04/2002  3
## 1417   11/04/2007  3
## 1418   11/04/2013  3
## 1419   11/05/1998  3
## 1420   11/05/2004  3
## 1421   11/05/2007  3
## 1422   11/06/1996  3
## 1423   11/06/1997  3
## 1424   11/06/2014  3
## 1425   11/07/1996  3
## 1426   11/07/2001  3
## 1427   11/07/2006  3
## 1428   11/07/2007  3
## 1429   11/08/1997  3
## 1430   11/08/2008  3
## 1431   11/08/2009  3
## 1432   11/09/1997  3
## 1433   11/09/2000  3
## 1434   11/09/2003  3
## 1435   11/10/2005  3
## 1436   11/11/1999  3
## 1437   11/11/2006  3
## 1438   11/12/2007  3
## 1439   11/12/2008  3
## 1440   12/01/1998  3
## 1441   12/01/2007  3
## 1442   12/01/2012  3
## 1443   12/02/2001  3
## 1444   12/03/2007  3
## 1445   12/03/2012  3
## 1446   12/03/2013  3
## 1447   12/05/1998  3
## 1448   12/05/2000  3
## 1449   12/06/2003  3
## 1450   12/07/2001  3
## 1451   12/07/2002  3
## 1452   12/07/2004  3
## 1453   12/07/2007  3
## 1454   12/07/2010  3
## 1455   12/08/2003  3
## 1456   12/08/2007  3
## 1457   12/09/2006  3
## 1458   12/09/2013  3
## 1459   12/10/1999  3
## 1460   12/10/2001  3
## 1461   12/10/2005  3
## 1462   12/10/2007  3
## 1463   12/10/2011  3
## 1464   12/11/1996  3
## 1465   12/11/2008  3
## 1466   12/12/2001  3
## 1467   12/12/2012  3
## 1468   13/01/2000  3
## 1469   13/01/2004  3
## 1470   13/01/2010  3
## 1471   13/02/1997  3
## 1472   13/02/2003  3
## 1473   13/02/2009  3
## 1474   13/02/2013  3
## 1475   13/03/2008  3
## 1476   13/03/2013  3
## 1477   13/04/1996  3
## 1478   13/05/2002  3
## 1479   13/05/2004  3
## 1480   13/05/2013  3
## 1481   13/05/2014  3
## 1482   13/06/2011  3
## 1483   13/07/2011  3
## 1484   13/08/1997  3
## 1485   13/08/2013  3
## 1486   13/09/2007  3
## 1487   13/10/2000  3
## 1488   13/10/2006  3
## 1489   13/10/2011  3
## 1490   13/10/2012  3
## 1491   13/11/1997  3
## 1492   13/11/1998  3
## 1493   13/11/2009  3
## 1494   13/11/2012  3
## 1495   13/12/2007  3
## 1496   14/01/1999  3
## 1497   14/01/2001  3
## 1498   14/01/2011  3
## 1499   14/01/2014  3
## 1500   14/03/1997  3
## 1501   14/03/2008  3
## 1502   14/04/2003  3
## 1503   14/04/2009  3
## 1504   14/05/1997  3
## 1505   14/05/2001  3
## 1506   14/06/2001  3
## 1507   14/06/2005  3
## 1508   14/06/2011  3
## 1509   14/07/1998  3
## 1510   14/07/1999  3
## 1511   14/08/1997  3
## 1512   14/08/2001  3
## 1513   14/08/2002  3
## 1514   14/09/1999  3
## 1515   14/09/2009  3
## 1516   14/10/2002  3
## 1517   14/10/2003  3
## 1518   14/11/2002  3
## 1519   14/12/1998  3
## 1520   14/12/1999  3
## 1521   14/12/2000  3
## 1522   14/12/2004  3
## 1523   14/12/2005  3
## 1524   14/12/2012  3
## 1525   15/01/1997  3
## 1526   15/01/2004  3
## 1527   15/01/2010  3
## 1528   15/01/2011  3
## 1529   15/02/2011  3
## 1530   15/03/2000  3
## 1531   15/03/2004  3
## 1532   15/03/2006  3
## 1533   15/03/2007  3
## 1534   15/03/2011  3
## 1535   15/04/1996  3
## 1536   15/04/2003  3
## 1537   15/04/2005  3
## 1538   15/05/1997  3
## 1539   15/05/2001  3
## 1540   15/06/2012  3
## 1541   15/06/2013  3
## 1542   15/06/2014  3
## 1543   15/07/1997  3
## 1544   15/08/1996  3
## 1545   15/08/2003  3
## 1546   15/08/2007  3
## 1547   15/09/1996  3
## 1548   15/09/1999  3
## 1549   15/10/2000  3
## 1550   15/10/2003  3
## 1551   15/10/2009  3
## 1552   15/11/2001  3
## 1553   15/11/2004  3
## 1554   15/11/2005  3
## 1555   15/12/2000  3
## 1556   15/12/2012  3
## 1557   16/01/2007  3
## 1558   16/02/2000  3
## 1559   16/02/2005  3
## 1560   16/03/2009  3
## 1561   16/04/1997  3
## 1562   16/04/1999  3
## 1563   16/04/2001  3
## 1564   16/04/2003  3
## 1565   16/05/2007  3
## 1566   16/05/2011  3
## 1567   16/06/2000  3
## 1568   16/06/2003  3
## 1569   16/06/2009  3
## 1570   16/07/2004  3
## 1571   16/07/2007  3
## 1572   16/08/2005  3
## 1573   16/08/2011  3
## 1574   16/08/2012  3
## 1575   16/08/2013  3
## 1576   16/09/2003  3
## 1577   16/09/2011  3
## 1578   16/10/1996  3
## 1579   16/10/2003  3
## 1580   16/11/2007  3
## 1581   16/12/2002  3
## 1582   16/12/2005  3
## 1583   17/02/1997  3
## 1584   17/02/2003  3
## 1585   17/02/2013  3
## 1586   17/02/2014  3
## 1587   17/03/1999  3
## 1588   17/03/2005  3
## 1589   17/04/1998  3
## 1590   17/04/2000  3
## 1591   17/04/2001  3
## 1592   17/04/2006  3
## 1593   17/04/2007  3
## 1594   17/05/2007  3
## 1595   17/05/2010  3
## 1596   17/06/1996  3
## 1597   17/06/2014  3
## 1598   17/07/1996  3
## 1599   17/07/1998  3
## 1600   17/08/2006  3
## 1601   17/09/2012  3
## 1602   17/11/2011  3
## 1603   17/12/2004  3
## 1604   18/01/2002  3
## 1605   18/01/2005  3
## 1606   18/02/2003  3
## 1607   18/02/2008  3
## 1608   18/02/2010  3
## 1609   18/03/1998  3
## 1610   18/04/2001  3
## 1611   18/04/2007  3
## 1612   18/05/2008  3
## 1613   18/05/2014  3
## 1614   18/06/1996  3
## 1615   18/06/2014  3
## 1616   18/07/2012  3
## 1617   18/08/2003  3
## 1618   18/08/2008  3
## 1619   18/08/2013  3
## 1620   18/09/2001  3
## 1621   18/09/2012  3
## 1622   18/09/2013  3
## 1623   18/10/2004  3
## 1624   18/10/2013  3
## 1625   18/11/1996  3
## 1626   18/11/1997  3
## 1627   18/11/2009  3
## 1628   18/11/2010  3
## 1629   18/12/2000  3
## 1630   18/12/2013  3
## 1631   19/01/1998  3
## 1632   19/01/2006  3
## 1633   19/01/2010  3
## 1634   19/02/2006  3
## 1635   19/02/2008  3
## 1636   19/03/1997  3
## 1637   19/04/2006  3
## 1638   19/05/2005  3
## 1639   19/06/1996  3
## 1640   19/06/2001  3
## 1641   19/06/2002  3
## 1642   19/06/2003  3
## 1643   19/06/2012  3
## 1644   19/07/1996  3
## 1645   19/07/2005  3
## 1646   19/07/2013  3
## 1647   19/08/1997  3
## 1648   19/08/1999  3
## 1649   19/08/2002  3
## 1650   19/08/2006  3
## 1651   19/09/2001  3
## 1652   19/09/2002  3
## 1653   19/10/1997  3
## 1654   19/10/1999  3
## 1655   19/10/2000  3
## 1656   19/10/2009  3
## 1657   19/10/2012  3
## 1658   19/11/2010  3
## 1659   19/12/2009  3
## 1660   19/12/2011  3
## 1661   20/01/1999  3
## 1662   20/01/2002  3
## 1663   20/01/2012  3
## 1664   20/02/1997  3
## 1665   20/02/1999  3
## 1666   20/02/2004  3
## 1667   20/02/2006  3
## 1668   20/02/2013  3
## 1669   20/03/1998  3
## 1670   20/03/2000  3
## 1671   20/03/2007  3
## 1672   20/04/1996  3
## 1673   20/04/2004  3
## 1674   20/04/2006  3
## 1675   20/05/1997  3
## 1676   20/05/2007  3
## 1677   20/05/2013  3
## 1678   20/06/2014  3
## 1679   20/07/2001  3
## 1680   20/07/2004  3
## 1681   20/07/2007  3
## 1682   20/07/2010  3
## 1683   20/08/1997  3
## 1684   20/08/1998  3
## 1685   20/08/2002  3
## 1686   20/08/2003  3
## 1687   20/08/2009  3
## 1688   20/09/1999  3
## 1689   20/09/2000  3
## 1690   20/09/2001  3
## 1691   20/09/2006  3
## 1692   20/09/2007  3
## 1693   20/09/2013  3
## 1694   20/10/2000  3
## 1695   20/10/2010  3
## 1696   20/10/2011  3
## 1697   20/11/2000  3
## 1698   20/11/2008  3
## 1699   20/11/2009  3
## 1700   20/12/2007  3
## 1701   21/01/2010  3
## 1702   21/02/2002  3
## 1703   21/02/2013  3
## 1704   21/03/2003  3
## 1705   21/04/2005  3
## 1706   21/05/1998  3
## 1707   21/05/2001  3
## 1708   21/05/2004  3
## 1709   21/05/2007  3
## 1710   21/06/2002  3
## 1711   21/06/2004  3
## 1712   21/06/2010  3
## 1713   21/06/2012  3
## 1714   21/07/1998  3
## 1715   21/07/1999  3
## 1716   21/07/2004  3
## 1717   21/08/2000  3
## 1718   21/09/1999  3
## 1719   21/09/2011  3
## 1720   21/09/2013  3
## 1721   21/10/2004  3
## 1722   21/11/2000  3
## 1723   21/11/2006  3
## 1724   21/12/2004  3
## 1725   21/12/2008  3
## 1726   21/12/2012  3
## 1727   22/01/2001  3
## 1728   22/01/2002  3
## 1729   22/01/2003  3
## 1730   22/02/2000  3
## 1731   22/03/2000  3
## 1732   22/03/2007  3
## 1733   22/04/1999  3
## 1734   22/04/2003  3
## 1735   22/04/2005  3
## 1736   22/04/2008  3
## 1737   22/05/2001  3
## 1738   22/05/2006  3
## 1739   22/05/2007  3
## 1740   22/06/1996  3
## 1741   22/06/2001  3
## 1742   22/06/2007  3
## 1743   22/06/2012  3
## 1744   22/07/2003  3
## 1745   22/07/2008  3
## 1746   22/08/1997  3
## 1747   22/08/2000  3
## 1748   22/09/2005  3
## 1749   22/10/2001  3
## 1750   22/11/1999  3
## 1751   22/11/2009  3
## 1752   22/11/2010  3
## 1753   22/11/2011  3
## 1754   22/11/2013  3
## 1755   22/12/1998  3
## 1756   22/12/2003  3
## 1757   22/12/2004  3
## 1758   22/12/2009  3
## 1759   22/12/2012  3
## 1760   23/01/1998  3
## 1761   23/01/2001  3
## 1762   23/02/1999  3
## 1763   23/04/2007  3
## 1764   23/04/2014  3
## 1765   23/05/2013  3
## 1766   23/06/1997  3
## 1767   23/06/1998  3
## 1768   23/06/1999  3
## 1769   23/06/2003  3
## 1770   23/06/2008  3
## 1771   23/07/1998  3
## 1772   23/07/1999  3
## 1773   23/07/2002  3
## 1774   23/07/2007  3
## 1775   23/08/2000  3
## 1776   23/08/2001  3
## 1777   23/08/2009  3
## 1778   23/08/2011  3
## 1779   23/09/1997  3
## 1780   23/09/2005  3
## 1781   23/09/2008  3
## 1782   23/09/2013  3
## 1783   23/10/1998  3
## 1784   23/10/2004  3
## 1785   23/11/2004  3
## 1786   23/12/2011  3
## 1787   24/01/1997  3
## 1788   24/01/2002  3
## 1789   24/01/2005  3
## 1790   24/01/2007  3
## 1791   24/01/2008  3
## 1792   24/01/2013  3
## 1793   24/02/1998  3
## 1794   24/02/2000  3
## 1795   24/02/2010  3
## 1796   24/02/2011  3
## 1797   24/03/2008  3
## 1798   24/03/2014  3
## 1799   24/05/1996  3
## 1800   24/05/2006  3
## 1801   24/05/2013  3
## 1802   24/06/2002  3
## 1803   24/06/2014  3
## 1804   24/07/1996  3
## 1805   24/07/2008  3
## 1806   24/08/2009  3
## 1807   24/08/2011  3
## 1808   24/09/2003  3
## 1809   24/09/2007  3
## 1810   24/09/2010  3
## 1811   24/10/2001  3
## 1812   24/10/2010  3
## 1813   24/10/2013  3
## 1814   24/11/2003  3
## 1815   24/11/2009  3
## 1816   24/11/2010  3
## 1817   25/01/2012  3
## 1818   25/01/2014  3
## 1819   25/02/1999  3
## 1820   25/02/2003  3
## 1821   25/02/2009  3
## 1822   25/02/2013  3
## 1823   25/03/2011  3
## 1824   25/04/2005  3
## 1825   25/05/2006  3
## 1826   25/05/2007  3
## 1827   25/05/2010  3
## 1828   25/05/2011  3
## 1829   25/06/1998  3
## 1830   25/06/2004  3
## 1831   25/06/2007  3
## 1832   25/07/2000  3
## 1833   25/08/2005  3
## 1834   25/09/2010  3
## 1835   25/10/1998  3
## 1836   25/10/2007  3
## 1837   25/10/2011  3
## 1838   25/10/2013  3
## 1839   25/12/2013  3
## 1840   26/01/2010  3
## 1841   26/02/1999  3
## 1842   26/02/2001  3
## 1843   26/02/2008  3
## 1844   26/02/2010  3
## 1845   26/02/2014  3
## 1846   26/03/1997  3
## 1847   26/03/2003  3
## 1848   26/03/2004  3
## 1849   26/03/2012  3
## 1850   26/03/2014  3
## 1851   26/04/2005  3
## 1852   26/04/2012  3
## 1853   26/05/1997  3
## 1854   26/05/2007  3
## 1855   26/05/2010  3
## 1856   26/06/1998  3
## 1857   26/06/2000  3
## 1858   26/06/2011  3
## 1859   26/07/1996  3
## 1860   26/07/1999  3
## 1861   26/07/2004  3
## 1862   26/07/2007  3
## 1863   26/08/1997  3
## 1864   26/08/1999  3
## 1865   26/08/2010  3
## 1866   26/09/2000  3
## 1867   26/09/2003  3
## 1868   26/10/2000  3
## 1869   26/10/2006  3
## 1870   26/10/2012  3
## 1871   27/01/1998  3
## 1872   27/01/2004  3
## 1873   27/01/2010  3
## 1874   27/01/2014  3
## 1875   27/02/2001  3
## 1876   27/02/2006  3
## 1877   27/02/2013  3
## 1878   27/03/2000  3
## 1879   27/03/2002  3
## 1880   27/03/2006  3
## 1881   27/03/2007  3
## 1882   27/04/2000  3
## 1883   27/04/2006  3
## 1884   27/04/2007  3
## 1885   27/04/2009  3
## 1886   27/05/2004  3
## 1887   27/05/2014  3
## 1888   27/06/2001  3
## 1889   27/07/2007  3
## 1890   27/07/2011  3
## 1891   27/08/1996  3
## 1892   27/08/1997  3
## 1893   27/08/1998  3
## 1894   27/08/1999  3
## 1895   27/09/2000  3
## 1896   27/09/2001  3
## 1897   27/09/2007  3
## 1898   27/10/2011  3
## 1899   27/11/2012  3
## 1900   28/01/2005  3
## 1901   28/01/2008  3
## 1902   28/01/2011  3
## 1903   28/02/2011  3
## 1904   28/03/2000  3
## 1905   28/04/2005  3
## 1906   28/05/1999  3
## 1907   28/06/2006  3
## 1908   28/07/1997  3
## 1909   28/07/2012  3
## 1910   28/08/2012  3
## 1911   28/09/2006  3
## 1912   28/09/2011  3
## 1913   28/10/1996  3
## 1914   28/10/2002  3
## 1915   28/10/2003  3
## 1916   28/10/2005  3
## 1917   28/10/2008  3
## 1918   28/10/2010  3
## 1919   28/11/1998  3
## 1920   28/11/2000  3
## 1921   28/11/2012  3
## 1922   28/12/2007  3
## 1923   29/03/1999  3
## 1924   29/03/2001  3
## 1925   29/03/2013  3
## 1926   29/04/1996  3
## 1927   29/04/1998  3
## 1928   29/04/2003  3
## 1929   29/04/2006  3
## 1930   29/04/2010  3
## 1931   29/05/1997  3
## 1932   29/05/1999  3
## 1933   29/05/2000  3
## 1934   29/05/2013  3
## 1935   29/06/1998  3
## 1936   29/06/2007  3
## 1937   29/06/2010  3
## 1938   29/06/2011  3
## 1939   29/06/2012  3
## 1940   29/07/2002  3
## 1941   29/07/2003  3
## 1942   29/07/2005  3
## 1943   29/07/2009  3
## 1944   29/07/2011  3
## 1945   29/08/1996  3
## 1946   29/08/1997  3
## 1947   29/08/2001  3
## 1948   29/08/2005  3
## 1949   29/09/2000  3
## 1950   29/09/2006  3
## 1951   29/09/2009  3
## 1952   29/10/1999  3
## 1953   29/10/2004  3
## 1954   29/10/2009  3
## 1955   29/11/2011  3
## 1956   29/11/2013  3
## 1957   29/12/2004  3
## 1958   29/12/2013  3
## 1959   30/01/2001  3
## 1960   30/01/2003  3
## 1961   30/01/2012  3
## 1962   30/01/2014  3
## 1963   30/03/2007  3
## 1964   30/04/1998  3
## 1965   30/04/2004  3
## 1966   30/04/2012  3
## 1967   30/05/1997  3
## 1968   30/05/2002  3
## 1969   30/05/2012  3
## 1970   30/06/1997  3
## 1971   30/06/2000  3
## 1972   30/06/2003  3
## 1973   30/06/2009  3
## 1974   30/06/2011  3
## 1975   30/07/2011  3
## 1976   30/07/2013  3
## 1977   30/08/2000  3
## 1978   30/08/2006  3
## 1979   30/09/2010  3
## 1980   30/10/2001  3
## 1981   30/10/2005  3
## 1982   30/11/2005  3
## 1983   30/11/2012  3
## 1984   31/01/2001  3
## 1985   31/01/2008  3
## 1986   31/01/2014  3
## 1987   31/03/2009  3
## 1988   31/05/2000  3
## 1989   31/05/2006  3
## 1990   31/05/2011  3
## 1991   31/07/1998  3
## 1992   31/07/2008  3
## 1993   31/07/2013  3
## 1994   31/08/2000  3
## 1995   31/08/2002  3
## 1996   31/08/2006  3
## 1997   31/10/1997  3
## 1998   31/10/2001  3
## 1999   31/10/2006  3
## 2000   31/10/2013  3
## 2001   01/01/1997  2
## 2002   01/01/2000  2
## 2003   01/01/2003  2
## 2004   01/01/2010  2
## 2005   01/01/2013  2
## 2006   01/02/1996  2
## 2007   01/02/2001  2
## 2008   01/02/2002  2
## 2009   01/02/2003  2
## 2010   01/02/2005  2
## 2011   01/02/2006  2
## 2012   01/02/2008  2
## 2013   01/02/2012  2
## 2014   01/03/2001  2
## 2015   01/03/2005  2
## 2016   01/04/2003  2
## 2017   01/04/2009  2
## 2018   01/05/2008  2
## 2019   01/05/2012  2
## 2020   01/05/2014  2
## 2021   01/06/1998  2
## 2022   01/06/2000  2
## 2023   01/06/2002  2
## 2024   01/06/2007  2
## 2025   01/06/2014  2
## 2026   01/07/1997  2
## 2027   01/07/1999  2
## 2028   01/07/2002  2
## 2029   01/07/2004  2
## 2030   01/07/2006  2
## 2031   01/07/2007  2
## 2032   01/07/2009  2
## 2033   01/07/2013  2
## 2034   01/08/2003  2
## 2035   01/08/2005  2
## 2036   01/08/2008  2
## 2037   01/08/2012  2
## 2038   01/09/1998  2
## 2039   01/09/2002  2
## 2040   01/09/2010  2
## 2041   01/09/2011  2
## 2042   01/10/2006  2
## 2043   01/11/1998  2
## 2044   01/12/1998  2
## 2045   01/12/1999  2
## 2046   01/12/2004  2
## 2047   01/12/2007  2
## 2048   01/12/2010  2
## 2049   02/01/2002  2
## 2050   02/01/2011  2
## 2051   02/01/2014  2
## 2052   02/02/2000  2
## 2053   02/02/2002  2
## 2054   02/02/2011  2
## 2055   02/03/2009  2
## 2056   02/03/2012  2
## 2057   02/04/1997  2
## 2058   02/04/2003  2
## 2059   02/04/2007  2
## 2060   02/05/2003  2
## 2061   02/05/2014  2
## 2062   02/06/2000  2
## 2063   02/06/2002  2
## 2064   02/06/2003  2
## 2065   02/06/2005  2
## 2066   02/06/2006  2
## 2067   02/06/2008  2
## 2068   02/06/2011  2
## 2069   02/06/2013  2
## 2070   02/06/2014  2
## 2071   02/07/2006  2
## 2072   02/07/2007  2
## 2073   02/07/2013  2
## 2074   02/08/1998  2
## 2075   02/08/2013  2
## 2076   02/09/2003  2
## 2077   02/09/2009  2
## 2078   02/09/2011  2
## 2079   02/10/2005  2
## 2080   02/10/2007  2
## 2081   02/10/2008  2
## 2082   02/11/1995  2
## 2083   02/11/2000  2
## 2084   02/11/2006  2
## 2085   02/11/2008  2
## 2086   02/12/1997  2
## 2087   02/12/1999  2
## 2088   02/12/2000  2
## 2089   02/12/2003  2
## 2090   02/12/2004  2
## 2091   02/12/2005  2
## 2092   02/12/2011  2
## 2093   03/01/2009  2
## 2094   03/01/2014  2
## 2095   03/02/2000  2
## 2096   03/02/2003  2
## 2097   03/02/2008  2
## 2098   03/02/2009  2
## 2099   03/03/1998  2
## 2100   03/03/1999  2
## 2101   03/03/2003  2
## 2102   03/03/2004  2
## 2103   03/04/1997  2
## 2104   03/04/1998  2
## 2105   03/04/1999  2
## 2106   03/04/2007  2
## 2107   03/04/2012  2
## 2108   03/05/2000  2
## 2109   03/05/2004  2
## 2110   03/05/2007  2
## 2111   03/05/2010  2
## 2112   03/05/2012  2
## 2113   03/06/1998  2
## 2114   03/06/1999  2
## 2115   03/06/2010  2
## 2116   03/07/1996  2
## 2117   03/07/1998  2
## 2118   03/07/2003  2
## 2119   03/07/2006  2
## 2120   03/07/2013  2
## 2121   03/08/1998  2
## 2122   03/08/2001  2
## 2123   03/08/2002  2
## 2124   03/08/2009  2
## 2125   03/08/2010  2
## 2126   03/08/2011  2
## 2127   03/09/1997  2
## 2128   03/09/2003  2
## 2129   03/09/2004  2
## 2130   03/09/2010  2
## 2131   03/10/2001  2
## 2132   03/10/2006  2
## 2133   03/10/2011  2
## 2134   03/11/1996  2
## 2135   03/11/1999  2
## 2136   03/11/2005  2
## 2137   03/11/2006  2
## 2138   03/11/2008  2
## 2139   03/11/2010  2
## 2140   03/11/2013  2
## 2141   03/12/1996  2
## 2142   03/12/1998  2
## 2143   03/12/2001  2
## 2144   03/12/2002  2
## 2145   03/12/2008  2
## 2146   03/12/2013  2
## 2147   04/01/1999  2
## 2148   04/03/1997  2
## 2149   04/03/2002  2
## 2150   04/04/1997  2
## 2151   04/04/2002  2
## 2152   04/04/2003  2
## 2153   04/04/2006  2
## 2154   04/04/2007  2
## 2155   04/04/2008  2
## 2156   04/04/2009  2
## 2157   04/04/2012  2
## 2158   04/04/2014  2
## 2159   04/05/1997  2
## 2160   04/05/2007  2
## 2161   04/05/2009  2
## 2162   04/05/2011  2
## 2163   04/06/1996  2
## 2164   04/06/1999  2
## 2165   04/06/2004  2
## 2166   04/06/2006  2
## 2167   04/06/2008  2
## 2168   04/06/2009  2
## 2169   04/06/2010  2
## 2170   04/06/2012  2
## 2171   04/06/2014  2
## 2172   04/07/2001  2
## 2173   04/07/2005  2
## 2174   04/07/2008  2
## 2175   04/07/2013  2
## 2176   04/08/1998  2
## 2177   04/08/2003  2
## 2178   04/08/2007  2
## 2179   04/08/2010  2
## 2180   04/09/1998  2
## 2181   04/09/2001  2
## 2182   04/09/2010  2
## 2183   04/09/2012  2
## 2184   04/10/2000  2
## 2185   04/10/2001  2
## 2186   04/10/2011  2
## 2187   04/11/1999  2
## 2188   04/11/2000  2
## 2189   04/11/2002  2
## 2190   04/11/2004  2
## 2191   04/11/2006  2
## 2192   04/12/1996  2
## 2193   04/12/2006  2
## 2194   04/12/2010  2
## 2195   05/01/1998  2
## 2196   05/01/1999  2
## 2197   05/01/2003  2
## 2198   05/01/2004  2
## 2199   05/01/2010  2
## 2200   05/01/2011  2
## 2201   05/01/2014  2
## 2202   05/02/1997  2
## 2203   05/02/2004  2
## 2204   05/02/2013  2
## 2205   05/03/1998  2
## 2206   05/03/2001  2
## 2207   05/04/1997  2
## 2208   05/04/1999  2
## 2209   05/04/2003  2
## 2210   05/04/2005  2
## 2211   05/04/2011  2
## 2212   05/04/2014  2
## 2213   05/05/2006  2
## 2214   05/05/2008  2
## 2215   05/05/2010  2
## 2216   05/05/2011  2
## 2217   05/05/2012  2
## 2218   05/06/2000  2
## 2219   05/06/2001  2
## 2220   05/06/2003  2
## 2221   05/06/2004  2
## 2222   05/06/2006  2
## 2223   05/06/2007  2
## 2224   05/06/2009  2
## 2225   05/06/2011  2
## 2226   05/06/2013  2
## 2227   05/07/1999  2
## 2228   05/07/2006  2
## 2229   05/07/2011  2
## 2230   05/07/2012  2
## 2231   05/07/2013  2
## 2232   05/08/1996  2
## 2233   05/08/1998  2
## 2234   05/08/2003  2
## 2235   05/08/2004  2
## 2236   05/08/2009  2
## 2237   05/08/2010  2
## 2238   05/09/1997  2
## 2239   05/09/2002  2
## 2240   05/09/2003  2
## 2241   05/09/2006  2
## 2242   05/09/2007  2
## 2243   05/09/2012  2
## 2244   05/10/1997  2
## 2245   05/10/1999  2
## 2246   05/10/2005  2
## 2247   05/10/2011  2
## 2248   05/10/2013  2
## 2249   05/11/2000  2
## 2250   05/11/2003  2
## 2251   05/11/2004  2
## 2252   05/11/2009  2
## 2253   05/12/1998  2
## 2254   05/12/1999  2
## 2255   05/12/2000  2
## 2256   05/12/2003  2
## 2257   05/12/2004  2
## 2258   05/12/2006  2
## 2259   05/12/2007  2
## 2260   06/01/1998  2
## 2261   06/01/1999  2
## 2262   06/01/2000  2
## 2263   06/01/2006  2
## 2264   06/01/2009  2
## 2265   06/02/1996  2
## 2266   06/02/1998  2
## 2267   06/02/2002  2
## 2268   06/02/2006  2
## 2269   06/02/2008  2
## 2270   06/02/2009  2
## 2271   06/03/1997  2
## 2272   06/03/2001  2
## 2273   06/03/2005  2
## 2274   06/04/2000  2
## 2275   06/04/2006  2
## 2276   06/04/2009  2
## 2277   06/05/1996  2
## 2278   06/05/1997  2
## 2279   06/05/2002  2
## 2280   06/05/2011  2
## 2281   06/06/2001  2
## 2282   06/06/2003  2
## 2283   06/06/2004  2
## 2284   06/06/2011  2
## 2285   06/06/2013  2
## 2286   06/07/2004  2
## 2287   06/07/2006  2
## 2288   06/07/2011  2
## 2289   06/07/2013  2
## 2290   06/08/1997  2
## 2291   06/08/2001  2
## 2292   06/08/2004  2
## 2293   06/08/2006  2
## 2294   06/08/2010  2
## 2295   06/09/1997  2
## 2296   06/09/2006  2
## 2297   06/10/1997  2
## 2298   06/10/1998  2
## 2299   06/10/2003  2
## 2300   06/10/2006  2
## 2301   06/10/2009  2
## 2302   06/10/2010  2
## 2303   06/11/1997  2
## 2304   06/11/2006  2
## 2305   06/11/2009  2
## 2306   06/12/2010  2
## 2307   06/12/2012  2
## 2308   07/01/1997  2
## 2309   07/01/1999  2
## 2310   07/01/2000  2
## 2311   07/01/2002  2
## 2312   07/01/2003  2
## 2313   07/02/2013  2
## 2314   07/03/1996  2
## 2315   07/03/2006  2
## 2316   07/03/2007  2
## 2317   07/04/1997  2
## 2318   07/04/1999  2
## 2319   07/04/2005  2
## 2320   07/04/2011  2
## 2321   07/05/1998  2
## 2322   07/05/2001  2
## 2323   07/05/2008  2
## 2324   07/05/2013  2
## 2325   07/06/1996  2
## 2326   07/06/2000  2
## 2327   07/06/2001  2
## 2328   07/06/2005  2
## 2329   07/06/2006  2
## 2330   07/06/2013  2
## 2331   07/07/1998  2
## 2332   07/07/2004  2
## 2333   07/07/2005  2
## 2334   07/07/2006  2
## 2335   07/07/2013  2
## 2336   07/09/1996  2
## 2337   07/09/2001  2
## 2338   07/09/2003  2
## 2339   07/09/2006  2
## 2340   07/09/2012  2
## 2341   07/10/1996  2
## 2342   07/10/2003  2
## 2343   07/10/2004  2
## 2344   07/10/2005  2
## 2345   07/10/2008  2
## 2346   07/10/2011  2
## 2347   07/10/2012  2
## 2348   07/11/2000  2
## 2349   07/11/2005  2
## 2350   07/11/2010  2
## 2351   07/11/2011  2
## 2352   07/12/1998  2
## 2353   07/12/2000  2
## 2354   07/12/2001  2
## 2355   07/12/2006  2
## 2356   07/12/2009  2
## 2357   07/12/2012  2
## 2358   08/01/1999  2
## 2359   08/01/2002  2
## 2360   08/01/2003  2
## 2361   08/01/2005  2
## 2362   08/01/2006  2
## 2363   08/01/2008  2
## 2364   08/01/2012  2
## 2365   08/02/1995  2
## 2366   08/02/1999  2
## 2367   08/02/2001  2
## 2368   08/02/2013  2
## 2369   08/03/2005  2
## 2370   08/04/1997  2
## 2371   08/04/2001  2
## 2372   08/04/2005  2
## 2373   08/04/2008  2
## 2374   08/04/2009  2
## 2375   08/05/1997  2
## 2376   08/05/1998  2
## 2377   08/05/2002  2
## 2378   08/05/2004  2
## 2379   08/05/2006  2
## 2380   08/05/2008  2
## 2381   08/05/2009  2
## 2382   08/06/2001  2
## 2383   08/06/2002  2
## 2384   08/06/2005  2
## 2385   08/06/2006  2
## 2386   08/06/2014  2
## 2387   08/07/2001  2
## 2388   08/07/2002  2
## 2389   08/07/2004  2
## 2390   08/07/2010  2
## 2391   08/08/1998  2
## 2392   08/08/2001  2
## 2393   08/08/2006  2
## 2394   08/08/2011  2
## 2395   08/09/1997  2
## 2396   08/09/1998  2
## 2397   08/09/2005  2
## 2398   08/09/2007  2
## 2399   08/09/2009  2
## 2400   08/09/2012  2
## 2401   08/10/2001  2
## 2402   08/10/2002  2
## 2403   08/10/2005  2
## 2404   08/10/2006  2
## 2405   08/10/2007  2
## 2406   08/10/2008  2
## 2407   08/10/2009  2
## 2408   08/11/2004  2
## 2409   08/11/2006  2
## 2410   08/11/2007  2
## 2411   08/11/2010  2
## 2412   08/12/2006  2
## 2413   08/12/2008  2
## 2414   08/12/2013  2
## 2415   09/01/2006  2
## 2416   09/01/2007  2
## 2417   09/01/2009  2
## 2418   09/01/2011  2
## 2419   09/02/2006  2
## 2420   09/02/2011  2
## 2421   09/03/2000  2
## 2422   09/03/2005  2
## 2423   09/03/2009  2
## 2424   09/03/2010  2
## 2425   09/03/2011  2
## 2426   09/03/2013  2
## 2427   09/04/2001  2
## 2428   09/04/2002  2
## 2429   09/04/2010  2
## 2430   09/04/2012  2
## 2431   09/05/2002  2
## 2432   09/05/2003  2
## 2433   09/05/2006  2
## 2434   09/05/2008  2
## 2435   09/05/2012  2
## 2436   09/05/2013  2
## 2437   09/06/2005  2
## 2438   09/06/2007  2
## 2439   09/07/1998  2
## 2440   09/07/2001  2
## 2441   09/07/2002  2
## 2442   09/07/2008  2
## 2443   09/07/2009  2
## 2444   09/07/2011  2
## 2445   09/08/2001  2
## 2446   09/08/2006  2
## 2447   09/08/2010  2
## 2448   09/08/2011  2
## 2449   09/08/2012  2
## 2450   09/09/2009  2
## 2451   09/10/1997  2
## 2452   09/10/2006  2
## 2453   09/11/1999  2
## 2454   09/11/2004  2
## 2455   09/11/2005  2
## 2456   09/11/2007  2
## 2457   09/11/2010  2
## 2458   09/11/2011  2
## 2459   09/12/1997  2
## 2460   09/12/2010  2
## 2461   10/01/2003  2
## 2462   10/01/2008  2
## 2463   10/01/2013  2
## 2464   10/02/1998  2
## 2465   10/02/2006  2
## 2466   10/02/2009  2
## 2467   10/02/2012  2
## 2468   10/02/2014  2
## 2469   10/03/2005  2
## 2470   10/03/2006  2
## 2471   10/03/2008  2
## 2472   10/03/2010  2
## 2473   10/03/2012  2
## 2474   10/03/2013  2
## 2475   10/04/1996  2
## 2476   10/04/1997  2
## 2477   10/04/2000  2
## 2478   10/04/2004  2
## 2479   10/04/2006  2
## 2480   10/04/2013  2
## 2481   10/05/2005  2
## 2482   10/05/2008  2
## 2483   10/06/2000  2
## 2484   10/06/2001  2
## 2485   10/06/2010  2
## 2486   10/07/1997  2
## 2487   10/07/1998  2
## 2488   10/07/2001  2
## 2489   10/07/2004  2
## 2490   10/07/2009  2
## 2491   10/07/2012  2
## 2492   10/08/2004  2
## 2493   10/08/2008  2
## 2494   10/09/1999  2
## 2495   10/09/2002  2
## 2496   10/09/2005  2
## 2497   10/09/2008  2
## 2498   10/10/1997  2
## 2499   10/10/2008  2
## 2500   10/10/2011  2
## 2501   10/11/1997  2
## 2502   10/11/1999  2
## 2503   10/11/2010  2
## 2504   10/12/1998  2
## 2505   10/12/1999  2
## 2506   10/12/2001  2
## 2507   10/12/2004  2
## 2508   10/12/2007  2
## 2509   10/12/2009  2
## 2510   11/01/2006  2
## 2511   11/01/2008  2
## 2512   11/01/2010  2
## 2513   11/01/2013  2
## 2514   11/02/2002  2
## 2515   11/02/2004  2
## 2516   11/02/2010  2
## 2517   11/03/2003  2
## 2518   11/03/2008  2
## 2519   11/03/2010  2
## 2520   11/03/2011  2
## 2521   11/03/2012  2
## 2522   11/04/2005  2
## 2523   11/04/2012  2
## 2524   11/05/2002  2
## 2525   11/05/2006  2
## 2526   11/05/2009  2
## 2527   11/05/2014  2
## 2528   11/06/1998  2
## 2529   11/06/2001  2
## 2530   11/06/2003  2
## 2531   11/06/2010  2
## 2532   11/07/1999  2
## 2533   11/08/2006  2
## 2534   11/08/2010  2
## 2535   11/08/2011  2
## 2536   11/09/2002  2
## 2537   11/09/2004  2
## 2538   11/09/2007  2
## 2539   11/09/2010  2
## 2540   11/09/2012  2
## 2541   11/10/1996  2
## 2542   11/10/2000  2
## 2543   11/10/2008  2
## 2544   11/10/2012  2
## 2545   11/11/2002  2
## 2546   11/11/2005  2
## 2547   11/11/2008  2
## 2548   11/11/2010  2
## 2549   11/11/2012  2
## 2550   11/11/2013  2
## 2551   11/12/1996  2
## 2552   11/12/1997  2
## 2553   11/12/2000  2
## 2554   11/12/2002  2
## 2555   11/12/2003  2
## 2556   11/12/2006  2
## 2557   11/12/2013  2
## 2558   12/01/1999  2
## 2559   12/01/2000  2
## 2560   12/01/2005  2
## 2561   12/01/2011  2
## 2562   12/02/2004  2
## 2563   12/02/2005  2
## 2564   12/02/2007  2
## 2565   12/02/2009  2
## 2566   12/02/2014  2
## 2567   12/03/1997  2
## 2568   12/03/1999  2
## 2569   12/03/2002  2
## 2570   12/03/2003  2
## 2571   12/04/2000  2
## 2572   12/04/2001  2
## 2573   12/04/2006  2
## 2574   12/04/2007  2
## 2575   12/04/2012  2
## 2576   12/04/2013  2
## 2577   12/05/1995  2
## 2578   12/05/2013  2
## 2579   12/06/1997  2
## 2580   12/06/2002  2
## 2581   12/06/2006  2
## 2582   12/06/2009  2
## 2583   12/06/2010  2
## 2584   12/06/2012  2
## 2585   12/06/2014  2
## 2586   12/07/1996  2
## 2587   12/07/1998  2
## 2588   12/07/2000  2
## 2589   12/07/2011  2
## 2590   12/07/2012  2
## 2591   12/08/1998  2
## 2592   12/08/2001  2
## 2593   12/08/2004  2
## 2594   12/08/2005  2
## 2595   12/08/2009  2
## 2596   12/09/1997  2
## 2597   12/09/2009  2
## 2598   12/09/2012  2
## 2599   12/10/1996  2
## 2600   12/10/2000  2
## 2601   12/11/2000  2
## 2602   12/11/2002  2
## 2603   12/11/2010  2
## 2604   12/11/2012  2
## 2605   12/12/1996  2
## 2606   12/12/2003  2
## 2607   12/12/2010  2
## 2608   13/01/1998  2
## 2609   13/01/1999  2
## 2610   13/01/2005  2
## 2611   13/01/2007  2
## 2612   13/01/2009  2
## 2613   13/01/2011  2
## 2614   13/02/2004  2
## 2615   13/02/2007  2
## 2616   13/02/2011  2
## 2617   13/02/2012  2
## 2618   13/02/2014  2
## 2619   13/03/1996  2
## 2620   13/03/1998  2
## 2621   13/03/2001  2
## 2622   13/03/2002  2
## 2623   13/03/2007  2
## 2624   13/03/2009  2
## 2625   13/04/2005  2
## 2626   13/04/2012  2
## 2627   13/04/2014  2
## 2628   13/05/1998  2
## 2629   13/05/2000  2
## 2630   13/05/2007  2
## 2631   13/06/2002  2
## 2632   13/06/2005  2
## 2633   13/06/2013  2
## 2634   13/06/2014  2
## 2635   13/07/1995  2
## 2636   13/07/1999  2
## 2637   13/07/2001  2
## 2638   13/07/2007  2
## 2639   13/07/2009  2
## 2640   13/07/2012  2
## 2641   13/08/2003  2
## 2642   13/09/1996  2
## 2643   13/09/2004  2
## 2644   13/09/2011  2
## 2645   13/10/1999  2
## 2646   13/10/2003  2
## 2647   13/10/2005  2
## 2648   13/11/1996  2
## 2649   13/11/2000  2
## 2650   13/11/2001  2
## 2651   13/11/2003  2
## 2652   13/11/2011  2
## 2653   13/11/2013  2
## 2654   13/12/2001  2
## 2655   13/12/2010  2
## 2656   14/01/1997  2
## 2657   14/01/2003  2
## 2658   14/01/2008  2
## 2659   14/01/2009  2
## 2660   14/02/1996  2
## 2661   14/02/2005  2
## 2662   14/02/2006  2
## 2663   14/03/1996  2
## 2664   14/03/1999  2
## 2665   14/03/2005  2
## 2666   14/03/2006  2
## 2667   14/03/2007  2
## 2668   14/03/2011  2
## 2669   14/03/2012  2
## 2670   14/04/1996  2
## 2671   14/04/1998  2
## 2672   14/04/2007  2
## 2673   14/04/2008  2
## 2674   14/04/2013  2
## 2675   14/05/1998  2
## 2676   14/05/2008  2
## 2677   14/05/2010  2
## 2678   14/06/1996  2
## 2679   14/06/1999  2
## 2680   14/06/2000  2
## 2681   14/06/2002  2
## 2682   14/06/2007  2
## 2683   14/07/2003  2
## 2684   14/07/2010  2
## 2685   14/07/2012  2
## 2686   14/07/2013  2
## 2687   14/08/2007  2
## 2688   14/08/2008  2
## 2689   14/08/2010  2
## 2690   14/08/2012  2
## 2691   14/09/1998  2
## 2692   14/09/2006  2
## 2693   14/10/1997  2
## 2694   14/10/1998  2
## 2695   14/10/2000  2
## 2696   14/10/2010  2
## 2697   14/10/2011  2
## 2698   14/11/2003  2
## 2699   14/11/2004  2
## 2700   14/11/2007  2
## 2701   14/11/2011  2
## 2702   14/12/1997  2
## 2703   15/01/2002  2
## 2704   15/01/2014  2
## 2705   15/02/1997  2
## 2706   15/02/1998  2
## 2707   15/02/2005  2
## 2708   15/02/2007  2
## 2709   15/02/2010  2
## 2710   15/03/1999  2
## 2711   15/03/2002  2
## 2712   15/03/2008  2
## 2713   15/03/2013  2
## 2714   15/04/2001  2
## 2715   15/04/2002  2
## 2716   15/04/2009  2
## 2717   15/04/2010  2
## 2718   15/05/2003  2
## 2719   15/05/2007  2
## 2720   15/06/1998  2
## 2721   15/06/2001  2
## 2722   15/06/2007  2
## 2723   15/06/2011  2
## 2724   15/07/1998  2
## 2725   15/07/2002  2
## 2726   15/07/2004  2
## 2727   15/07/2009  2
## 2728   15/07/2010  2
## 2729   15/07/2013  2
## 2730   15/08/2012  2
## 2731   15/09/1997  2
## 2732   15/09/2000  2
## 2733   15/09/2002  2
## 2734   15/09/2013  2
## 2735   15/10/1996  2
## 2736   15/10/1997  2
## 2737   15/10/1998  2
## 2738   15/10/2005  2
## 2739   15/10/2012  2
## 2740   15/10/2013  2
## 2741   15/11/2002  2
## 2742   15/11/2006  2
## 2743   15/11/2007  2
## 2744   15/11/2013  2
## 2745   15/12/2001  2
## 2746   15/12/2005  2
## 2747   15/12/2007  2
## 2748   15/12/2009  2
## 2749   16/01/1998  2
## 2750   16/01/2002  2
## 2751   16/01/2003  2
## 2752   16/01/2010  2
## 2753   16/01/2012  2
## 2754   16/01/2014  2
## 2755   16/02/1999  2
## 2756   16/02/2013  2
## 2757   16/03/1998  2
## 2758   16/03/2003  2
## 2759   16/03/2004  2
## 2760   16/03/2006  2
## 2761   16/03/2008  2
## 2762   16/05/1997  2
## 2763   16/05/2003  2
## 2764   16/05/2004  2
## 2765   16/05/2008  2
## 2766   16/06/1999  2
## 2767   16/06/2005  2
## 2768   16/06/2008  2
## 2769   16/06/2010  2
## 2770   16/06/2014  2
## 2771   16/07/1997  2
## 2772   16/07/2002  2
## 2773   16/08/1996  2
## 2774   16/08/2002  2
## 2775   16/08/2003  2
## 2776   16/08/2004  2
## 2777   16/09/2009  2
## 2778   16/09/2010  2
## 2779   16/09/2012  2
## 2780   16/09/2013  2
## 2781   16/10/2000  2
## 2782   16/10/2005  2
## 2783   16/10/2007  2
## 2784   16/10/2009  2
## 2785   16/11/2011  2
## 2786   16/11/2013  2
## 2787   16/12/2000  2
## 2788   17/01/1997  2
## 2789   17/01/2001  2
## 2790   17/01/2007  2
## 2791   17/02/2004  2
## 2792   17/02/2005  2
## 2793   17/02/2011  2
## 2794   17/03/2014  2
## 2795   17/04/1997  2
## 2796   17/04/2009  2
## 2797   17/04/2013  2
## 2798   17/05/1999  2
## 2799   17/06/1998  2
## 2800   17/06/2001  2
## 2801   17/06/2003  2
## 2802   17/06/2008  2
## 2803   17/06/2009  2
## 2804   17/06/2013  2
## 2805   17/08/1996  2
## 2806   17/08/1998  2
## 2807   17/08/1999  2
## 2808   17/08/2000  2
## 2809   17/08/2001  2
## 2810   17/08/2010  2
## 2811   17/08/2012  2
## 2812   17/09/1996  2
## 2813   17/09/1997  2
## 2814   17/09/2001  2
## 2815   17/09/2004  2
## 2816   17/09/2013  2
## 2817   17/10/2000  2
## 2818   17/10/2004  2
## 2819   17/10/2005  2
## 2820   17/10/2008  2
## 2821   17/10/2011  2
## 2822   17/10/2013  2
## 2823   17/11/2008  2
## 2824   17/11/2010  2
## 2825   17/12/2002  2
## 2826   17/12/2005  2
## 2827   17/12/2007  2
## 2828   18/01/1999  2
## 2829   18/01/2001  2
## 2830   18/01/2006  2
## 2831   18/01/2008  2
## 2832   18/01/2013  2
## 2833   18/02/1998  2
## 2834   18/02/1999  2
## 2835   18/02/2002  2
## 2836   18/02/2011  2
## 2837   18/03/1999  2
## 2838   18/03/2003  2
## 2839   18/03/2005  2
## 2840   18/03/2008  2
## 2841   18/03/2009  2
## 2842   18/03/2013  2
## 2843   18/03/2014  2
## 2844   18/04/2005  2
## 2845   18/04/2011  2
## 2846   18/04/2012  2
## 2847   18/05/1996  2
## 2848   18/05/2000  2
## 2849   18/05/2003  2
## 2850   18/05/2007  2
## 2851   18/05/2011  2
## 2852   18/05/2012  2
## 2853   18/06/1999  2
## 2854   18/06/2002  2
## 2855   18/06/2003  2
## 2856   18/06/2010  2
## 2857   18/06/2013  2
## 2858   18/07/1997  2
## 2859   18/07/2011  2
## 2860   18/08/1996  2
## 2861   18/08/2000  2
## 2862   18/08/2001  2
## 2863   18/08/2002  2
## 2864   18/08/2010  2
## 2865   18/08/2011  2
## 2866   18/08/2012  2
## 2867   18/09/1995  2
## 2868   18/09/2002  2
## 2869   18/09/2006  2
## 2870   18/10/1996  2
## 2871   18/10/1999  2
## 2872   18/10/2006  2
## 2873   18/11/1998  2
## 2874   18/11/1999  2
## 2875   18/11/2000  2
## 2876   18/11/2001  2
## 2877   18/11/2003  2
## 2878   18/11/2005  2
## 2879   18/11/2006  2
## 2880   18/12/1996  2
## 2881   18/12/2003  2
## 2882   18/12/2006  2
## 2883   18/12/2007  2
## 2884   19/01/2000  2
## 2885   19/01/2001  2
## 2886   19/01/2004  2
## 2887   19/01/2012  2
## 2888   19/01/2013  2
## 2889   19/02/2011  2
## 2890   19/02/2012  2
## 2891   19/02/2013  2
## 2892   19/02/2014  2
## 2893   19/03/1996  2
## 2894   19/03/2001  2
## 2895   19/03/2007  2
## 2896   19/03/2008  2
## 2897   19/04/1999  2
## 2898   19/04/2001  2
## 2899   19/04/2002  2
## 2900   19/04/2004  2
## 2901   19/04/2014  2
## 2902   19/05/1998  2
## 2903   19/05/2004  2
## 2904   19/05/2010  2
## 2905   19/05/2011  2
## 2906   19/06/2000  2
## 2907   19/06/2008  2
## 2908   19/07/2002  2
## 2909   19/08/1998  2
## 2910   19/08/2000  2
## 2911   19/09/1996  2
## 2912   19/09/1998  2
## 2913   19/09/2003  2
## 2914   19/09/2006  2
## 2915   19/09/2007  2
## 2916   19/10/2002  2
## 2917   19/10/2007  2
## 2918   19/11/2003  2
## 2919   19/11/2007  2
## 2920   19/11/2008  2
## 2921   19/11/2012  2
## 2922   19/12/2002  2
## 2923   19/12/2003  2
## 2924   19/12/2005  2
## 2925   19/12/2007  2
## 2926   19/12/2008  2
## 2927   19/12/2012  2
## 2928   19/12/2013  2
## 2929   20/01/2000  2
## 2930   20/02/2002  2
## 2931   20/03/2009  2
## 2932   20/04/2005  2
## 2933   20/04/2007  2
## 2934   20/05/1998  2
## 2935   20/05/2002  2
## 2936   20/05/2005  2
## 2937   20/05/2008  2
## 2938   20/05/2009  2
## 2939   20/05/2011  2
## 2940   20/05/2014  2
## 2941   20/06/2006  2
## 2942   20/06/2008  2
## 2943   20/07/2002  2
## 2944   20/07/2008  2
## 2945   20/07/2012  2
## 2946   20/07/2013  2
## 2947   20/08/1996  2
## 2948   20/08/1999  2
## 2949   20/08/2008  2
## 2950   20/08/2012  2
## 2951   20/09/1996  2
## 2952   20/09/2004  2
## 2953   20/09/2010  2
## 2954   20/09/2012  2
## 2955   20/10/2005  2
## 2956   20/10/2008  2
## 2957   20/10/2009  2
## 2958   20/10/2013  2
## 2959   20/11/1998  2
## 2960   20/11/2002  2
## 2961   20/11/2003  2
## 2962   20/11/2004  2
## 2963   20/11/2006  2
## 2964   20/11/2011  2
## 2965   20/11/2012  2
## 2966   20/12/2000  2
## 2967   20/12/2009  2
## 2968   20/12/2012  2
## 2969   20/12/2013  2
## 2970   21/01/1996  2
## 2971   21/01/1997  2
## 2972   21/01/1998  2
## 2973   21/01/2009  2
## 2974   21/01/2011  2
## 2975   21/01/2014  2
## 2976   21/02/1996  2
## 2977   21/02/1997  2
## 2978   21/02/2000  2
## 2979   21/02/2008  2
## 2980   21/03/1998  2
## 2981   21/03/2000  2
## 2982   21/03/2011  2
## 2983   21/04/1996  2
## 2984   21/04/2000  2
## 2985   21/04/2003  2
## 2986   21/04/2009  2
## 2987   21/04/2010  2
## 2988   21/04/2011  2
## 2989   21/05/1999  2
## 2990   21/05/2003  2
## 2991   21/05/2014  2
## 2992   21/06/1997  2
## 2993   21/06/2000  2
## 2994   21/06/2005  2
## 2995   21/06/2006  2
## 2996   21/07/1996  2
## 2997   21/07/2000  2
## 2998   21/07/2002  2
## 2999   21/07/2008  2
## 3000   21/07/2009  2
## 3001   21/07/2010  2
## 3002   21/08/1998  2
## 3003   21/08/1999  2
## 3004   21/08/2008  2
## 3005   21/08/2011  2
## 3006   21/09/1996  2
## 3007   21/09/2001  2
## 3008   21/09/2006  2
## 3009   21/09/2009  2
## 3010   21/10/1997  2
## 3011   21/10/2003  2
## 3012   21/10/2010  2
## 3013   21/11/2008  2
## 3014   21/11/2011  2
## 3015   21/12/1998  2
## 3016   21/12/2007  2
## 3017   21/12/2009  2
## 3018   22/01/1999  2
## 3019   22/01/2000  2
## 3020   22/01/2009  2
## 3021   22/01/2010  2
## 3022   22/02/2004  2
## 3023   22/02/2007  2
## 3024   22/02/2010  2
## 3025   22/02/2013  2
## 3026   22/03/2004  2
## 3027   22/03/2008  2
## 3028   22/03/2013  2
## 3029   22/04/1998  2
## 3030   22/04/2001  2
## 3031   22/04/2002  2
## 3032   22/04/2004  2
## 3033   22/04/2013  2
## 3034   22/05/1998  2
## 3035   22/05/2002  2
## 3036   22/06/1998  2
## 3037   22/06/2000  2
## 3038   22/06/2010  2
## 3039   22/06/2011  2
## 3040   22/06/2013  2
## 3041   22/07/1997  2
## 3042   22/07/2002  2
## 3043   22/07/2004  2
## 3044   22/07/2005  2
## 3045   22/07/2009  2
## 3046   22/07/2010  2
## 3047   22/07/2012  2
## 3048   22/07/2013  2
## 3049   22/08/1996  2
## 3050   22/08/1998  2
## 3051   22/08/2005  2
## 3052   22/08/2007  2
## 3053   22/08/2013  2
## 3054   22/09/1995  2
## 3055   22/09/1996  2
## 3056   22/09/1998  2
## 3057   22/09/1999  2
## 3058   22/09/2006  2
## 3059   22/09/2008  2
## 3060   22/10/2000  2
## 3061   22/10/2002  2
## 3062   22/10/2003  2
## 3063   22/10/2013  2
## 3064   22/11/1996  2
## 3065   22/11/2003  2
## 3066   22/11/2005  2
## 3067   22/11/2006  2
## 3068   22/12/2001  2
## 3069   22/12/2010  2
## 3070   23/01/1996  2
## 3071   23/01/1997  2
## 3072   23/01/1999  2
## 3073   23/01/2002  2
## 3074   23/01/2006  2
## 3075   23/01/2008  2
## 3076   23/01/2009  2
## 3077   23/02/2000  2
## 3078   23/02/2001  2
## 3079   23/02/2005  2
## 3080   23/02/2007  2
## 3081   23/02/2009  2
## 3082   23/02/2011  2
## 3083   23/03/1999  2
## 3084   23/03/2001  2
## 3085   23/03/2004  2
## 3086   23/03/2005  2
## 3087   23/03/2006  2
## 3088   23/03/2011  2
## 3089   23/04/1998  2
## 3090   23/04/2002  2
## 3091   23/04/2006  2
## 3092   23/04/2011  2
## 3093   23/04/2012  2
## 3094   23/05/1997  2
## 3095   23/05/1999  2
## 3096   23/05/2001  2
## 3097   23/05/2008  2
## 3098   23/05/2014  2
## 3099   23/06/2005  2
## 3100   23/06/2009  2
## 3101   23/06/2012  2
## 3102   23/06/2014  2
## 3103   23/07/2000  2
## 3104   23/07/2003  2
## 3105   23/07/2004  2
## 3106   23/07/2006  2
## 3107   23/07/2008  2
## 3108   23/07/2010  2
## 3109   23/07/2013  2
## 3110   23/08/1997  2
## 3111   23/08/2002  2
## 3112   23/08/2003  2
## 3113   23/08/2004  2
## 3114   23/08/2006  2
## 3115   23/08/2007  2
## 3116   23/08/2012  2
## 3117   23/09/1998  2
## 3118   23/09/1999  2
## 3119   23/10/1997  2
## 3120   23/10/2008  2
## 3121   23/10/2009  2
## 3122   23/11/1996  2
## 3123   23/11/1998  2
## 3124   23/11/2002  2
## 3125   23/11/2005  2
## 3126   23/11/2006  2
## 3127   23/11/2011  2
## 3128   23/12/2008  2
## 3129   24/01/1998  2
## 3130   24/01/2001  2
## 3131   24/01/2003  2
## 3132   24/02/1997  2
## 3133   24/02/2009  2
## 3134   24/02/2013  2
## 3135   24/03/1998  2
## 3136   24/03/2003  2
## 3137   24/04/1996  2
## 3138   24/04/2001  2
## 3139   24/04/2005  2
## 3140   24/04/2009  2
## 3141   24/04/2013  2
## 3142   24/04/2014  2
## 3143   24/05/2000  2
## 3144   24/05/2001  2
## 3145   24/05/2002  2
## 3146   24/05/2010  2
## 3147   24/06/2003  2
## 3148   24/06/2005  2
## 3149   24/06/2006  2
## 3150   24/06/2007  2
## 3151   24/06/2008  2
## 3152   24/06/2011  2
## 3153   24/06/2013  2
## 3154   24/07/1997  2
## 3155   24/07/1999  2
## 3156   24/07/2000  2
## 3157   24/07/2003  2
## 3158   24/07/2009  2
## 3159   24/07/2011  2
## 3160   24/07/2013  2
## 3161   24/08/1999  2
## 3162   24/08/2005  2
## 3163   24/08/2007  2
## 3164   24/09/1996  2
## 3165   24/09/1998  2
## 3166   24/09/2002  2
## 3167   24/09/2005  2
## 3168   24/10/1996  2
## 3169   24/10/1997  2
## 3170   24/10/2005  2
## 3171   24/10/2011  2
## 3172   24/10/2012  2
## 3173   24/11/2004  2
## 3174   24/11/2008  2
## 3175   25/01/2001  2
## 3176   25/01/2008  2
## 3177   25/01/2011  2
## 3178   25/02/1997  2
## 3179   25/02/2002  2
## 3180   25/02/2008  2
## 3181   25/02/2010  2
## 3182   25/03/2004  2
## 3183   25/03/2010  2
## 3184   25/03/2013  2
## 3185   25/04/2010  2
## 3186   25/04/2014  2
## 3187   25/05/1999  2
## 3188   25/05/2002  2
## 3189   25/05/2005  2
## 3190   25/05/2013  2
## 3191   25/06/1996  2
## 3192   25/06/2001  2
## 3193   25/06/2002  2
## 3194   25/06/2006  2
## 3195   25/06/2011  2
## 3196   25/06/2012  2
## 3197   25/07/1996  2
## 3198   25/07/2001  2
## 3199   25/07/2002  2
## 3200   25/07/2003  2
## 3201   25/07/2010  2
## 3202   25/07/2011  2
## 3203   25/07/2012  2
## 3204   25/08/1999  2
## 3205   25/08/2000  2
## 3206   25/08/2001  2
## 3207   25/08/2002  2
## 3208   25/08/2006  2
## 3209   25/08/2008  2
## 3210   25/09/1996  2
## 3211   25/09/2001  2
## 3212   25/09/2006  2
## 3213   25/09/2007  2
## 3214   25/09/2009  2
## 3215   25/09/2011  2
## 3216   25/09/2013  2
## 3217   25/10/1996  2
## 3218   25/10/2001  2
## 3219   25/10/2002  2
## 3220   25/10/2010  2
## 3221   25/10/2012  2
## 3222   25/11/2000  2
## 3223   25/11/2004  2
## 3224   26/01/1998  2
## 3225   26/01/2004  2
## 3226   26/01/2007  2
## 3227   26/01/2008  2
## 3228   26/01/2009  2
## 3229   26/02/2003  2
## 3230   26/02/2005  2
## 3231   26/02/2012  2
## 3232   26/03/1996  2
## 3233   26/03/2001  2
## 3234   26/03/2009  2
## 3235   26/04/2000  2
## 3236   26/04/2004  2
## 3237   26/04/2007  2
## 3238   26/05/1998  2
## 3239   26/05/2011  2
## 3240   26/06/1997  2
## 3241   26/06/2002  2
## 3242   26/06/2004  2
## 3243   26/06/2006  2
## 3244   26/06/2013  2
## 3245   26/07/2000  2
## 3246   26/07/2005  2
## 3247   26/07/2006  2
## 3248   26/07/2013  2
## 3249   26/08/1998  2
## 3250   26/09/1999  2
## 3251   26/09/2001  2
## 3252   26/09/2002  2
## 3253   26/09/2005  2
## 3254   26/09/2011  2
## 3255   26/09/2012  2
## 3256   26/10/2004  2
## 3257   26/10/2010  2
## 3258   26/10/2013  2
## 3259   26/11/2001  2
## 3260   26/11/2005  2
## 3261   26/11/2006  2
## 3262   26/11/2007  2
## 3263   26/12/2000  2
## 3264   26/12/2006  2
## 3265   26/12/2013  2
## 3266   27/01/2003  2
## 3267   27/01/2006  2
## 3268   27/01/2009  2
## 3269   27/01/2013  2
## 3270   27/02/1997  2
## 3271   27/02/2008  2
## 3272   27/03/2008  2
## 3273   27/04/1996  2
## 3274   27/04/2004  2
## 3275   27/04/2005  2
## 3276   27/04/2010  2
## 3277   27/04/2012  2
## 3278   27/04/2014  2
## 3279   27/05/1996  2
## 3280   27/05/1997  2
## 3281   27/05/1999  2
## 3282   27/05/2001  2
## 3283   27/05/2005  2
## 3284   27/05/2008  2
## 3285   27/06/2005  2
## 3286   27/06/2006  2
## 3287   27/07/1998  2
## 3288   27/07/1999  2
## 3289   27/07/2006  2
## 3290   27/07/2010  2
## 3291   27/08/2001  2
## 3292   27/08/2002  2
## 3293   27/08/2007  2
## 3294   27/08/2009  2
## 3295   27/08/2010  2
## 3296   27/08/2013  2
## 3297   27/09/1997  2
## 3298   27/09/2004  2
## 3299   27/09/2011  2
## 3300   27/09/2012  2
## 3301   27/10/2004  2
## 3302   27/10/2005  2
## 3303   27/10/2007  2
## 3304   27/10/2012  2
## 3305   27/11/2000  2
## 3306   27/11/2001  2
## 3307   27/11/2002  2
## 3308   27/11/2006  2
## 3309   27/11/2011  2
## 3310   27/12/2013  2
## 3311   28/01/2010  2
## 3312   28/01/2012  2
## 3313   28/02/1999  2
## 3314   28/02/2000  2
## 3315   28/02/2001  2
## 3316   28/02/2004  2
## 3317   28/02/2012  2
## 3318   28/03/1998  2
## 3319   28/03/2005  2
## 3320   28/03/2008  2
## 3321   28/03/2011  2
## 3322   28/04/1996  2
## 3323   28/04/2008  2
## 3324   28/05/1997  2
## 3325   28/05/2002  2
## 3326   28/05/2003  2
## 3327   28/05/2004  2
## 3328   28/05/2009  2
## 3329   28/05/2012  2
## 3330   28/06/1998  2
## 3331   28/06/1999  2
## 3332   28/06/2000  2
## 3333   28/06/2007  2
## 3334   28/06/2008  2
## 3335   28/06/2011  2
## 3336   28/06/2013  2
## 3337   28/07/2000  2
## 3338   28/07/2001  2
## 3339   28/07/2005  2
## 3340   28/07/2006  2
## 3341   28/07/2010  2
## 3342   28/08/1997  2
## 3343   28/08/2001  2
## 3344   28/08/2003  2
## 3345   28/08/2007  2
## 3346   28/08/2009  2
## 3347   28/09/1996  2
## 3348   28/09/2000  2
## 3349   28/09/2001  2
## 3350   28/09/2009  2
## 3351   28/09/2010  2
## 3352   28/09/2012  2
## 3353   28/10/1998  2
## 3354   28/10/1999  2
## 3355   28/10/2004  2
## 3356   28/10/2009  2
## 3357   28/10/2011  2
## 3358   28/11/2001  2
## 3359   28/11/2004  2
## 3360   28/11/2011  2
## 3361   28/12/2001  2
## 3362   28/12/2004  2
## 3363   28/12/2005  2
## 3364   29/01/1996  2
## 3365   29/01/1998  2
## 3366   29/01/1999  2
## 3367   29/01/2006  2
## 3368   29/01/2007  2
## 3369   29/01/2009  2
## 3370   29/02/2008  2
## 3371   29/02/2012  2
## 3372   29/03/2002  2
## 3373   29/03/2004  2
## 3374   29/03/2010  2
## 3375   29/03/2011  2
## 3376   29/03/2012  2
## 3377   29/04/2005  2
## 3378   29/04/2009  2
## 3379   29/04/2011  2
## 3380   29/04/2013  2
## 3381   29/05/1996  2
## 3382   29/05/2003  2
## 3383   29/05/2006  2
## 3384   29/05/2014  2
## 3385   29/06/2003  2
## 3386   29/07/1999  2
## 3387   29/07/2006  2
## 3388   29/07/2010  2
## 3389   29/07/2013  2
## 3390   29/08/1999  2
## 3391   29/08/2006  2
## 3392   29/08/2007  2
## 3393   29/08/2012  2
## 3394   29/09/2004  2
## 3395   29/09/2008  2
## 3396   29/09/2010  2
## 3397   29/09/2011  2
## 3398   29/10/2002  2
## 3399   29/10/2008  2
## 3400   29/10/2013  2
## 3401   29/11/2007  2
## 3402   29/11/2012  2
## 3403   29/12/1997  2
## 3404   29/12/1998  2
## 3405   29/12/2000  2
## 3406   29/12/2005  2
## 3407   29/12/2012  2
## 3408   30/01/1997  2
## 3409   30/01/1999  2
## 3410   30/03/1997  2
## 3411   30/03/2001  2
## 3412   30/03/2005  2
## 3413   30/03/2009  2
## 3414   30/03/2013  2
## 3415   30/04/1999  2
## 3416   30/04/2005  2
## 3417   30/04/2008  2
## 3418   30/04/2013  2
## 3419   30/05/2006  2
## 3420   30/05/2007  2
## 3421   30/05/2008  2
## 3422   30/06/1998  2
## 3423   30/06/1999  2
## 3424   30/06/2005  2
## 3425   30/06/2012  2
## 3426   30/06/2013  2
## 3427   30/07/1996  2
## 3428   30/07/1998  2
## 3429   30/07/1999  2
## 3430   30/07/2007  2
## 3431   30/08/2004  2
## 3432   30/08/2007  2
## 3433   30/08/2011  2
## 3434   30/09/1998  2
## 3435   30/09/2004  2
## 3436   30/10/2004  2
## 3437   30/10/2007  2
## 3438   30/10/2008  2
## 3439   30/10/2011  2
## 3440   30/11/2007  2
## 3441   30/11/2011  2
## 3442   30/12/1998  2
## 3443   30/12/2004  2
## 3444   30/12/2006  2
## 3445   30/12/2010  2
## 3446   30/12/2012  2
## 3447   30/12/2013  2
## 3448   31/01/2002  2
## 3449   31/01/2006  2
## 3450   31/01/2012  2
## 3451   31/01/2013  2
## 3452   31/03/2000  2
## 3453   31/03/2003  2
## 3454   31/03/2008  2
## 3455   31/03/2014  2
## 3456   31/05/1996  2
## 3457   31/05/2002  2
## 3458   31/05/2008  2
## 3459   31/07/1997  2
## 3460   31/07/2003  2
## 3461   31/07/2005  2
## 3462   31/07/2011  2
## 3463   31/07/2012  2
## 3464   31/08/1999  2
## 3465   31/08/2003  2
## 3466   31/08/2010  2
## 3467   31/08/2013  2
## 3468   31/10/1996  2
## 3469   31/10/1999  2
## 3470   31/10/2000  2
## 3471   31/10/2007  2
## 3472   31/10/2012  2
## 3473   31/12/2004  2
## 3474   31/12/2013  2
## 3475   01/01/1993  1
## 3476   01/01/1995  1
## 3477   01/01/1998  1
## 3478   01/01/1999  1
## 3479   01/01/2001  1
## 3480   01/01/2014  1
## 3481   01/02/1995  1
## 3482   01/02/1997  1
## 3483   01/03/1996  1
## 3484   01/03/2003  1
## 3485   01/04/1992  1
## 3486   01/04/1997  1
## 3487   01/04/1998  1
## 3488   01/04/2000  1
## 3489   01/04/2011  1
## 3490   01/05/1996  1
## 3491   01/05/2003  1
## 3492   01/06/1993  1
## 3493   01/06/1996  1
## 3494   01/06/1997  1
## 3495   01/06/2006  1
## 3496   01/06/2008  1
## 3497   01/06/2009  1
## 3498   01/06/2013  1
## 3499   01/07/1996  1
## 3500   01/07/2001  1
## 3501   01/07/2005  1
## 3502   01/07/2010  1
## 3503   01/07/2011  1
## 3504   01/07/2012  1
## 3505   01/08/1995  1
## 3506   01/08/1998  1
## 3507   01/08/2000  1
## 3508   01/08/2004  1
## 3509   01/09/1995  1
## 3510   01/09/1997  1
## 3511   01/09/1999  1
## 3512   01/09/2000  1
## 3513   01/09/2001  1
## 3514   01/09/2005  1
## 3515   01/09/2006  1
## 3516   01/09/2007  1
## 3517   01/09/2009  1
## 3518   01/09/2013  1
## 3519   01/10/1995  1
## 3520   01/10/1998  1
## 3521   01/10/2000  1
## 3522   01/10/2001  1
## 3523   01/10/2008  1
## 3524   01/10/2011  1
## 3525   01/11/1996  1
## 3526   01/11/2000  1
## 3527   01/11/2001  1
## 3528   01/11/2003  1
## 3529   01/11/2005  1
## 3530   01/11/2008  1
## 3531   01/11/2010  1
## 3532   01/11/2011  1
## 3533   01/11/2012  1
## 3534   01/12/2002  1
## 3535   01/12/2005  1
## 3536   02/01/1991  1
## 3537   02/01/1996  1
## 3538   02/01/2001  1
## 3539   02/01/2003  1
## 3540   02/01/2004  1
## 3541   02/01/2006  1
## 3542   02/01/2008  1
## 3543   02/01/2010  1
## 3544   02/01/2013  1
## 3545   02/02/1996  1
## 3546   02/02/1998  1
## 3547   02/02/2001  1
## 3548   02/02/2003  1
## 3549   02/02/2007  1
## 3550   02/02/2008  1
## 3551   02/02/2009  1
## 3552   02/02/2013  1
## 3553   02/02/2014  1
## 3554   02/03/1997  1
## 3555   02/03/2001  1
## 3556   02/03/2003  1
## 3557   02/03/2005  1
## 3558   02/03/2010  1
## 3559   02/03/2011  1
## 3560   02/03/2013  1
## 3561   02/03/2014  1
## 3562   02/04/2000  1
## 3563   02/04/2004  1
## 3564   02/04/2006  1
## 3565   02/04/2008  1
## 3566   02/04/2009  1
## 3567   02/04/2013  1
## 3568   02/05/1999  1
## 3569   02/05/2009  1
## 3570   02/06/2004  1
## 3571   02/06/2007  1
## 3572   02/07/2008  1
## 3573   02/07/2010  1
## 3574   02/08/1997  1
## 3575   02/08/2000  1
## 3576   02/08/2005  1
## 3577   02/08/2011  1
## 3578   02/09/1997  1
## 3579   02/09/1999  1
## 3580   02/09/2001  1
## 3581   02/09/2002  1
## 3582   02/09/2004  1
## 3583   02/09/2005  1
## 3584   02/09/2012  1
## 3585   02/09/2013  1
## 3586   02/10/2000  1
## 3587   02/10/2004  1
## 3588   02/11/1997  1
## 3589   02/11/2002  1
## 3590   02/11/2005  1
## 3591   02/12/1996  1
## 3592   02/12/2001  1
## 3593   02/12/2002  1
## 3594   02/12/2008  1
## 3595   02/12/2010  1
## 3596   03/01/1996  1
## 3597   03/01/2000  1
## 3598   03/01/2001  1
## 3599   03/01/2007  1
## 3600   03/01/2010  1
## 3601   03/01/2011  1
## 3602   03/02/1996  1
## 3603   03/02/2001  1
## 3604   03/03/1997  1
## 3605   03/03/2002  1
## 3606   03/03/2007  1
## 3607   03/03/2010  1
## 3608   03/03/2013  1
## 3609   03/05/1996  1
## 3610   03/05/1997  1
## 3611   03/05/2003  1
## 3612   03/05/2006  1
## 3613   03/05/2009  1
## 3614   03/05/2011  1
## 3615   03/06/2004  1
## 3616   03/06/2007  1
## 3617   03/06/2012  1
## 3618   03/06/2013  1
## 3619   03/07/2001  1
## 3620   03/07/2008  1
## 3621   03/07/2011  1
## 3622   03/08/1995  1
## 3623   03/08/1996  1
## 3624   03/08/2003  1
## 3625   03/09/1986  1
## 3626   03/09/2000  1
## 3627   03/09/2005  1
## 3628   03/09/2008  1
## 3629   03/09/2009  1
## 3630   03/09/2011  1
## 3631   03/10/1988  1
## 3632   03/10/1999  1
## 3633   03/10/2007  1
## 3634   03/10/2008  1
## 3635   03/10/2009  1
## 3636   03/11/2002  1
## 3637   03/11/2004  1
## 3638   03/12/2000  1
## 3639   03/12/2003  1
## 3640   03/12/2005  1
## 3641   03/12/2007  1
## 3642   03/12/2010  1
## 3643   04/01/1998  1
## 3644   04/01/2000  1
## 3645   04/01/2002  1
## 3646   04/01/2003  1
## 3647   04/01/2004  1
## 3648   04/01/2009  1
## 3649   04/01/2014  1
## 3650   04/02/2005  1
## 3651   04/02/2009  1
## 3652   04/02/2012  1
## 3653   04/02/2013  1
## 3654   04/03/1998  1
## 3655   04/03/2006  1
## 3656   04/03/2007  1
## 3657   04/04/1999  1
## 3658   04/04/2000  1
## 3659   04/05/1996  1
## 3660   04/05/1998  1
## 3661   04/05/2006  1
## 3662   04/05/2008  1
## 3663   04/05/2010  1
## 3664   04/06/1997  1
## 3665   04/06/1998  1
## 3666   04/06/2000  1
## 3667   04/07/1997  1
## 3668   04/07/1998  1
## 3669   04/07/1999  1
## 3670   04/07/2002  1
## 3671   04/07/2003  1
## 3672   04/07/2004  1
## 3673   04/07/2006  1
## 3674   04/07/2012  1
## 3675   04/08/1999  1
## 3676   04/08/2000  1
## 3677   04/08/2001  1
## 3678   04/08/2008  1
## 3679   04/09/1996  1
## 3680   04/09/1997  1
## 3681   04/09/2000  1
## 3682   04/09/2004  1
## 3683   04/10/1994  1
## 3684   04/10/1999  1
## 3685   04/10/2005  1
## 3686   04/10/2006  1
## 3687   04/10/2008  1
## 3688   04/10/2010  1
## 3689   04/10/2013  1
## 3690   04/11/1991  1
## 3691   04/11/1994  1
## 3692   04/11/1997  1
## 3693   04/11/2003  1
## 3694   04/11/2005  1
## 3695   04/12/1997  1
## 3696   04/12/2003  1
## 3697   04/12/2008  1
## 3698   05/01/1996  1
## 3699   05/01/2002  1
## 3700   05/01/2006  1
## 3701   05/01/2009  1
## 3702   05/01/2013  1
## 3703   05/02/1996  1
## 3704   05/02/1999  1
## 3705   05/02/2007  1
## 3706   05/02/2010  1
## 3707   05/02/2012  1
## 3708   05/03/1996  1
## 3709   05/03/1997  1
## 3710   05/03/2004  1
## 3711   05/03/2005  1
## 3712   05/03/2006  1
## 3713   05/03/2009  1
## 3714   05/03/2011  1
## 3715   05/03/2014  1
## 3716   05/04/2001  1
## 3717   05/04/2008  1
## 3718   05/05/1998  1
## 3719   05/05/2002  1
## 3720   05/05/2004  1
## 3721   05/05/2013  1
## 3722   05/06/1995  1
## 3723   05/06/1996  1
## 3724   05/06/1998  1
## 3725   05/06/2005  1
## 3726   05/06/2008  1
## 3727   05/06/2010  1
## 3728   05/07/1995  1
## 3729   05/07/1996  1
## 3730   05/07/2000  1
## 3731   05/07/2003  1
## 3732   05/07/2005  1
## 3733   05/07/2007  1
## 3734   05/07/2008  1
## 3735   05/07/2010  1
## 3736   05/08/1994  1
## 3737   05/08/2000  1
## 3738   05/08/2001  1
## 3739   05/08/2006  1
## 3740   05/09/2000  1
## 3741   05/09/2005  1
## 3742   05/09/2008  1
## 3743   05/09/2009  1
## 3744   05/09/2010  1
## 3745   05/10/2006  1
## 3746   05/10/2007  1
## 3747   05/10/2010  1
## 3748   05/11/1994  1
## 3749   05/11/1997  1
## 3750   05/11/1998  1
## 3751   05/11/1999  1
## 3752   05/11/2010  1
## 3753   05/12/1996  1
## 3754   05/12/1997  1
## 3755   05/12/2002  1
## 3756   05/12/2005  1
## 3757   05/12/2011  1
## 3758   06/01/1997  1
## 3759   06/01/2001  1
## 3760   06/01/2002  1
## 3761   06/01/2003  1
## 3762   06/01/2011  1
## 3763   06/02/1999  1
## 3764   06/02/2000  1
## 3765   06/02/2005  1
## 3766   06/02/2012  1
## 3767   06/02/2014  1
## 3768   06/03/1998  1
## 3769   06/03/1999  1
## 3770   06/03/2002  1
## 3771   06/03/2003  1
## 3772   06/03/2006  1
## 3773   06/03/2007  1
## 3774   06/03/2008  1
## 3775   06/03/2009  1
## 3776   06/04/1998  1
## 3777   06/04/2003  1
## 3778   06/04/2010  1
## 3779   06/05/2001  1
## 3780   06/05/2003  1
## 3781   06/05/2004  1
## 3782   06/05/2006  1
## 3783   06/06/1994  1
## 3784   06/06/1999  1
## 3785   06/06/2000  1
## 3786   06/06/2002  1
## 3787   06/06/2005  1
## 3788   06/06/2007  1
## 3789   06/07/1996  1
## 3790   06/07/2008  1
## 3791   06/07/2009  1
## 3792   06/08/1993  1
## 3793   06/08/2000  1
## 3794   06/08/2002  1
## 3795   06/08/2003  1
## 3796   06/08/2005  1
## 3797   06/08/2007  1
## 3798   06/09/1995  1
## 3799   06/09/2001  1
## 3800   06/09/2008  1
## 3801   06/09/2009  1
## 3802   06/10/1996  1
## 3803   06/10/1999  1
## 3804   06/10/2000  1
## 3805   06/10/2002  1
## 3806   06/10/2005  1
## 3807   06/10/2007  1
## 3808   06/10/2008  1
## 3809   06/10/2012  1
## 3810   06/11/1998  1
## 3811   06/11/2007  1
## 3812   06/11/2012  1
## 3813   06/12/1997  1
## 3814   06/12/2003  1
## 3815   06/12/2004  1
## 3816   06/12/2013  1
## 3817   07/01/2011  1
## 3818   07/01/2012  1
## 3819   07/02/1996  1
## 3820   07/02/1997  1
## 3821   07/02/2002  1
## 3822   07/02/2007  1
## 3823   07/02/2008  1
## 3824   07/02/2011  1
## 3825   07/03/1997  1
## 3826   07/03/1999  1
## 3827   07/03/2001  1
## 3828   07/03/2009  1
## 3829   07/03/2010  1
## 3830   07/03/2011  1
## 3831   07/04/1996  1
## 3832   07/04/1998  1
## 3833   07/04/2000  1
## 3834   07/04/2001  1
## 3835   07/04/2002  1
## 3836   07/04/2009  1
## 3837   07/04/2014  1
## 3838   07/05/2000  1
## 3839   07/06/1993  1
## 3840   07/06/1995  1
## 3841   07/06/2003  1
## 3842   07/06/2004  1
## 3843   07/06/2007  1
## 3844   07/06/2011  1
## 3845   07/07/1996  1
## 3846   07/07/2003  1
## 3847   07/07/2007  1
## 3848   07/07/2008  1
## 3849   07/07/2009  1
## 3850   07/07/2011  1
## 3851   07/07/2012  1
## 3852   07/08/1999  1
## 3853   07/08/2002  1
## 3854   07/08/2004  1
## 3855   07/08/2005  1
## 3856   07/08/2010  1
## 3857   07/08/2011  1
## 3858   07/09/1999  1
## 3859   07/09/2002  1
## 3860   07/09/2007  1
## 3861   07/09/2010  1
## 3862   07/10/1998  1
## 3863   07/10/1999  1
## 3864   07/10/2006  1
## 3865   07/10/2009  1
## 3866   07/11/1996  1
## 3867   07/11/2001  1
## 3868   07/11/2003  1
## 3869   07/11/2008  1
## 3870   07/12/1995  1
## 3871   07/12/2003  1
## 3872   07/12/2008  1
## 3873   07/12/2010  1
## 3874   07/12/2011  1
## 3875   08/01/2007  1
## 3876   08/01/2010  1
## 3877   08/01/2013  1
## 3878   08/02/1997  1
## 3879   08/02/2002  1
## 3880   08/02/2003  1
## 3881   08/02/2005  1
## 3882   08/02/2010  1
## 3883   08/02/2011  1
## 3884   08/03/1996  1
## 3885   08/03/2004  1
## 3886   08/03/2006  1
## 3887   08/03/2007  1
## 3888   08/03/2010  1
## 3889   08/03/2011  1
## 3890   08/03/2012  1
## 3891   08/03/2014  1
## 3892   08/04/2000  1
## 3893   08/04/2006  1
## 3894   08/04/2012  1
## 3895   08/05/1999  1
## 3896   08/05/2001  1
## 3897   08/05/2005  1
## 3898   08/06/1998  1
## 3899   08/06/2003  1
## 3900   08/06/2009  1
## 3901   08/06/2013  1
## 3902   08/07/1997  1
## 3903   08/07/2000  1
## 3904   08/07/2003  1
## 3905   08/07/2006  1
## 3906   08/07/2008  1
## 3907   08/08/1997  1
## 3908   08/08/2002  1
## 3909   08/08/2007  1
## 3910   08/08/2009  1
## 3911   08/09/1995  1
## 3912   08/09/1996  1
## 3913   08/09/2000  1
## 3914   08/09/2001  1
## 3915   08/09/2002  1
## 3916   08/09/2010  1
## 3917   08/10/2000  1
## 3918   08/10/2003  1
## 3919   08/11/1999  1
## 3920   08/11/2003  1
## 3921   08/11/2009  1
## 3922   08/12/1996  1
## 3923   08/12/1998  1
## 3924   08/12/2002  1
## 3925   08/12/2012  1
## 3926   09/01/2000  1
## 3927   09/01/2001  1
## 3928   09/01/2004  1
## 3929   09/01/2010  1
## 3930   09/01/2013  1
## 3931   09/02/1996  1
## 3932   09/02/2000  1
## 3933   09/02/2001  1
## 3934   09/02/2004  1
## 3935   09/02/2005  1
## 3936   09/02/2007  1
## 3937   09/02/2013  1
## 3938   09/02/2014  1
## 3939   09/03/2007  1
## 3940   09/04/1996  1
## 3941   09/04/2004  1
## 3942   09/04/2005  1
## 3943   09/04/2006  1
## 3944   09/04/2011  1
## 3945   09/04/2013  1
## 3946   09/05/1999  1
## 3947   09/05/2000  1
## 3948   09/05/2004  1
## 3949   09/05/2010  1
## 3950   09/06/2008  1
## 3951   09/06/2012  1
## 3952   09/06/2013  1
## 3953   09/07/1996  1
## 3954   09/07/2003  1
## 3955   09/07/2004  1
## 3956   09/07/2005  1
## 3957   09/07/2006  1
## 3958   09/07/2007  1
## 3959   09/07/2010  1
## 3960   09/07/2012  1
## 3961   09/08/1997  1
## 3962   09/08/1999  1
## 3963   09/08/2000  1
## 3964   09/08/2008  1
## 3965   09/08/2009  1
## 3966   09/09/1998  1
## 3967   09/09/2012  1
## 3968   09/10/1996  1
## 3969   09/10/1998  1
## 3970   09/10/1999  1
## 3971   09/10/2004  1
## 3972   09/11/1996  1
## 3973   09/11/1997  1
## 3974   09/11/2001  1
## 3975   09/11/2002  1
## 3976   09/11/2003  1
## 3977   09/11/2008  1
## 3978   09/11/2009  1
## 3979   09/11/2012  1
## 3980   09/12/1996  1
## 3981   09/12/1998  1
## 3982   09/12/1999  1
## 3983   09/12/2002  1
## 3984   09/12/2003  1
## 3985   09/12/2005  1
## 3986   09/12/2006  1
## 3987   09/12/2009  1
## 3988   09/12/2011  1
## 3989   10/01/1997  1
## 3990   10/01/1998  1
## 3991   10/01/1999  1
## 3992   10/01/2002  1
## 3993   10/01/2005  1
## 3994   10/01/2007  1
## 3995   10/01/2009  1
## 3996   10/01/2011  1
## 3997   10/02/1994  1
## 3998   10/02/2003  1
## 3999   10/02/2004  1
## 4000   10/02/2005  1
## 4001   10/02/2010  1
## 4002   10/02/2011  1
## 4003   10/03/1998  1
## 4004   10/03/1999  1
## 4005   10/03/2011  1
## 4006   10/04/1999  1
## 4007   10/04/2003  1
## 4008   10/04/2005  1
## 4009   10/05/1997  1
## 4010   10/05/1998  1
## 4011   10/05/1999  1
## 4012   10/05/2001  1
## 4013   10/05/2006  1
## 4014   10/06/1998  1
## 4015   10/06/2007  1
## 4016   10/06/2011  1
## 4017   10/07/1996  1
## 4018   10/07/1999  1
## 4019   10/07/2005  1
## 4020   10/07/2010  1
## 4021   10/07/2011  1
## 4022   10/08/2001  1
## 4023   10/08/2002  1
## 4024   10/08/2007  1
## 4025   10/08/2009  1
## 4026   10/08/2010  1
## 4027   10/08/2013  1
## 4028   10/09/2000  1
## 4029   10/09/2003  1
## 4030   10/09/2010  1
## 4031   10/10/1995  1
## 4032   10/10/1999  1
## 4033   10/10/2003  1
## 4034   10/10/2004  1
## 4035   10/10/2005  1
## 4036   10/10/2006  1
## 4037   10/10/2009  1
## 4038   10/10/2012  1
## 4039   10/11/1995  1
## 4040   10/11/1998  1
## 4041   10/11/2000  1
## 4042   10/11/2001  1
## 4043   10/11/2005  1
## 4044   10/11/2006  1
## 4045   10/11/2008  1
## 4046   10/11/2011  1
## 4047   10/11/2012  1
## 4048   10/11/2013  1
## 4049   10/12/1995  1
## 4050   10/12/1997  1
## 4051   10/12/2003  1
## 4052   10/12/2005  1
## 4053   11/01/1996  1
## 4054   11/01/2002  1
## 4055   11/01/2014  1
## 4056   11/02/1999  1
## 4057   11/02/2001  1
## 4058   11/02/2005  1
## 4059   11/02/2014  1
## 4060   11/03/1991  1
## 4061   11/03/1992  1
## 4062   11/03/1996  1
## 4063   11/03/1997  1
## 4064   11/03/1998  1
## 4065   11/03/2000  1
## 4066   11/03/2001  1
## 4067   11/03/2005  1
## 4068   11/03/2007  1
## 4069   11/03/2009  1
## 4070   11/04/1999  1
## 4071   11/04/2003  1
## 4072   11/05/1996  1
## 4073   11/05/2001  1
## 4074   11/05/2003  1
## 4075   11/05/2005  1
## 4076   11/05/2008  1
## 4077   11/05/2013  1
## 4078   11/06/2000  1
## 4079   11/06/2004  1
## 4080   11/06/2005  1
## 4081   11/06/2006  1
## 4082   11/06/2008  1
## 4083   11/06/2011  1
## 4084   11/06/2012  1
## 4085   11/07/2011  1
## 4086   11/08/1996  1
## 4087   11/08/1998  1
## 4088   11/08/1999  1
## 4089   11/08/2000  1
## 4090   11/08/2001  1
## 4091   11/08/2002  1
## 4092   11/08/2012  1
## 4093   11/09/2006  1
## 4094   11/10/2002  1
## 4095   11/10/2007  1
## 4096   11/10/2010  1
## 4097   11/11/1995  1
## 4098   11/11/1996  1
## 4099   11/11/1997  1
## 4100   11/11/2003  1
## 4101   11/11/2004  1
## 4102   11/11/2007  1
## 4103   11/11/2011  1
## 4104   11/12/1998  1
## 4105   11/12/2001  1
## 4106   11/12/2005  1
## 4107   11/12/2009  1
## 4108   12/01/1979  1
## 4109   12/01/2008  1
## 4110   12/01/2009  1
## 4111   12/01/2010  1
## 4112   12/02/1996  1
## 4113   12/02/1998  1
## 4114   12/02/1999  1
## 4115   12/02/2000  1
## 4116   12/02/2003  1
## 4117   12/02/2006  1
## 4118   12/02/2008  1
## 4119   12/02/2010  1
## 4120   12/02/2011  1
## 4121   12/03/1996  1
## 4122   12/03/1998  1
## 4123   12/03/2000  1
## 4124   12/03/2008  1
## 4125   12/03/2010  1
## 4126   12/04/1997  1
## 4127   12/04/2005  1
## 4128   12/04/2008  1
## 4129   12/04/2010  1
## 4130   12/05/1996  1
## 4131   12/05/1999  1
## 4132   12/05/2001  1
## 4133   12/05/2005  1
## 4134   12/05/2007  1
## 4135   12/05/2009  1
## 4136   12/05/2011  1
## 4137   12/06/1996  1
## 4138   12/06/1999  1
## 4139   12/06/2011  1
## 4140   12/07/1997  1
## 4141   12/07/2005  1
## 4142   12/08/2006  1
## 4143   12/08/2012  1
## 4144   12/09/1998  1
## 4145   12/09/1999  1
## 4146   12/09/2002  1
## 4147   12/09/2003  1
## 4148   12/09/2004  1
## 4149   12/09/2007  1
## 4150   12/09/2008  1
## 4151   12/09/2010  1
## 4152   12/10/1997  1
## 4153   12/10/1998  1
## 4154   12/10/2004  1
## 4155   12/10/2006  1
## 4156   12/10/2008  1
## 4157   12/10/2009  1
## 4158   12/10/2012  1
## 4159   12/11/2006  1
## 4160   12/11/2007  1
## 4161   12/11/2011  1
## 4162   12/12/1997  1
## 4163   12/12/2005  1
## 4164   13/01/2001  1
## 4165   13/01/2008  1
## 4166   13/01/2014  1
## 4167   13/02/1998  1
## 4168   13/02/1999  1
## 4169   13/02/2000  1
## 4170   13/03/2010  1
## 4171   13/03/2012  1
## 4172   13/04/1998  1
## 4173   13/04/2000  1
## 4174   13/04/2003  1
## 4175   13/04/2008  1
## 4176   13/04/2009  1
## 4177   13/04/2011  1
## 4178   13/05/2003  1
## 4179   13/05/2005  1
## 4180   13/05/2006  1
## 4181   13/05/2009  1
## 4182   13/05/2012  1
## 4183   13/06/1994  1
## 4184   13/06/1997  1
## 4185   13/06/1999  1
## 4186   13/07/1996  1
## 4187   13/07/2002  1
## 4188   13/07/2003  1
## 4189   13/07/2013  1
## 4190   13/08/1998  1
## 4191   13/08/1999  1
## 4192   13/08/2004  1
## 4193   13/08/2006  1
## 4194   13/08/2007  1
## 4195   13/08/2010  1
## 4196   13/08/2012  1
## 4197   13/09/1993  1
## 4198   13/09/1997  1
## 4199   13/09/1998  1
## 4200   13/09/2005  1
## 4201   13/10/1996  1
## 4202   13/10/1998  1
## 4203   13/10/2008  1
## 4204   13/10/2009  1
## 4205   13/10/2010  1
## 4206   13/11/2002  1
## 4207   13/11/2006  1
## 4208   13/11/2008  1
## 4209   13/12/1995  1
## 4210   13/12/1996  1
## 4211   13/12/1999  1
## 4212   13/12/2002  1
## 4213   13/12/2003  1
## 4214   13/12/2004  1
## 4215   13/12/2006  1
## 4216   14/01/1998  1
## 4217   14/01/2000  1
## 4218   14/01/2005  1
## 4219   14/01/2006  1
## 4220   14/01/2010  1
## 4221   14/01/2013  1
## 4222   14/02/1995  1
## 4223   14/02/1999  1
## 4224   14/02/2000  1
## 4225   14/02/2003  1
## 4226   14/02/2007  1
## 4227   14/02/2010  1
## 4228   14/03/1998  1
## 4229   14/03/2010  1
## 4230   14/04/1995  1
## 4231   14/04/2001  1
## 4232   14/04/2002  1
## 4233   14/04/2004  1
## 4234   14/04/2006  1
## 4235   14/04/2010  1
## 4236   14/04/2012  1
## 4237   14/05/1999  1
## 4238   14/05/2000  1
## 4239   14/05/2004  1
## 4240   14/05/2006  1
## 4241   14/05/2009  1
## 4242   14/06/1989  1
## 4243   14/06/1995  1
## 4244   14/06/1997  1
## 4245   14/06/1998  1
## 4246   14/06/2009  1
## 4247   14/06/2013  1
## 4248   14/06/2014  1
## 4249   14/07/1997  1
## 4250   14/07/2000  1
## 4251   14/07/2002  1
## 4252   14/07/2006  1
## 4253   14/07/2007  1
## 4254   14/07/2008  1
## 4255   14/07/2009  1
## 4256   14/07/2011  1
## 4257   14/08/1996  1
## 4258   14/08/2003  1
## 4259   14/08/2004  1
## 4260   14/08/2009  1
## 4261   14/09/2007  1
## 4262   14/09/2008  1
## 4263   14/09/2010  1
## 4264   14/09/2012  1
## 4265   14/10/1999  1
## 4266   14/10/2004  1
## 4267   14/10/2009  1
## 4268   14/11/1995  1
## 4269   14/11/1996  1
## 4270   14/11/1998  1
## 4271   14/11/2000  1
## 4272   14/11/2001  1
## 4273   14/11/2005  1
## 4274   14/11/2006  1
## 4275   14/11/2008  1
## 4276   14/11/2009  1
## 4277   14/11/2010  1
## 4278   14/11/2012  1
## 4279   14/11/2013  1
## 4280   14/12/1996  1
## 4281   14/12/2007  1
## 4282   14/12/2008  1
## 4283   14/12/2009  1
## 4284   14/12/2010  1
## 4285   14/12/2013  1
## 4286   15/01/1993  1
## 4287   15/01/1998  1
## 4288   15/01/2005  1
## 4289   15/01/2006  1
## 4290   15/01/2007  1
## 4291   15/01/2008  1
## 4292   15/01/2009  1
## 4293   15/02/2001  1
## 4294   15/02/2006  1
## 4295   15/02/2008  1
## 4296   15/02/2012  1
## 4297   15/02/2014  1
## 4298   15/03/1994  1
## 4299   15/03/1996  1
## 4300   15/03/1997  1
## 4301   15/03/2003  1
## 4302   15/03/2010  1
## 4303   15/04/1999  1
## 4304   15/04/2000  1
## 4305   15/04/2012  1
## 4306   15/05/1995  1
## 4307   15/05/1999  1
## 4308   15/05/2002  1
## 4309   15/05/2004  1
## 4310   15/05/2008  1
## 4311   15/05/2010  1
## 4312   15/05/2014  1
## 4313   15/06/1995  1
## 4314   15/06/2002  1
## 4315   15/06/2003  1
## 4316   15/06/2004  1
## 4317   15/06/2009  1
## 4318   15/07/1996  1
## 4319   15/07/1999  1
## 4320   15/07/2000  1
## 4321   15/07/2001  1
## 4322   15/07/2005  1
## 4323   15/07/2006  1
## 4324   15/08/1995  1
## 4325   15/08/1997  1
## 4326   15/08/1999  1
## 4327   15/08/2004  1
## 4328   15/08/2010  1
## 4329   15/08/2011  1
## 4330   15/09/1998  1
## 4331   15/09/2001  1
## 4332   15/09/2003  1
## 4333   15/09/2004  1
## 4334   15/09/2007  1
## 4335   15/09/2008  1
## 4336   15/10/2001  1
## 4337   15/10/2002  1
## 4338   15/10/2006  1
## 4339   15/10/2007  1
## 4340   15/10/2010  1
## 4341   15/11/1996  1
## 4342   15/11/1997  1
## 4343   15/11/1998  1
## 4344   15/11/1999  1
## 4345   15/11/2010  1
## 4346   15/11/2012  1
## 4347   15/12/1997  1
## 4348   15/12/2008  1
## 4349   15/12/2010  1
## 4350   15/12/2011  1
## 4351   16/01/1999  1
## 4352   16/01/2000  1
## 4353   16/01/2006  1
## 4354   16/01/2008  1
## 4355   16/01/2011  1
## 4356   16/01/2013  1
## 4357   16/02/1996  1
## 4358   16/02/1997  1
## 4359   16/02/2003  1
## 4360   16/02/2009  1
## 4361   16/02/2011  1
## 4362   16/03/1996  1
## 4363   16/03/2001  1
## 4364   16/03/2005  1
## 4365   16/03/2007  1
## 4366   16/03/2011  1
## 4367   16/03/2012  1
## 4368   16/04/2006  1
## 4369   16/04/2007  1
## 4370   16/04/2009  1
## 4371   16/04/2010  1
## 4372   16/04/2011  1
## 4373   16/05/2001  1
## 4374   16/05/2002  1
## 4375   16/05/2005  1
## 4376   16/05/2010  1
## 4377   16/06/1996  1
## 4378   16/06/1997  1
## 4379   16/06/2002  1
## 4380   16/06/2004  1
## 4381   16/06/2006  1
## 4382   16/06/2012  1
## 4383   16/07/2003  1
## 4384   16/07/2005  1
## 4385   16/07/2006  1
## 4386   16/07/2008  1
## 4387   16/07/2010  1
## 4388   16/07/2011  1
## 4389   16/08/1997  1
## 4390   16/08/2010  1
## 4391   16/09/2000  1
## 4392   16/09/2002  1
## 4393   16/09/2005  1
## 4394   16/09/2008  1
## 4395   16/10/1995  1
## 4396   16/10/1997  1
## 4397   16/10/1999  1
## 4398   16/10/2002  1
## 4399   16/10/2010  1
## 4400   16/10/2012  1
## 4401   16/11/1998  1
## 4402   16/11/1999  1
## 4403   16/11/2000  1
## 4404   16/11/2001  1
## 4405   16/11/2002  1
## 4406   16/11/2003  1
## 4407   16/11/2006  1
## 4408   16/11/2010  1
## 4409   16/11/2012  1
## 4410   16/12/1998  1
## 4411   16/12/2006  1
## 4412   16/12/2008  1
## 4413   16/12/2009  1
## 4414   16/12/2011  1
## 4415   16/12/2012  1
## 4416   17/01/1996  1
## 4417   17/01/1999  1
## 4418   17/01/2004  1
## 4419   17/01/2012  1
## 4420   17/02/2000  1
## 4421   17/02/2001  1
## 4422   17/03/1997  1
## 4423   17/03/2000  1
## 4424   17/03/2006  1
## 4425   17/03/2007  1
## 4426   17/03/2008  1
## 4427   17/03/2012  1
## 4428   17/03/2013  1
## 4429   17/04/1999  1
## 4430   17/04/2003  1
## 4431   17/04/2004  1
## 4432   17/05/1995  1
## 4433   17/05/1997  1
## 4434   17/05/1998  1
## 4435   17/05/2000  1
## 4436   17/05/2003  1
## 4437   17/05/2004  1
## 4438   17/05/2006  1
## 4439   17/05/2009  1
## 4440   17/05/2011  1
## 4441   17/06/2002  1
## 4442   17/06/2005  1
## 4443   17/06/2007  1
## 4444   17/06/2012  1
## 4445   17/07/1995  1
## 4446   17/07/1997  1
## 4447   17/07/2004  1
## 4448   17/07/2006  1
## 4449   17/07/2007  1
## 4450   17/08/2007  1
## 4451   17/08/2009  1
## 4452   17/08/2011  1
## 4453   17/09/1999  1
## 4454   17/09/2003  1
## 4455   17/09/2006  1
## 4456   17/09/2009  1
## 4457   17/10/1996  1
## 4458   17/10/1999  1
## 4459   17/10/2002  1
## 4460   17/10/2006  1
## 4461   17/10/2007  1
## 4462   17/10/2010  1
## 4463   17/11/1996  1
## 4464   17/11/1997  1
## 4465   17/11/1998  1
## 4466   17/11/1999  1
## 4467   17/11/2000  1
## 4468   17/11/2002  1
## 4469   17/11/2003  1
## 4470   17/11/2004  1
## 4471   17/11/2006  1
## 4472   17/11/2007  1
## 4473   17/11/2009  1
## 4474   17/11/2012  1
## 4475   17/11/2013  1
## 4476   17/12/1996  1
## 4477   17/12/1998  1
## 4478   17/12/1999  1
## 4479   17/12/2008  1
## 4480   17/12/2010  1
## 4481   18/01/2000  1
## 4482   18/01/2003  1
## 4483   18/01/2007  1
## 4484   18/01/2009  1
## 4485   18/01/2012  1
## 4486   18/01/2014  1
## 4487   18/02/1987  1
## 4488   18/02/1997  1
## 4489   18/02/2000  1
## 4490   18/02/2006  1
## 4491   18/02/2009  1
## 4492   18/02/2012  1
## 4493   18/03/2002  1
## 4494   18/03/2011  1
## 4495   18/04/1996  1
## 4496   18/04/1999  1
## 4497   18/04/2002  1
## 4498   18/04/2003  1
## 4499   18/04/2006  1
## 4500   18/04/2010  1
## 4501   18/05/1995  1
## 4502   18/05/1998  1
## 4503   18/05/1999  1
## 4504   18/05/2001  1
## 4505   18/05/2004  1
## 4506   18/06/1997  1
## 4507   18/06/1998  1
## 4508   18/06/2000  1
## 4509   18/06/2006  1
## 4510   18/06/2007  1
## 4511   18/06/2008  1
## 4512   18/06/2009  1
## 4513   18/06/2012  1
## 4514   18/07/1999  1
## 4515   18/07/2002  1
## 4516   18/07/2003  1
## 4517   18/07/2005  1
## 4518   18/07/2007  1
## 4519   18/07/2008  1
## 4520   18/07/2009  1
## 4521   18/08/1997  1
## 4522   18/08/2005  1
## 4523   18/08/2006  1
## 4524   18/08/2009  1
## 4525   18/09/1997  1
## 4526   18/09/1998  1
## 4527   18/09/2000  1
## 4528   18/09/2004  1
## 4529   18/09/2007  1
## 4530   18/09/2009  1
## 4531   18/10/1988  1
## 4532   18/10/1994  1
## 4533   18/10/1995  1
## 4534   18/10/2000  1
## 4535   18/10/2002  1
## 4536   18/10/2005  1
## 4537   18/10/2007  1
## 4538   18/10/2008  1
## 4539   18/10/2011  1
## 4540   18/10/2012  1
## 4541   18/11/2004  1
## 4542   18/11/2011  1
## 4543   18/11/2013  1
## 4544   18/12/1999  1
## 4545   18/12/2004  1
## 4546   18/12/2008  1
## 4547   18/12/2009  1
## 4548   18/12/2010  1
## 4549   18/12/2011  1
## 4550   19/01/2002  1
## 4551   19/01/2008  1
## 4552   19/01/2014  1
## 4553   19/02/1996  1
## 4554   19/02/1998  1
## 4555   19/02/1999  1
## 4556   19/02/2003  1
## 4557   19/02/2004  1
## 4558   19/02/2005  1
## 4559   19/02/2009  1
## 4560   19/02/2010  1
## 4561   19/03/1998  1
## 4562   19/03/2006  1
## 4563   19/03/2010  1
## 4564   19/03/2011  1
## 4565   19/03/2012  1
## 4566   19/04/1997  1
## 4567   19/04/1998  1
## 4568   19/04/2000  1
## 4569   19/04/2005  1
## 4570   19/04/2007  1
## 4571   19/04/2008  1
## 4572   19/04/2009  1
## 4573   19/04/2010  1
## 4574   19/04/2011  1
## 4575   19/05/1996  1
## 4576   19/05/2002  1
## 4577   19/05/2003  1
## 4578   19/05/2008  1
## 4579   19/05/2009  1
## 4580   19/05/2012  1
## 4581   19/05/2013  1
## 4582   19/06/1999  1
## 4583   19/06/2011  1
## 4584   19/07/1998  1
## 4585   19/07/2003  1
## 4586   19/07/2009  1
## 4587   19/07/2012  1
## 4588   19/08/2003  1
## 4589   19/08/2005  1
## 4590   19/08/2009  1
## 4591   19/09/1997  1
## 4592   19/09/1999  1
## 4593   19/09/2009  1
## 4594   19/09/2010  1
## 4595   19/10/2004  1
## 4596   19/11/1998  1
## 4597   19/11/2000  1
## 4598   19/11/2004  1
## 4599   19/11/2006  1
## 4600   19/11/2009  1
## 4601   19/11/2013  1
## 4602   19/12/1996  1
## 4603   19/12/1997  1
## 4604   19/12/1998  1
## 4605   19/12/1999  1
## 4606   19/12/2006  1
## 4607   19/12/2010  1
## 4608   20/01/1996  1
## 4609   20/01/1997  1
## 4610   20/01/1998  1
## 4611   20/01/2001  1
## 4612   20/01/2006  1
## 4613   20/01/2010  1
## 4614   20/01/2013  1
## 4615   20/01/2014  1
## 4616   20/02/1995  1
## 4617   20/02/2007  1
## 4618   20/02/2008  1
## 4619   20/02/2009  1
## 4620   20/02/2011  1
## 4621   20/03/1997  1
## 4622   20/03/2001  1
## 4623   20/03/2003  1
## 4624   20/03/2010  1
## 4625   20/03/2013  1
## 4626   20/04/1995  1
## 4627   20/04/1998  1
## 4628   20/04/2008  1
## 4629   20/04/2010  1
## 4630   20/04/2011  1
## 4631   20/04/2012  1
## 4632   20/05/1994  1
## 4633   20/05/1995  1
## 4634   20/05/1999  1
## 4635   20/05/2003  1
## 4636   20/05/2004  1
## 4637   20/06/1997  1
## 4638   20/06/1998  1
## 4639   20/06/2003  1
## 4640   20/06/2005  1
## 4641   20/06/2009  1
## 4642   20/07/1996  1
## 4643   20/07/2005  1
## 4644   20/07/2006  1
## 4645   20/07/2009  1
## 4646   20/08/1993  1
## 4647   20/08/2005  1
## 4648   20/08/2006  1
## 4649   20/08/2010  1
## 4650   20/09/2002  1
## 4651   20/09/2003  1
## 4652   20/09/2008  1
## 4653   20/10/1996  1
## 4654   20/10/1998  1
## 4655   20/10/2002  1
## 4656   20/10/2006  1
## 4657   20/10/2007  1
## 4658   20/10/2012  1
## 4659   20/11/1996  1
## 4660   20/11/1997  1
## 4661   20/11/2007  1
## 4662   20/11/2010  1
## 4663   20/12/2002  1
## 4664   20/12/2003  1
## 4665   20/12/2006  1
## 4666   20/12/2010  1
## 4667   20/12/2011  1
## 4668   21/01/2000  1
## 4669   21/01/2001  1
## 4670   21/01/2002  1
## 4671   21/01/2003  1
## 4672   21/01/2004  1
## 4673   21/01/2007  1
## 4674   21/02/1998  1
## 4675   21/02/2005  1
## 4676   21/02/2010  1
## 4677   21/02/2012  1
## 4678   21/03/1994  1
## 4679   21/03/2002  1
## 4680   21/03/2005  1
## 4681   21/03/2009  1
## 4682   21/04/1995  1
## 4683   21/04/1999  1
## 4684   21/04/2002  1
## 4685   21/04/2004  1
## 4686   21/04/2006  1
## 4687   21/05/1995  1
## 4688   21/05/2000  1
## 4689   21/05/2002  1
## 4690   21/05/2009  1
## 4691   21/05/2010  1
## 4692   21/05/2011  1
## 4693   21/05/2013  1
## 4694   21/06/1995  1
## 4695   21/06/1996  1
## 4696   21/06/1999  1
## 4697   21/06/2003  1
## 4698   21/06/2007  1
## 4699   21/06/2011  1
## 4700   21/07/1997  1
## 4701   21/07/2001  1
## 4702   21/07/2006  1
## 4703   21/07/2011  1
## 4704   21/07/2013  1
## 4705   21/08/2003  1
## 4706   21/08/2009  1
## 4707   21/09/1998  1
## 4708   21/09/2004  1
## 4709   21/09/2010  1
## 4710   21/10/1998  1
## 4711   21/10/1999  1
## 4712   21/10/2000  1
## 4713   21/10/2001  1
## 4714   21/10/2002  1
## 4715   21/10/2005  1
## 4716   21/10/2006  1
## 4717   21/10/2007  1
## 4718   21/10/2009  1
## 4719   21/10/2011  1
## 4720   21/10/2012  1
## 4721   21/11/1996  1
## 4722   21/11/1997  1
## 4723   21/11/1998  1
## 4724   21/11/2001  1
## 4725   21/11/2004  1
## 4726   21/11/2005  1
## 4727   21/11/2007  1
## 4728   21/11/2010  1
## 4729   21/11/2012  1
## 4730   21/12/1996  1
## 4731   21/12/2001  1
## 4732   21/12/2010  1
## 4733   21/12/2011  1
## 4734   22/01/1996  1
## 4735   22/01/2004  1
## 4736   22/01/2005  1
## 4737   22/02/1995  1
## 4738   22/02/1997  1
## 4739   22/02/2005  1
## 4740   22/02/2006  1
## 4741   22/02/2009  1
## 4742   22/02/2011  1
## 4743   22/02/2014  1
## 4744   22/03/1995  1
## 4745   22/03/1996  1
## 4746   22/03/2002  1
## 4747   22/03/2005  1
## 4748   22/03/2010  1
## 4749   22/04/1997  1
## 4750   22/04/2000  1
## 4751   22/05/1996  1
## 4752   22/05/2004  1
## 4753   22/05/2010  1
## 4754   22/06/1992  1
## 4755   22/06/1993  1
## 4756   22/06/1997  1
## 4757   22/06/2003  1
## 4758   22/06/2009  1
## 4759   22/07/1999  1
## 4760   22/07/2001  1
## 4761   22/08/1993  1
## 4762   22/08/1995  1
## 4763   22/08/2008  1
## 4764   22/08/2009  1
## 4765   22/09/1989  1
## 4766   22/09/1997  1
## 4767   22/09/2000  1
## 4768   22/09/2011  1
## 4769   22/09/2012  1
## 4770   22/10/1997  1
## 4771   22/10/2004  1
## 4772   22/10/2006  1
## 4773   22/10/2008  1
## 4774   22/10/2009  1
## 4775   22/10/2010  1
## 4776   22/10/2011  1
## 4777   22/10/2012  1
## 4778   22/11/1994  1
## 4779   22/11/1998  1
## 4780   22/11/2000  1
## 4781   22/11/2012  1
## 4782   22/12/1999  1
## 4783   22/12/2000  1
## 4784   22/12/2002  1
## 4785   22/12/2006  1
## 4786   22/12/2013  1
## 4787   23/01/2000  1
## 4788   23/01/2007  1
## 4789   23/01/2011  1
## 4790   23/02/1996  1
## 4791   23/02/1997  1
## 4792   23/02/2003  1
## 4793   23/02/2006  1
## 4794   23/02/2008  1
## 4795   23/02/2010  1
## 4796   23/02/2014  1
## 4797   23/03/1995  1
## 4798   23/03/1997  1
## 4799   23/03/2007  1
## 4800   23/03/2009  1
## 4801   23/03/2014  1
## 4802   23/04/1997  1
## 4803   23/04/1999  1
## 4804   23/04/2001  1
## 4805   23/05/1995  1
## 4806   23/05/2005  1
## 4807   23/05/2011  1
## 4808   23/06/1994  1
## 4809   23/06/2000  1
## 4810   23/06/2001  1
## 4811   23/07/1996  1
## 4812   23/07/2009  1
## 4813   23/07/2011  1
## 4814   23/08/1995  1
## 4815   23/09/2000  1
## 4816   23/09/2003  1
## 4817   23/09/2006  1
## 4818   23/09/2009  1
## 4819   23/10/1993  1
## 4820   23/10/2000  1
## 4821   23/10/2002  1
## 4822   23/10/2012  1
## 4823   23/11/2010  1
## 4824   23/11/2012  1
## 4825   23/11/2013  1
## 4826   23/12/1996  1
## 4827   23/12/1997  1
## 4828   23/12/1998  1
## 4829   23/12/1999  1
## 4830   23/12/2000  1
## 4831   23/12/2003  1
## 4832   23/12/2004  1
## 4833   23/12/2006  1
## 4834   23/12/2010  1
## 4835   23/12/2013  1
## 4836   24/01/1999  1
## 4837   24/01/2009  1
## 4838   24/01/2010  1
## 4839   24/01/2012  1
## 4840   24/01/2014  1
## 4841   24/02/1995  1
## 4842   24/02/1999  1
## 4843   24/02/2001  1
## 4844   24/02/2004  1
## 4845   24/02/2005  1
## 4846   24/02/2006  1
## 4847   24/02/2008  1
## 4848   24/03/1996  1
## 4849   24/03/1999  1
## 4850   24/03/2001  1
## 4851   24/03/2002  1
## 4852   24/03/2005  1
## 4853   24/03/2009  1
## 4854   24/03/2010  1
## 4855   24/03/2013  1
## 4856   24/04/1997  1
## 4857   24/04/1998  1
## 4858   24/04/2000  1
## 4859   24/04/2003  1
## 4860   24/04/2010  1
## 4861   24/05/1997  1
## 4862   24/05/1998  1
## 4863   24/05/2004  1
## 4864   24/05/2008  1
## 4865   24/05/2011  1
## 4866   24/05/2014  1
## 4867   24/06/1989  1
## 4868   24/06/1996  1
## 4869   24/06/1997  1
## 4870   24/06/2012  1
## 4871   24/07/1995  1
## 4872   24/07/2004  1
## 4873   24/07/2007  1
## 4874   24/08/1997  1
## 4875   24/08/2001  1
## 4876   24/08/2002  1
## 4877   24/08/2004  1
## 4878   24/08/2013  1
## 4879   24/09/2000  1
## 4880   24/09/2001  1
## 4881   24/09/2004  1
## 4882   24/09/2011  1
## 4883   24/09/2012  1
## 4884   24/10/1998  1
## 4885   24/10/1999  1
## 4886   24/10/2004  1
## 4887   24/10/2006  1
## 4888   24/10/2008  1
## 4889   24/10/2009  1
## 4890   24/11/1996  1
## 4891   24/11/1999  1
## 4892   24/11/2002  1
## 4893   24/11/2012  1
## 4894   24/12/1996  1
## 4895   24/12/2003  1
## 4896   24/12/2004  1
## 4897   24/12/2007  1
## 4898   25/01/1997  1
## 4899   25/01/1998  1
## 4900   25/01/2000  1
## 4901   25/01/2002  1
## 4902   25/01/2003  1
## 4903   25/02/1993  1
## 4904   25/02/1996  1
## 4905   25/02/1998  1
## 4906   25/02/2000  1
## 4907   25/02/2004  1
## 4908   25/02/2005  1
## 4909   25/02/2006  1
## 4910   25/02/2011  1
## 4911   25/03/1996  1
## 4912   25/03/1998  1
## 4913   25/03/1999  1
## 4914   25/03/2000  1
## 4915   25/03/2001  1
## 4916   25/03/2005  1
## 4917   25/03/2007  1
## 4918   25/04/1995  1
## 4919   25/04/2002  1
## 4920   25/04/2003  1
## 4921   25/04/2011  1
## 4922   25/04/2012  1
## 4923   25/05/1997  1
## 4924   25/05/1998  1
## 4925   25/05/2009  1
## 4926   25/06/2000  1
## 4927   25/06/2009  1
## 4928   25/06/2010  1
## 4929   25/07/1995  1
## 4930   25/07/1997  1
## 4931   25/07/1999  1
## 4932   25/07/2004  1
## 4933   25/07/2005  1
## 4934   25/07/2008  1
## 4935   25/07/2009  1
## 4936   25/08/1996  1
## 4937   25/08/1998  1
## 4938   25/08/2010  1
## 4939   25/08/2011  1
## 4940   25/08/2012  1
## 4941   25/08/2013  1
## 4942   25/09/1997  1
## 4943   25/09/1999  1
## 4944   25/09/2012  1
## 4945   25/10/1995  1
## 4946   25/10/1997  1
## 4947   25/10/1999  1
## 4948   25/10/2003  1
## 4949   25/10/2004  1
## 4950   25/10/2006  1
## 4951   25/10/2008  1
## 4952   25/10/2009  1
## 4953   25/11/2009  1
## 4954   25/11/2012  1
## 4955   25/11/2013  1
## 4956   25/12/1996  1
## 4957   25/12/1997  1
## 4958   25/12/1999  1
## 4959   25/12/2006  1
## 4960   25/12/2007  1
## 4961   25/12/2008  1
## 4962   25/12/2011  1
## 4963   25/12/2012  1
## 4964   26/01/1996  1
## 4965   26/01/1999  1
## 4966   26/01/2001  1
## 4967   26/01/2003  1
## 4968   26/01/2005  1
## 4969   26/01/2012  1
## 4970   26/02/1997  1
## 4971   26/02/2013  1
## 4972   26/03/1999  1
## 4973   26/03/2000  1
## 4974   26/03/2005  1
## 4975   26/03/2006  1
## 4976   26/03/2010  1
## 4977   26/04/1997  1
## 4978   26/04/1999  1
## 4979   26/04/2001  1
## 4980   26/04/2009  1
## 4981   26/04/2010  1
## 4982   26/04/2013  1
## 4983   26/04/2014  1
## 4984   26/05/1996  1
## 4985   26/05/2000  1
## 4986   26/05/2001  1
## 4987   26/05/2005  1
## 4988   26/05/2008  1
## 4989   26/05/2014  1
## 4990   26/06/1999  1
## 4991   26/06/2001  1
## 4992   26/06/2003  1
## 4993   26/06/2005  1
## 4994   26/06/2007  1
## 4995   26/06/2009  1
## 4996   26/06/2010  1
## 4997   26/06/2012  1
## 4998   26/07/1997  1
## 4999   26/07/2003  1
## 5000   26/08/1993  1
## 5001   26/08/2000  1
## 5002   26/08/2001  1
## 5003   26/08/2003  1
## 5004   26/08/2004  1
## 5005   26/08/2006  1
## 5006   26/08/2011  1
## 5007   26/08/2012  1
## 5008   26/09/1987  1
## 5009   26/09/1997  1
## 5010   26/09/1998  1
## 5011   26/09/2004  1
## 5012   26/09/2007  1
## 5013   26/10/1997  1
## 5014   26/10/2011  1
## 5015   26/11/1995  1
## 5016   26/11/1997  1
## 5017   26/11/2002  1
## 5018   26/11/2003  1
## 5019   26/11/2008  1
## 5020   26/11/2009  1
## 5021   26/11/2010  1
## 5022   26/11/2011  1
## 5023   26/12/1995  1
## 5024   26/12/1996  1
## 5025   26/12/1998  1
## 5026   26/12/2001  1
## 5027   26/12/2003  1
## 5028   26/12/2004  1
## 5029   26/12/2005  1
## 5030   26/12/2007  1
## 5031   26/12/2012  1
## 5032   27/01/1999  1
## 5033   27/01/2001  1
## 5034   27/01/2005  1
## 5035   27/01/2007  1
## 5036   27/01/2012  1
## 5037   27/02/1995  1
## 5038   27/02/1999  1
## 5039   27/02/2002  1
## 5040   27/02/2003  1
## 5041   27/02/2009  1
## 5042   27/02/2014  1
## 5043   27/03/1997  1
## 5044   27/03/1999  1
## 5045   27/03/2001  1
## 5046   27/03/2005  1
## 5047   27/03/2009  1
## 5048   27/03/2011  1
## 5049   27/03/2012  1
## 5050   27/03/2014  1
## 5051   27/04/1997  1
## 5052   27/04/1998  1
## 5053   27/04/1999  1
## 5054   27/04/2001  1
## 5055   27/04/2008  1
## 5056   27/04/2013  1
## 5057   27/05/2000  1
## 5058   27/05/2002  1
## 5059   27/05/2003  1
## 5060   27/05/2009  1
## 5061   27/05/2010  1
## 5062   27/06/1996  1
## 5063   27/06/1998  1
## 5064   27/06/1999  1
## 5065   27/06/2002  1
## 5066   27/06/2003  1
## 5067   27/06/2008  1
## 5068   27/07/2001  1
## 5069   27/07/2003  1
## 5070   27/07/2004  1
## 5071   27/07/2013  1
## 5072   27/08/1984  1
## 5073   27/08/2005  1
## 5074   27/08/2006  1
## 5075   27/09/1995  1
## 5076   27/09/2005  1
## 5077   27/09/2008  1
## 5078   27/09/2010  1
## 5079   27/09/2013  1
## 5080   27/10/1995  1
## 5081   27/10/1996  1
## 5082   27/10/1998  1
## 5083   27/10/2000  1
## 5084   27/10/2003  1
## 5085   27/10/2009  1
## 5086   27/10/2010  1
## 5087   27/11/1998  1
## 5088   27/11/2004  1
## 5089   27/11/2007  1
## 5090   27/11/2009  1
## 5091   27/11/2010  1
## 5092   27/12/1996  1
## 5093   27/12/1997  1
## 5094   27/12/1998  1
## 5095   27/12/2000  1
## 5096   27/12/2003  1
## 5097   27/12/2005  1
## 5098   27/12/2006  1
## 5099   27/12/2007  1
## 5100   27/12/2008  1
## 5101   27/12/2009  1
## 5102   27/12/2010  1
## 5103   28/01/2006  1
## 5104   28/01/2007  1
## 5105   28/01/2009  1
## 5106   28/02/1997  1
## 5107   28/02/2003  1
## 5108   28/02/2005  1
## 5109   28/02/2006  1
## 5110   28/02/2009  1
## 5111   28/02/2010  1
## 5112   28/02/2014  1
## 5113   28/03/1999  1
## 5114   28/03/2004  1
## 5115   28/03/2007  1
## 5116   28/04/1995  1
## 5117   28/04/1999  1
## 5118   28/04/2000  1
## 5119   28/04/2001  1
## 5120   28/04/2006  1
## 5121   28/04/2007  1
## 5122   28/04/2010  1
## 5123   28/04/2012  1
## 5124   28/04/2013  1
## 5125   28/05/1996  1
## 5126   28/05/2000  1
## 5127   28/05/2006  1
## 5128   28/05/2011  1
## 5129   28/05/2013  1
## 5130   28/06/1995  1
## 5131   28/06/1996  1
## 5132   28/06/1997  1
## 5133   28/06/2002  1
## 5134   28/06/2012  1
## 5135   28/07/1996  1
## 5136   28/07/2003  1
## 5137   28/07/2007  1
## 5138   28/07/2009  1
## 5139   28/07/2011  1
## 5140   28/07/2013  1
## 5141   28/08/1999  1
## 5142   28/08/2000  1
## 5143   28/08/2002  1
## 5144   28/08/2010  1
## 5145   28/08/2011  1
## 5146   28/09/1997  1
## 5147   28/10/1993  1
## 5148   28/10/1995  1
## 5149   28/10/1997  1
## 5150   28/10/2006  1
## 5151   28/10/2012  1
## 5152   28/10/2013  1
## 5153   28/11/2003  1
## 5154   28/11/2005  1
## 5155   28/11/2010  1
## 5156   28/12/1998  1
## 5157   28/12/1999  1
## 5158   28/12/2009  1
## 5159   28/12/2011  1
## 5160   28/12/2012  1
## 5161   29/01/2000  1
## 5162   29/01/2003  1
## 5163   29/01/2005  1
## 5164   29/01/2008  1
## 5165   29/01/2011  1
## 5166   29/01/2013  1
## 5167   29/02/2000  1
## 5168   29/03/1996  1
## 5169   29/03/1997  1
## 5170   29/03/1998  1
## 5171   29/03/2006  1
## 5172   29/03/2014  1
## 5173   29/04/1997  1
## 5174   29/04/2001  1
## 5175   29/04/2007  1
## 5176   29/04/2012  1
## 5177   29/04/2014  1
## 5178   29/05/2002  1
## 5179   29/05/2004  1
## 5180   29/05/2009  1
## 5181   29/05/2010  1
## 5182   29/05/2011  1
## 5183   29/05/2012  1
## 5184   29/06/1996  1
## 5185   29/06/1997  1
## 5186   29/06/2005  1
## 5187   29/06/2006  1
## 5188   29/06/2009  1
## 5189   29/07/1998  1
## 5190   29/07/2004  1
## 5191   29/07/2007  1
## 5192   29/07/2008  1
## 5193   29/08/1998  1
## 5194   29/08/2003  1
## 5195   29/08/2008  1
## 5196   29/08/2010  1
## 5197   29/09/1997  1
## 5198   29/09/1998  1
## 5199   29/09/1999  1
## 5200   29/09/2007  1
## 5201   29/09/2013  1
## 5202   29/10/1976  1
## 5203   29/10/1993  1
## 5204   29/10/1997  1
## 5205   29/10/1998  1
## 5206   29/10/2000  1
## 5207   29/10/2003  1
## 5208   29/10/2005  1
## 5209   29/10/2006  1
## 5210   29/10/2007  1
## 5211   29/11/1997  1
## 5212   29/11/1998  1
## 5213   29/11/1999  1
## 5214   29/11/2006  1
## 5215   29/11/2009  1
## 5216   29/12/2002  1
## 5217   29/12/2006  1
## 5218   29/12/2007  1
## 5219   29/12/2010  1
## 5220   29/12/2011  1
## 5221   30/01/1998  1
## 5222   30/01/2000  1
## 5223   30/01/2005  1
## 5224   30/01/2007  1
## 5225   30/01/2008  1
## 5226   30/01/2009  1
## 5227   30/01/2010  1
## 5228   30/01/2013  1
## 5229   30/03/1994  1
## 5230   30/03/1996  1
## 5231   30/03/1998  1
## 5232   30/03/2002  1
## 5233   30/03/2004  1
## 5234   30/04/2002  1
## 5235   30/04/2006  1
## 5236   30/04/2009  1
## 5237   30/05/1995  1
## 5238   30/05/1996  1
## 5239   30/05/1999  1
## 5240   30/05/2003  1
## 5241   30/05/2004  1
## 5242   30/05/2005  1
## 5243   30/05/2009  1
## 5244   30/05/2011  1
## 5245   30/06/1996  1
## 5246   30/06/2004  1
## 5247   30/06/2006  1
## 5248   30/06/2008  1
## 5249   30/06/2010  1
## 5250   30/07/1997  1
## 5251   30/07/2009  1
## 5252   30/07/2010  1
## 5253   30/08/1993  1
## 5254   30/08/1996  1
## 5255   30/08/1998  1
## 5256   30/08/2002  1
## 5257   30/08/2005  1
## 5258   30/08/2009  1
## 5259   30/08/2012  1
## 5260   30/08/2013  1
## 5261   30/09/1994  1
## 5262   30/09/1997  1
## 5263   30/09/2003  1
## 5264   30/09/2006  1
## 5265   30/10/1995  1
## 5266   30/10/1997  1
## 5267   30/10/1998  1
## 5268   30/10/2002  1
## 5269   30/10/2003  1
## 5270   30/10/2006  1
## 5271   30/10/2009  1
## 5272   30/10/2010  1
## 5273   30/11/1997  1
## 5274   30/11/2004  1
## 5275   30/11/2006  1
## 5276   30/11/2008  1
## 5277   30/11/2009  1
## 5278   30/11/2010  1
## 5279   30/11/2013  1
## 5280   30/12/1996  1
## 5281   30/12/1997  1
## 5282   30/12/1999  1
## 5283   30/12/2000  1
## 5284   30/12/2002  1
## 5285   30/12/2003  1
## 5286   31/01/1999  1
## 5287   31/01/2005  1
## 5288   31/01/2007  1
## 5289   31/01/2010  1
## 5290   31/01/2011  1
## 5291   31/03/1998  1
## 5292   31/03/1999  1
## 5293   31/03/2001  1
## 5294   31/03/2002  1
## 5295   31/03/2004  1
## 5296   31/03/2007  1
## 5297   31/03/2012  1
## 5298   31/05/2005  1
## 5299   31/05/2012  1
## 5300   31/07/1994  1
## 5301   31/07/1999  1
## 5302   31/07/2006  1
## 5303   31/07/2009  1
## 5304   31/08/1998  1
## 5305   31/08/2001  1
## 5306   31/08/2004  1
## 5307   31/08/2005  1
## 5308   31/08/2007  1
## 5309   31/08/2009  1
## 5310   31/10/1998  1
## 5311   31/10/2010  1
## 5312   31/12/1996  1
## 5313   31/12/1997  1
## 5314   31/12/1998  1
## 5315   31/12/2001  1
## 5316   31/12/2003  1
## 5317   31/12/2007  1
## 5318   31/12/2010  1
## 5319   31/12/2011  1
count(dfmerge, IncidentDescription, sort=TRUE)
##                                                                                                                                                                                                                                                      IncidentDescription
## 1                                                                                                                                                                                                                                 EE was struck in the face by an inmate
## 2                                                                                                                                                                                                                    Inmate threw an unknown substance on the officer ()
## 3                                                                                                                                                                                                          Possible exposure issue regarding mold in big center building
## 4                 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:
## 5            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
## 6                                                                                                                                                                                                                                                                      I
## 7               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
## 8               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
## 9             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
## 10            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
## 11               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
## 12                                     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
## 13                                                                     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
## 14                                                                                                                                                                                                                 After pepper spray training EE had problems with eyes
## 15                                                                                                                                                                                                                                  During eri, pt spat in EE's mouth ()
## 16                                                                                                                                                                                                                      EE states he was struck in the face by an inmate
## 17                                                                                                                                                                                                                    EE states he was struck in the mouth by an inmate.
## 18                                                                                                                                                                                                                     EE states the wind blew something into his lt eye
## 19                                                              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. ()
## 20                                                                                                                                                                                                                        EE was questioning pt, pt spat in EE's face ()
## 21                                                                                                                                                                                                                            EE was struck in the left eye by a patient
## 22                                                                                                                                                                                                                               EE was struck in the mouth by a patient
## 23                                                                                                                                                                                   Employee was refurbishing fluorescent light fixtures when scaffolding fell over. ()
## 24                                                                                                                                                                                                                                  Exposed to resident w/conjunctivitis
## 25                                                                                                                                                                                                                                             Hit in left eye by client
## 26                                                                                                                                                                                                                                                      Injury to rt eye
## 27                                                                                                                                                                                                            Inmate threw an unknown substance in the officer's face ()
## 28                                                                                                                                                                                                                           Patient hit staff on right side of head. ()
## 29                                                                                                                                                                                               Possible noise induced hearing loss due to occupational noise exposure.
## 30                                                                                                                                                                                                                    Retest of hearing test as a result of high average
## 31                                                                                                                                                                                                              Worked with several patients diagnosed with pink eye. ()
## 32                                                                                                                  '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. ()
## 33                                                                                                                                                                                                                         (blood exposure) no details were provided. ()
## 34                                                                                                                                                                                                                    ******************see log notes*******************
## 35                                                                                                                           *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.
## 36                                                                                                                                                                          *employee state* after being sprayed with pepper spray left eye has been hurting since then.
## 37                                                                                                                                       01/02/2003 03:09 pm (fblackmo) employee states while feeding chipper a limb hit him in his right eye. Supervisor: john w. White
## 38                                                                                                                 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
## 39                                                                      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
## 40               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
## 41                                                                                   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
## 42                                                        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
## 43                                                                                  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
## 44              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
## 45                                                                                                           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
## 46                                                                                                                                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
## 47                                                                                          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
## 48                                                                                      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.
## 49                                                                           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
## 50                                                                                                       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
## 51                                               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
## 52                                                                                               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
## 53             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
## 54             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
## 55                                                                                       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
## 56                                                                                   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.
## 57                           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
## 58                                                   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
## 59                                                                                                                     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
## 60                                                                                 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.
## 61                                                              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
## 62                                                                                             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
## 63                                                                                                                              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.
## 64                                                                                  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
## 65                                                                                          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
## 66                                                                                                   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
## 67                                                                                      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
## 68                                                                                                      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
## 69               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
## 70                                                                                                              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
## 71                            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
## 72                                                        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
## 73                                                       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
## 74                                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
## 75                                                                                                                       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.
## 76                                                               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
## 77           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
## 78                                                                                                                               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
## 79                                                                                                                             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
## 80                                                                                                   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
## 81             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
## 82                                                                                                                      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
## 83                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
## 84                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:
## 85             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
## 86                                                                                 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
## 87                                                                               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
## 88           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
## 89                                                  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.
## 90                                       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
## 91                                     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
## 92                                                                            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
## 93                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
## 94                                                                                                                        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
## 95                                                                                                                                              02/20/2001 03:24 pm employee was leaving the job site; when debris blew into his left eye. Supervisor: robert d. Simpson
## 96                                                                                                                   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
## 97                                                                              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
## 98                                                                                                                                    02/21/2003 12:33 pm (fblackmo) employee states while sharing mower blades, debris went into his right eye. Supervisor: s. R. White
## 99             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
## 100                                                       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
## 101                                                                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
## 102                                                                                            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
## 103                                                  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
## 104                                                         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
## 105                                                                                                                                   02/27/2003 10:26 am (fblackmo) employee was installing a light when, something fell into his left eye. Supervisor: jackie lunsford
## 106           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
## 107                                                                                                       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
## 108                                                                       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
## 109             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
## 110            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
## 111                                                                                         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
## 112                    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
## 113                                                                                                                                         03/09/2000 08:51 am employee has binaural hearing loss due to acoustic trauma, chronic exposure to noise (excess of 90 dbs.)
## 114                                    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
## 115          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
## 116                                                                                                                         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
## 117                                                               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
## 118                                                                                                         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
## 119                                             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
## 120                                                                                 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
## 121                                                                                                               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
## 122                                                                                                      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
## 123                                                                               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
## 124           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
## 125                                                                                                                 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
## 126                                          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
## 127             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
## 128                                                                                   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
## 129                                                                                                                 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
## 130                                                                          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
## 131             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
## 132                                   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
## 133                                                                               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
## 134                                                                        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
## 135                                                                                                                             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
## 136                                                                                                                      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
## 137                                                         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)
## 138                                                                                                                          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
## 139                                                                                                                                             03/28/2000 02:29 pm employee was using an air grinder when debris got into his left eye. Supervisor: richard f. Jernigan
## 140                                                                                                                            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
## 141                                   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
## 142             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
## 143                                     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)
## 144                                                 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
## 145                                                                                          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
## 146                                                                         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
## 147           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
## 148                                                                                                   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
## 149                                                        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
## 150                                                                                        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
## 151                                                                                                                    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
## 152                                                   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
## 153                                                                                                                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
## 154                                                                                                                                                      04/10/2002 12:55 pm (fblackmo) employee got off tractor to pickup rocks and passed out. Supervisor: t. R. Burns
## 155            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
## 156                                                             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
## 157                                                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
## 158                                                                                                                    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
## 159                                                                            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
## 160                                                                                                                                    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
## 161                                                                                      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
## 162                                                                                                      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
## 163                                                                                   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
## 164                                                                                                     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
## 165                           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
## 166                                                                                   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
## 167                                                                                                                             04/17/2002 12:03 pm (fblackmo) employee states that while working in office yard, wind blew dust into her eyes. Supervisor: ken anderson
## 168                  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.
## 169                                                                                                                               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
## 170                                 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
## 171                                                                                          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
## 172           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
## 173            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
## 174                                          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
## 175                  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
## 176            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
## 177                                                                                                               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
## 178           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
## 179                                                                                                                                                                                04/28/1999 04:34 pm employee was flagging traffic when object blew into her left eye.
## 180             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
## 181                                                                                                                                      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.
## 182                                                                                                                                     04/30/2003 02:08 pm (fblackmo) employee was working with ground wire when, the hit him in his left eye. Supervisor: marty headen
## 183                                                            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
## 184            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
## 185             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
## 186                                                                                                                               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.
## 187         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
## 188                                                                                                             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
## 189           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:
## 190            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
## 191                                                                                                    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
## 192                                                                      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
## 193                                                                               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
## 194                                                                                                                      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
## 195            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
## 196                                                                                                                                                     05/08/2000 04:19 pm employee was mowing slope when trash flew into his eyes on 4/20/00. Supervisor: d. W. Knight
## 197                                                                                                       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
## 198            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
## 199                                                                                                                                     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
## 200                                                                                                                      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
## 201                                                                                                                                                                           05/11/2010 10:28 am (vyount) private vehicle crossed center line and struck state vehicle.
## 202                                                                                                                                                 05/14/2003 08:16 am (fblackmo) employee was removing sign when, dust flew into his left eye. Supervisor: chris baker
## 203                                                                                                                         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
## 204                                                                                                    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
## 205                                                                               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
## 206                                    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
## 207                                                                                                                                             05/16/2002 04:07 pm (fblackmo) employee was outside when the wind blew debris in his right eye. Supervisor: jack rollins
## 208          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
## 209            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
## 210                                                                     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
## 211                                                                                                                                      05/16/2002 12:00 pm (fblackmo) employee was using desk saw when something got into his right eye. Supervisor: roger l. Arrowood
## 212                                                                                  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.
## 213                                                                                                                                   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
## 214                                                                                                                                          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.
## 215                                                                                          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
## 216            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
## 217                                                                      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
## 218                                                                                                                                           05/21/2003 11:58 am (fblackmo) employee was rolling stones when, foreign matter flew into his eyes. Supervisor; mike brady
## 219                                                                                                                 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
## 220                                                                                                       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
## 221                   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
## 222                                 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
## 223                                                      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
## 224                                                                                                       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.
## 225                                                                                                                                                     05/25/1999 04:07 pm employee was cutting bushes, when his pants leg became caught on branch causing him to fall.
## 226                                                                                                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.
## 227           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
## 228                       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
## 229                                                                                                         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
## 230            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
## 231                                                                                                            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
## 232            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
## 233                                                                                                                      05/31/2002 10:15 am (fblackmo) employee states loss hearing from working with continuios operations of heavy equipment. Supervisor: matt taylor
## 234                                                                                                   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.
## 235                                                                                                             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.
## 236           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
## 237                                                                      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.
## 238                                                                                                                                           06/03/2002 11:11 am (fblackmo) bilateral hearing loss, result of exposure to loud noises. Supervisor: not given on form 18
## 239                                                                                      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
## 240                                                                                                              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
## 241                                                                                                                     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
## 242             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
## 243                                                                                                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
## 244            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
## 245                                                                                                     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
## 246                                                                                                                                    06/06/2002 10:41 am (fblackmo) employee was mowing grass when some foreign matter landed in his left eye. Supervisor: carl vestal
## 247                                                                                                                                                        06/06/2002 11:01 am (fblackmo) employee states that wind blew debris into his right eye. Supervisor: b. Moore
## 248                                                                                                                                                                   06/07/1999 02:30 pm employee was walking by a bay door, when the wind blew trash in his right eye.
## 249                                                  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.
## 250                                                                                                                                                           06/08/1999 03:21 pm employee was mixing concrete when the wind blew sand into his eye. 02/01/2000 12:52 pm
## 251                                                                                                                                               06/08/2000 01:01 pm employee was using a weed eater when something flew into his right eye. Supervisor: g. R. Mcginnis
## 252                                                                    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
## 253             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
## 254                                                                               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
## 255                                                                 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)
## 256                                                                                                                     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
## 257                                                                                  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
## 258                                                                        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
## 259                                                               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
## 260             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
## 261                                                                                                   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
## 262                                                                                                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
## 263                                                                                                                                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
## 264                                                                                                           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
## 265                                                                 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
## 266                                                                       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
## 267                                                                                                                                   06/13/2003 08:22 am (fblackmo) employee cut his forehead while cutting a new edge on backhoe bucket. Supervisor: james keith smith
## 268                                                                                        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.
## 269                                                                                                       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
## 270                             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
## 271            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
## 272                                                                                          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)
## 273                                                                                                                  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
## 274                                                                                                                                                 06/21/1999 03:00 pm employee bruised head on wooden ovehang of bridge while inspecting erosion control on a project.
## 275                                                                           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.
## 276             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
## 277                                                                                                                                     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
## 278                                                                                                                        06/21/2002 03:27 pm (fblackmo) employee states while under tuck checking transmission something blew in his right eye. Supervisor; f. M. Burk
## 279                                                                                                                                                               06/22/1999 03:32 pm employee was working under a lowboy trailer, when dirt/trash got in his right eye.
## 280                                                                                               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.
## 281                                                                                                                                   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.
## 282                                                                                     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.
## 283                                                                                                   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.
## 284                                                                                                                                                              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.
## 285                                                                                              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
## 286                                                                                                                   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.
## 287                                                                                                                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.
## 288                                                                          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
## 289                                                                                             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
## 290                                                                                                                                                        06/27/2003 11:24 am (fblackmo) employee came in from lunch break when, he passed out. Supervisor: c. E. Moore
## 291                                                                                             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
## 292                                                                                                                      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
## 293                                                                                                                                             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
## 294                                                                                         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
## 295                                                                                        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
## 296                                                                                                          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
## 297                                                                                                                                             07/03/2000 05:00 pm employee was mowing grass when debris flew up from mower into his left eye. Supervisor: t. C. Tilley
## 298                                                                                                                                       07/03/2003 10:10 am (fblackmo) employee was opening pain when, paint and fumes hit him in his eyes. Supervisor: roger pulcheon
## 299                       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
## 300                                                                                                        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
## 301                                                                                              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
## 302                                                                                             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
## 303                                        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
## 304                                                                                                                                                           07/07/1999 01:58 pm employee was surveying for a bridge project, when she found a tick lodged in her head.
## 305                                                                                               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.
## 306                                                                                                                                                          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.
## 307                                                                                                         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
## 308                                                                                    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
## 309                                               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
## 310                                                                                                              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
## 311                                                                                                                            07/10/2000 09:57 am employee was fueling diesel truck; when foreign object (fuel) splashed up into his left eye. Supervisor: alvin davis.
## 312                       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
## 313                                                                                                                     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
## 314                                                                                                   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
## 315                                                                                        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.
## 316                                                                                          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.
## 317                                                                                                                                       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
## 318                        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
## 319                                                                                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
## 320                                                                                                 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
## 321                                                                                                         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
## 322                                                                                                                            07/17/2001 03:19 pm (fblackmo) employee bumped back of head while retrieving parts stored under steel stairwell. Supervisor: don ferguson
## 323                                                                                                                           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
## 324                             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.
## 325                                            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
## 326                                                                                                                                 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.
## 327                                                                 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
## 328                                                                                                                         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.
## 329                                                                    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
## 330                                                              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.
## 331                                                                                           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
## 332                                                                                                                                     07/22/2002 12:52 pm (fblackmo) employee states while running a weedeater debris got into his right eye. Supervisor: c. W. Vestal
## 333                                                                                                                                                  07/22/2003 07:47 am (fblackmo) employee was directing traffic when, he was hit by a vehicle. Supervisor; j. R. Bell
## 334                                                                                                           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
## 335                                                                                                  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.
## 336                                      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
## 337                               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
## 338                                                                                                             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
## 339                                                                      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
## 340             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
## 341                                                                                                                                            07/28/2003 04:04 pm (fblackmo) employee was using water pump when, he hit his head on truck. Supervisor: w. J. Timberlake
## 342             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
## 343                                                                                                                          07/30/2001 05:13 pm (fblackmo) employee became dizzy and disoriented while operating belts on a chip spreader. Supervisor: j. W. Weatherman
## 344                  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
## 345                                                                 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
## 346                                                                                                             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
## 347                                                                                                                     07/31/2003 10:37 am (fblackmo) employee states she was having breathing problems because of another employees cologne. Supervisor: dorene creech
## 348                                                                                                                             08/01/2002 08:25 am (fblackmo) employee was cleaning out refrigerator when, she hit her head on the door handle. Supervisor: doyle lytle
## 349                                                                                    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
## 350                                                                                                              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.
## 351                                                           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
## 352                                                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.
## 353                                                                                                  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
## 354              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
## 355                                                                                      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
## 356                                                                                   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
## 357           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
## 358                                                                                                                    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
## 359          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
## 360                                                                                         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
## 361                                                                                                                 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
## 362                                                                                                                          08/08/2002 10:09 am (fblackmo) employee states, he experienced hearing loss in both ears caused by prolonged noise. Supervisor: s. L. Emory
## 363                                                                                                                                      08/08/2003 08:53 am (fblackmo) employee was clearing survey line when, he was stung between the eyes. Supervisor: t. K. Wheeler
## 364                                                                                                                                 08/08/2003 09:15 am (fblackmo) employee was working on the lcu when, something flew into his left eye. Supervisor: kevin lamar cooke
## 365                                                                                                  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
## 366                                                                                  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
## 367                                                                  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
## 368                                                  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.
## 369                                                    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
## 370                                                                                         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
## 371                                          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
## 372                                           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
## 373                                                                                                     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
## 374                                                                                                                                               08/17/2001 04:42 pm (fblackmo) employee was surveying near us 70. Found tick in left ear. Supervisor: d. C. Bodenhamer
## 375                                                            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.
## 376                                                                                       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
## 377                                                                                           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.
## 378                                                                      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.
## 379                                                                                                        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
## 380                                                                                                                                 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
## 381                                      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
## 382             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
## 383                                                                              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
## 384                                                                                            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
## 385                                                                                     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.
## 386                                           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
## 387                                                                                                                 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
## 388                                                                                                                    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
## 389                     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
## 390            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
## 391                                                                 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
## 392            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
## 393                                                                                                                 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
## 394                                                                       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
## 395                                                                                                                                                                             08/30/2002 03:25 pm (vsulliva) employee driving a fuel truck pulled in front of a train.
## 396                                                                                                                           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.
## 397            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
## 398                                  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.
## 399                                                                                                    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
## 400                                                              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
## 401                                                                    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
## 402                                                                                                                                   09/04/2002 11:17 am (fblackmo) employee was assisting in pumping grout, when dust went into his left eye. Supervisor: jude pfeufer
## 403                                                                            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
## 404                                                                                                                   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
## 405                                                                                                                       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
## 406            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
## 407                                                         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
## 408                                                                                  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
## 409                                                                                                                           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
## 410                                                                                                     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)
## 411                                                           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
## 412                      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
## 413                                                 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
## 414                                                                                     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
## 415                                                                                                                  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
## 416                                                                   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
## 417                              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
## 418                                                                                                                                             09/12/2002 02:10 pm (fblackmo) employee stated debris form mowing tractor blew in his right eye. Supervisor: r. G. Crews
## 419             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
## 420                                                                                                                                09/12/2002 02:47 pm (fblackmo) employee was picking up sign post when, splinter lodged in right forearm. Supervisor: arthur slaughter
## 421                                                                                                  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
## 422                                                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.
## 423                                                                                                                     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
## 424                                                                                                          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
## 425                                                                                                         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
## 426            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
## 427                                           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
## 428                                                                                                                             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
## 429                                                                                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
## 430            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
## 431             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
## 432                                                                                     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
## 433                                                                                                                                    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
## 434                          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
## 435                                                                                                                     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
## 436           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
## 437            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
## 438          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
## 439           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
## 440                                                                        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
## 441                      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
## 442              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
## 443                                                                                                                          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
## 444                                                                                             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
## 445                                                                                                                      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
## 446                                                                                             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
## 447                                                                                      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
## 448            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 (
## 449                                                                     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
## 450                                                                                 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
## 451                                                                                                       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
## 452          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
## 453                                                                     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
## 454                                                                                                                         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
## 455                    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
## 456          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
## 457          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
## 458          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
## 459           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
## 460                              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
## 461           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
## 462          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
## 463           1/22/2008 10:31 am (blgay) employee was cutting a 4 to 5 foot tree on the right of way for a new grade. The chain saw picked up a piece of old barb wire that was hidden in the undergrowth. As the saw pulled the piece of wire, the wire slung backwards
## 464                                                                                  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
## 465                                                                                                      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
## 466                                         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
## 467                                                                                                      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
## 468                                                                      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
## 469                                                                                                                   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
## 470                                                                                                          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
## 471          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
## 472                                                                          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
## 473                                                                                                                    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
## 474                                                                                                               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
## 475                                                                                                     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
## 476                          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
## 477                                                                                                                                             1/29/2009 12:13 pm (fblackmo) employee was placing sign in hole when, sign struck him on the head. Supervisor: jim dilda
## 478                                                                                                                                       1/29/2010 11:42 am (fblackmo) employee was repairing fuel pump when, fuel splashed into his left eye. Supervisor: harold white
## 479                                                                                                                                                 1/30/2008 03:47 pm (blgay) employee was grinding on beam and flying debris got in right eye. Supervisor: r. E. Joyce
## 480                                               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
## 481                                                                                                                                                                                                                                   1/4 inch rod poked EE in the head.
## 482                                                                                                                                  1/4/2005 08:26 am (fblackmo) employee was changing snow plow blades when, something flew into his left eye. Supervisor: m. B. Smith
## 483                                                                                                                                                        1/4/2010 04:26 pm (blgay) employee was cutting a tree, when limb hit him in the head. Supervisor: doug mcneal
## 484                                                                                                 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
## 485                                                                                      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
## 486                             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
## 487                                                                                                                  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
## 488                                                                                                          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
## 489                                                                                                                       1/9/2007 12:18 pm (fblackmo) employee was working under trailer when, debri fell behind safety glasses into right eye. Supervisor: danny lewis
## 490                 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
## 491                                                                                                                                                   1/9/2009 01:56 pm (fblackmo) employee was operating a blower when sand blew into his eye. Supervisor: archie smith
## 492           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
## 493                                                       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
## 494                                                                         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
## 495                                         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
## 496                                          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
## 497                                                                                      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
## 498              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
## 499                                                                                        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
## 500                                                                                                                                            10/06/2003 03:47 pm (fblackmo) employee states while cutting plywood a splint flew into his eye. Supervisor: dennis baker
## 501                                                                                                                                                        10/07/1999 01:57 pm employee was chaining down backhoe when particles of dust fell off backhoe into left eye.
## 502                                                      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.
## 503            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
## 504                                                                                 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
## 505                                                                                            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
## 506                                                                                                                 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
## 507                                                                                                                            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
## 508                                                                                                                             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
## 509                                                                                                                               10/12/2004 09:40 am (fblackmo) employee was walking around dump truck when, he hit his head on the tailgate. Supervisor: ralph murdock
## 510                                          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
## 511                                                                                                     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
## 512                                                                                                             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
## 513                                                                                                                   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
## 514                          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
## 515                                                                                                    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
## 516                                                                                                                                                        10/13/2005 09:59 am (blgay) employee was welding and glare from welder burnt eyes. Supervisor: carlton jarman
## 517                                                     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
## 518             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:
## 519                                                                                                                   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
## 520                                                                                                                                10/15/2003 11:09 am (fblackmo) employee was welding bracket when, the flash caused burns to both his eyes. Supervisor: russell ramsey
## 521                                                                                                                                           10/16/2001 02:15 pm (fblackmo) employee was weed eating and received foreign chemical in his eye. Supervisor: david silver
## 522            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
## 523                                                                                                                                  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
## 524                                                                                                                          10/16/2008 08:16 am (fblackmo) employee states he experienced hearing loss from "the impact of noise exposures". Supervisor: perry mitchell
## 525                                 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
## 526          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
## 527                       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.
## 528                 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
## 529                    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
## 530                                                                                                                                     10/18/2002 11:22 am (fblackmo) employee was struck on the forehead by a piece of equipment machinery. Supervisor; w. L. Thompson
## 531                                                                                        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
## 532                                                                  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
## 533                                                                                                         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
## 534          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
## 535                                                                                         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
## 536          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
## 537                         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
## 538          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
## 539                                                                                                     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
## 540                                            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
## 541                                                                                                                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
## 542                      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
## 543                                                                                                                                    10/23/2003 02:46 pm (fblackmo) employee was using drill when, foreign matter flew into his right eye. Supervisor: charles watkins
## 544                                                                                                                                        10/23/2003 03:45 pm (fblackmo) employee was washing hydro-seeder when, debris flew into his left eye. Supervisor: a. J. Mintz
## 545                                                                                                        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
## 546                                                            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
## 547                                                                                                      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
## 548                                  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
## 549            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
## 550             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
## 551                                                    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
## 552                                                                                                                                                  10/25/2001 10:03 am (fblackmo) employee states that wind blew debris into his left eye. Supervisor: brian k. Glover
## 553             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
## 554                                                                                                  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
## 555                                                                                                  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
## 556              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
## 557               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
## 558           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-
## 559           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
## 560                                                                                               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
## 561                                                                    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
## 562                                                                                                                              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
## 563                                                                                                                                       10/27/2009 02:39 pm (fblackmo) employee was weed eating when, a piece of plant went into his left eye. Supervisor: mark conner
## 564                                                                                     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)
## 565                                                                                               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
## 566                                                                                                                                 10/27/2009 12:35 pm (fblackmo) employee states alleged hearing loss due to on the job continuous noise. Supervisor: richard dewhurst
## 567                                                                                                                           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
## 568                                                  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
## 569                                                                                                                             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
## 570                                                                                                                    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
## 571                                                                                 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.
## 572                             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.
## 573                                                                                                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
## 574                                                                                                                        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
## 575                                                                                             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
## 576                                                                                        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
## 577                                                                                   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
## 578                                                                                       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
## 579                                                                                                                            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
## 580                                                                                                                   10/4/2010 09:27 am (fblackmo) employee was flagging traffic for road oil operation when, his eyes became irritated/red. Supervisor: alton thornton
## 581                                                                                                                             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
## 582          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
## 583          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
## 584                                                            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
## 585                                                                                                                      10/8/2010 09:49 am (fblackmo) employee was dumping asphalt when breeze blew foreign matter into his left eye. Supervisor: james darrell wilkins
## 586                                                                         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
## 587                                                                                                                   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
## 588                                             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
## 589                                                                                                    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
## 590                                                                     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.
## 591                                                                                                             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
## 592                                                                                                                 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
## 593                                                                                                                    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
## 594                                                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
## 595                                                                                                                    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
## 596             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
## 597                                                                                                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
## 598                                                                                                                                   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.
## 599            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
## 600             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
## 601                                                                     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
## 602                                                                                                                               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.
## 603               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.
## 604                                                                        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.
## 605                                                                    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
## 606                                                                                                                                          11/10/2008 03:42 pm (fblackmo) employee was flagging traffic when, truck blew debris into his eyes. Supervisor: jim wiggins
## 607                                                                                                                                          11/12/2003 02:47 pm (fblackmo) employee was taking apart a sign when, he was struck in the head. Supervisor: johnny coleman
## 608          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
## 609          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
## 610              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
## 611                                     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
## 612                                                                                                              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
## 613                                                                                                                      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
## 614                                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
## 615                                         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
## 616                                                                                                                                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.
## 617                                                                             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
## 618                                                                                                                                      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
## 619                                                                                             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
## 620                                                                                                                                      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.
## 621                                                                  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
## 622                                                                                          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
## 623          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
## 624                                                                         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
## 625                                                                                                             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
## 626             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
## 627                                                                                                                                   11/20/2001 02:48 pm (fblackmo) employee was painting timber bridge rail when the wind blew debris in eyes. Supervisor: s. R. Davis
## 628                                                                                                                                  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
## 629                                                                                                     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
## 630           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
## 631                                                                                                                                       11/21/2008 03:44 pm (fblackmo) employee states hearing loss was identified after testing at the depot. Supervisor: mark walker
## 632                                                                                             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
## 633          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
## 634           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
## 635                                                                      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
## 636                                                           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.
## 637                                                                                                        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
## 638                                                              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
## 639                                                                                                                                  11/25/2003 12:08 pm (fblackmo) employee was cutting trees when, one of the limbs struck him on the head. Supervisor: jamie mckinney
## 640                                                                                                                                    11/25/2003 12:29 pm (fblackmo) employee states while working on I-85 something flew into his right eye. Supervisor: tim southhard
## 641                                                                              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
## 642                                                                             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
## 643             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
## 644                                                                                                  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
## 645            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
## 646                                    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
## 647                                                                                                                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
## 648                                                                                                        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
## 649          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
## 650                                                                                                         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
## 651                                                                  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
## 652          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
## 653                                       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
## 654                                                                                                               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
## 655                   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)
## 656                                                                                      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
## 657                  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)
## 658                                                                                                                                                            11/8/2004 02:19 pm (fblackmo) employee was walking into his cubical and blacked out. Supervisor: tom koch
## 659                                                  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
## 660                                                                                                                              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
## 661          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
## 662          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
## 663                                                                               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
## 664                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.
## 665              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
## 666           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
## 667                                                                                                     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.
## 668                                                                                              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
## 669                                                                                                             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
## 670                                                                                                                                  12/08/2000 11:35 am employee was helping load truck when foreign object debris/grit scratched his left eye. Supervisor: donald king
## 671                                                           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
## 672                                                                                                     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.
## 673                                                            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
## 674                                                                                                                        12/10/2007 02:03 pm (blgay) employee was helping take photos of customers at the dmv office, when employee fainted. Supervisor: dwight godwin
## 675                                                                                                      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
## 676                                                                                                                                                    12/12/2006 08:03 am (fblackmo) employee states he experienced occupational hearing loss. Supervisor: tommie peace
## 677                                        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
## 678                                                     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
## 679                                                                                                                                          12/12/2008 02:59 pm (fblackmo) employee fell off chipper machine striking his head on pavement. Supervisor: d. M. Honeycutt
## 680                                                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.
## 681                                                                            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
## 682                                                                                                                                            12/13/2005 02:13 pm (fblackmo) employee had garage door open when, saw dust blew into his eyes. Supervisor: david findley
## 683                                                                                                      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
## 684                          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
## 685                                            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
## 686                             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
## 687         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
## 688                                                                                                                      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
## 689          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
## 690                                                                                                                              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
## 691            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
## 692                               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
## 693                                                                                                                           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
## 694                                                                                       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
## 695                                                                                                        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
## 696             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.
## 697                                                                                                     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
## 698          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
## 699                                                                                                                                                  12/20/1999 03:15 pm employee was sawing board with circular saw. Wind was blowing and saw dust blew into right eye.
## 700                                                                                                                      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.
## 701                                                           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
## 702                                                                                                          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
## 703                                                                                                      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
## 704                                                                     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)
## 705                                                                                                                            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
## 706                               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
## 707                       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
## 708                                                                               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
## 709                                                     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
## 710                                                                                                                                    12/21/2004 11:03 am (fblackmo) employee was measuring silt fence when, stick went into his left eye. Supervisor: david poindexter
## 711                                         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
## 712                                                                                                                           12/22/2003 02:51 pm (fblackmo) employee was blowing off deck when, foreign matter flew into his left eye. Supervisor: thomas foster bowser
## 713          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
## 714           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
## 715                                                                                                                                       12/28/2005 02:18 pm (fblackmo) employee was working at the sawmill when, dust got into his eyes. Supervisor: reuben e. Blakley
## 716           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
## 717            12/28/2010 02:37 pm (barnes) employee was helping feed a log into a chipper, when the log rolled and a limb on the log struck him on the right cheek and right eye. Employee injuries consisted of scratches to the right cheek and right eye. Supervisor
## 718                                                                                                        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.
## 719                                                                                                 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
## 720                          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
## 721                                                              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
## 722                                                                                  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
## 723                                                                                                                      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
## 724                                             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
## 725                                                                                                                         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
## 726                                                                                        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
## 727                                                                                      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
## 728                                                             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
## 729                                                                                            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
## 730           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
## 731          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
## 732                                                                                                 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
## 733                                                                                                                                                                                      1:1 patient leaped up from bed and started punching staff on the head and face.
## 734                                                                                                                                                1:1 with patient. Walked with patient to med room, patient suddenly turned and struck staff 4-5 times on the face. ()
## 735                                                                                                                                 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.
## 736                                                                                                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. ()
## 737                                                                                                                                                     2 students were arguing over a basketball EE went over to students and one student accidently poked EE in lt eye
## 738          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
## 739          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
## 740                                                                                                                         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
## 741                                                                                                                           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
## 742                                                                                                    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
## 743                      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
## 744                                                                                                                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
## 745                                                                                                                                         2/12/2004 09:17 am (gsimmons) employee was pulling limbs into woods, limb flew back hitting employee in corner of right eye.
## 746                                                                                                                 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
## 747                                                                                                    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
## 748                                                                                                                      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
## 749                                                                                    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
## 750                                                                                                                           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
## 751                                  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
## 752          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
## 753                                                                                                           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
## 754           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.
## 755                                      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
## 756                                                                                                               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
## 757          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
## 758                                                                                                              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
## 759                  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
## 760                                                                                                                      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
## 761          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
## 762                                                    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
## 763                                                          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
## 764                                                              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
## 765              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
## 766                                                                                                                          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
## 767                                                                      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
## 768           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
## 769                                                                                                                                 2/23/2011 03:59 pm (fblackmo) employee was removing hoses from truck when wind blew dust into his left eye. Supervisor: brady fisher
## 770                                                                                                   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
## 771          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
## 772                                                                                                                                                2/25/2005 10:35 am (fblackmo) employee was cutting limbs when, twig went into his right eye. Supervisor: van b. Ellis
## 773                                                                                                   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
## 774          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
## 775                                                                                                                      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
## 776          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
## 777                                                                                                                           2/28/2005 11:33 am (fblackmo) employee was unloading buckets of grass seeds when, trash went into his left eye. Supervisor: william dodson
## 778          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
## 779                                                                                                                 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
## 780          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
## 781                                                                                                                       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
## 782                                                                 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
## 783                                                                                                               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
## 784                                            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
## 785                                                                                                               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
## 786                                 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
## 787         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
## 788          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
## 789                                                                             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
## 790                                                                                                             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
## 791          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
## 792           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
## 793          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
## 794                                                                                                                                                                                                                            20% formic acid drop splashed into rt eye
## 795                                                          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
## 796          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
## 797                                                                                                         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
## 798                                                                                                     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
## 799                                                           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)
## 800                                                                                                                                                                3/12/2008 04:44 pm (fblackmo) employee fell on pvc pipe and cut his upper lip. Supervisor: james bell
## 801           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
## 802          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
## 803         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
## 804                                                   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
## 805                                                                                                                    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
## 806                                       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
## 807                                                                        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
## 808                                                                                             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
## 809                                                                              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
## 810                        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
## 811                               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
## 812                                                                                                                        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
## 813                                                                                                          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
## 814                                                                                                            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
## 815                    3/21/2005 10:06 am (fblackmo) employee was installing traffic counters on the highway when, he was struck by private vehicle. Injuries include spleen, diaphragm, stomach, pelvis, ankle, legs, ribs, eye, and concussion. Supervisor: max potter
## 816                                            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
## 817                                                                                                                                                  3/21/2006 09:23 am (fblackmo) employee was chipping brush when, brush struck him in right eye. Supervisor: jim ashe
## 818                                                       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
## 819          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
## 820          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
## 821           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
## 822          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
## 823             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
## 824                                                                                                                            3/27/2006 03:28 pm (fblackmo) employee was releasing asphalt agent when, it splattered going into his right eye. Supervisor: brian harper
## 825                                                                                                                                  3/27/2006 12:08 pm (fblackmo) employee was changing blades on grader when, debris went into his right eye. Supervisor: james conner
## 826           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
## 827                                                                                                                                    3/3/2005 08:48 am (fblackmo) employee was bending over fence picking up trash when, he cut his forehead. Supervisor: o. D. Sparks
## 828                                                                                      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
## 829          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
## 830                                                      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
## 831                                                                                                                   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
## 832                                                                                              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
## 833                                  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)
## 834                                                                                                                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
## 835                                                           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
## 836                                                                                                         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
## 837          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
## 838          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
## 839                                                             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
## 840                                                   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
## 841                                                                                                                              3/9/2006 09:43 am (fblackmo) employee was painting over graffiti with concrete when, debris got into right eye. Supervisor: abdul kalam
## 842           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
## 843                                                         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
## 844                                                                                                                                                4% paraformaldehyde was back-flashed into EE's rt eye when she was doing an experimental procedure to perfuse a mouse
## 845                                                                                                                                                 4' light fixture came loose & sturck EE on right side of face & head. Broken right side temporal bone - hearing loss
## 846                         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
## 847                                                     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
## 848                                                                    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
## 849                                                                                                                                  4/12/2006 08:54 am (fblackmo) employee was dumping trash when, dust particles flew into his face and eyes. Supervisor: jimmy creech
## 850                               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
## 851                                                                                                                                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
## 852                                                                 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
## 853                                                                                                                                          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
## 854          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
## 855                                                                            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
## 856                          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
## 857                  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
## 858                                                                              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
## 859                                                                                                                                                                                           4/18/2006 02:31 pm (bhenders) pov pulled out in front of sov (dump truck).
## 860                                                        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
## 861                                                                         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
## 862                                                                                                     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
## 863         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
## 864                                                                                                                          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
## 865                            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
## 866                                                 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
## 867           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
## 868                                                                                                  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
## 869                                                                                            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
## 870              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
## 871                                                                                                         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
## 872                                                                           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
## 873                                                                                                                                  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
## 874                                                                                                                     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
## 875                                                                                                       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
## 876                                    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
## 877                                                                                                                                 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
## 878          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
## 879                   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
## 880                                                                                                                                           4/29/2010 10:30 am (fblackmo) employee was welding studs without helmet when both eyes was burned. Supervisor: g. N. Allen
## 881                                                                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
## 882                                                                                                                                    4/5/2007 10:13 am (fblackmo) employee was blowing out cracks in pavement when, debris was blown up into his left eye. Supervisor:
## 883                                                                                                                                            4/6/2004 03:27 pm (fblackmo) employee states while pulling limbs, one limb struck his left eye. Supervisor c. H. Winstead
## 884                                                                                                                      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
## 885                                                                                                                                               4/6/2005 02:58 pm (fblackmo) employee was using drain cleaner when, it splashed into his eyes. Supervisor: ricky davis
## 886           4/8/2009 03:57 pm (fblackmo) employee was responding to wreck on I-40. He stopped to relieve tension on guard rail cable. Took adjustable wrench and backed off three rounds when, the cable snapped and the buckle end hit him on the right side of face.
## 887                                                                                                     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
## 888          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
## 889          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
## 890                                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
## 891                                                                                                               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
## 892                                                            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
## 893          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
## 894                                                                                                       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
## 895                                                                                                                                                              5/11/2010 09:59 am (fblackmo) employee is having difficulty hearing in both ears. Supervisor: ray brown
## 896                                                                                                                               5/12/2004 09:59 am (fblackmo) employee was walking downstairs on her way home when, she slipped and fell. Supervisor: diane strickland
## 897                                                                                                                          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
## 898                                                                                                                                     5/12/2006 10:37 am (fblackmo) employee was putting down driveway pipe when, dirt flew into right eye. Supervisor: jimmy f. Walls
## 899                                                                                                          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
## 900                                                                                             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
## 901          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
## 902          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
## 903          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
## 904           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
## 905           5/14/2010 10:39 am (fblackmo) employee was operating a wheel tractor broom on shoulder crew in a posted work zone when a private vehicle came over into closed lane and struck back of the wheel tractor broom. Employee felt pain in his head and neck. S
## 906                      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
## 907               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
## 908          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
## 909                                                                                      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
## 910                                                                                              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
## 911                                                                       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
## 912                                                                                         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
## 913                                                                                                               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
## 914          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
## 915                                                                              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
## 916                                                            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
## 917                                                          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.
## 918                                                                                                    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
## 919                  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
## 920                                                                              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
## 921                                                                                                         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
## 922                                                                                        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)
## 923                                      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
## 924                                                                                                                                       5/23/2006 12:45 pm (fblackmo) employee was working under vehicle when, debris got into his left eye. Supervisor: jerry bagwell
## 925                                                                                                                     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
## 926                                      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
## 927                                                                                              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
## 928          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
## 929                                                                                                                                5/25/2007 11:54 am (fblackmo) employee was unloading his flat bed truck when, trash blew into his left eye. Supervisor: mike jefferys
## 930           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
## 931                                                                                    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
## 932                                                                                                                               5/28/2004 11:35 am (fblackmo) employee was working on vehicle when, he hit his forehead on battery box cover. Supervisor: jimmy ammons
## 933            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
## 934        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
## 935                                                                                                                                 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
## 936                                                  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
## 937                                                         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
## 938                                                                                    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
## 939               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
## 940                                                                                                                                  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
## 941                                    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
## 942                                                                           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
## 943                 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
## 944                                                                                                                            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
## 945                                                                        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
## 946                                                                                                                               5/4/2011 10:34 am (fblackmo) employee was working beside highway when wind blew dust into his left eye. Supervisor: michael a. Clinard
## 947          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
## 948                                                                                                     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
## 949                                                                                                                                                             5/5/2010 09:31 am (fblackmo) employee states he experience ringing in both ears. Supervisor: kathy lewis
## 950                                                  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
## 951                                                                              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
## 952                                                                                                            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
## 953                                                                                     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)
## 954                                                                                                           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
## 955                                                                          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
## 956                                                                                                       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
## 957           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
## 958          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:
## 959                                                                                                      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
## 960                                                                                                         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
## 961                       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.
## 962                                                                                       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
## 963                                                          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
## 964                                                                                              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
## 965                                                                                                     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
## 966                                                                          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
## 967           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
## 968                                                                                         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
## 969                                                                                                                                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
## 970                                                                  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
## 971          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
## 972                                                                    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
## 973                               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
## 974                                                                                                                                 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
## 975                                         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
## 976                                                                                   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
## 977                                                                                                                                     6/22/2010 12:17 pm (fblackmo) employee was working in ditch when foreign matter got into his left eye. Supervisor: james lambert
## 978          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
## 979                                                                                 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
## 980          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
## 981            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
## 982                                                                                           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
## 983                                                                          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
## 984                                           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
## 985                                                                                     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
## 986                                                                                                                   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
## 987          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
## 988                                                                                                                                  6/26/2009 03:43 pm (fblackmo) employee hit his head on metal beam while running radio cable in building. Supervisor: sterling baker
## 989                                                                                                                                             6/28/2004 02:13 pm (fblackmo) employee states while conducting surveys he was bitten by a tick. Supervisor: james kimzey
## 990                                                                           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
## 991          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
## 992                                                                                                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
## 993          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
## 994                                 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
## 995                                                                                                                                    6/5/2009 07:20 am (fblackmo) employee states while standing beside truck a bug flew into his left ear. Supervisor: w. B. Crumpler
## 996                                                                                                                        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
## 997           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
## 998                    6/6/2007 02:44 pm (fblackmo) employee was walking down hall towards the office when, she fell face first causing injuries to her left knee, chin, lower lip, top four front teeth, and nose. Supervisor: beth mckay 6/25/2007 04:00 pm (lvaughan)
## 999                                                                                                                 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
## 1000         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
## 1001                                                                                                                                   6/7/2006 02:43 pm (fblackmo) employee was removing face shield when, he felt something in his right eye. Supervisor: l. D. Greene
## 1002                                                                                                                                      6/7/2006 12:54 pm (fblackmo) employee was cutting limbs when, limb sprung up striking him on the nose. Supervisor: mark taylor
## 1003                                                               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
## 1004                                                                                                        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
## 1005                                                          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
## 1006          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
## 1007        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
## 1008                                                                                                            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
## 1009                                    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
## 1010                                         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
## 1011                  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.
## 1012          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.
## 1013                                                                                                                    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
## 1014                                                                              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
## 1015                                                                                                     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
## 1016                                                                  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
## 1017                                                                                                                        7/14/2009 03:08 pm (fblackmo) employee was driving with window down when, foreign matter got into her right eye. Supervisor: marshall holley
## 1018                                                                                                                                                              7/16/2009 09:40 am (fblackmo) employee has experienced hearing loss in right ear. Supervisor: don rich
## 1019                                                                                                               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
## 1020                                                                                                                                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
## 1021                    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
## 1022                                                                                                    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
## 1023          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:
## 1024                                                                                                                                     7/20/2010 04:31 pm (fblackmo) employee was cleaning shop when trash particles got into his left eye. Supervisor: russell ramsey
## 1025         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
## 1026                                                                                         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
## 1027             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
## 1028                                                                                                                         7/22/2009 04:23 pm (fblackmo) employee states sts right ear determined to be work related. Right ear hearing loss. Supervisor: travis mintz
## 1029                                                                         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
## 1030        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
## 1031                                                                                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
## 1032                                                                     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
## 1033                                               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
## 1034                                   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
## 1035          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
## 1036                                                                                                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
## 1037                                                                                                                                7/26/2005 02:18 pm (fblackmo) employee was struck in the face by briar while cutting line for survey. Supervisor: richard d. Hensley
## 1038                                                                                                          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
## 1039                                                                                                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.
## 1040                                                                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
## 1041                     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
## 1042                                                    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
## 1043                                                                                                                7/30/2009 02:29 pm (fblackmo) employee was removing damage signal equipment when, one fell striking employee on the head. Supervisor: jason davidson
## 1044                                                                                                                                              7/30/2009 02:39 pm (fblackmo) employee received a tick bite while working in a wooded area. Supervisor: chuck mcdonald
## 1045                                                                                       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
## 1046                                                                                                                                        7/31/2007 03:02 pm (fblackmo) employee was working with drill when, debris got into his left eye. Supervisor: russell ramsey
## 1047                                                                                                                                  7/31/2007 04:23 pm (fblackmo) employee states years of operating pontoon bridge has damaged hearing. Supervisor: albert strickland
## 1048                                                                                                          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
## 1049          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
## 1050                  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)
## 1051         7/5/2011 03:18 pm (barnes) employee stated some kind of insect(unsure whether it was a bee/wasp or something else). It was flying around the employee. Employee tried spraying it. The insect came directly towards him, and employee side stepped to avoid
## 1052                                                                            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
## 1053                             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
## 1054                                                              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
## 1055                                                                        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
## 1056                                                                                                                            7/8/2008 09:59 am (fblackmo) employee was stung by unknown insect on his forehead while pickingup a sign. Supervisor: larry t. Williford
## 1057                                                             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
## 1058                             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
## 1059                 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:
## 1060                                                         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
## 1061                         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
## 1062                                                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
## 1063                                                                                                                                                                                                             707 sprayed in l eye of EE while in the treatment room.
## 1064                                                                              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
## 1065         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
## 1066                                                                                                                                        8/12/2009 02:04 pm (blgay) employee was chipping welding and hot slag popped into his right eye. Supervisor: tommy culberson
## 1067         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
## 1068                                                                                                 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
## 1069                       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)
## 1070                                                                                             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
## 1071                                      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
## 1072                                                                              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
## 1073              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
## 1074                                                       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
## 1075      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
## 1076                                  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
## 1077         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
## 1078                                                                                                                                          8/16/2006 03:13 pm (fblackmo) employee was operating belt loader when, trash got into his left eye. Supervisor: w. D. Lane
## 1079                                                      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
## 1080                                                            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
## 1081                                                                                                                     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
## 1082                                                                                                                           8/18/2006 02:29 pm (fblackmo) employee was using a jackhammer to bust concrete when, dust blew into his eyes. Supervisor: rodney matthews
## 1083                                                               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
## 1084             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
## 1085                                                                                                                             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
## 1086                                                                                                                        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
## 1087         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
## 1088       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
## 1089         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
## 1090                                                                                                                    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
## 1091                                                   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
## 1092         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
## 1093                                                                                                                            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
## 1094                                                     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
## 1095         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.
## 1096                                                                                                                  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
## 1097                                                                                                                                       8/31/2004 11:50 am (fblackmo) employee states while cutting trees debris flew into his right eye. Supervisor: l. T. Williford
## 1098                                                                                                                              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:
## 1099                                                                                                                       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
## 1100                                                                 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
## 1101                                                                                                                       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
## 1102         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
## 1103         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
## 1104         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
## 1105                                                                                                                           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
## 1106                                                                                                             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
## 1107                                                                     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
## 1108         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
## 1109                         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
## 1110                                                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
## 1111                                                                                                   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
## 1112                                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
## 1113                                                                                                                         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
## 1114         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,
## 1115                                                                     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
## 1116                                          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
## 1117                                                                                                                       9/1/2009 05:35 pm (fblackmo) employee was burning trash when, aerosol can exploded causing burns to his forehead. Supervisor: joey brickhouse
## 1118                                                                  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
## 1119                     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)
## 1120                                                                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
## 1121                                                                                                                                                                9/16/2009 10:52 am (fblackmo) employee claims hearing loss in both ears. Supervisor: mark turlington
## 1122                                                                                                            9/20/2005 09:24 am (fblackmo) employee states while moving work zone sign the long arm thew a limb hitting him in the right eye. Supervisor: r. D. Byers
## 1123                                                                                                                             9/20/2006 09:41 am (fblackmo) employee was sharpening bush axe without proper ppe. Foreign body in right eye. Supervisor: d. R. Summers
## 1124                                        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
## 1125                                                                    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
## 1126                                                                                                                               9/21/2004 11:04 am (fblackmo) employee states while blowing off deck debris flew into his right eye. Supervisor: thomas foster bowser
## 1127                   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
## 1128                                                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
## 1129         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
## 1130         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
## 1131                                                                                                                                        9/22/2006 09:47 am (fblackmo) employee was building a fence when, something got into his left eye. Supervisor: greg mccraken
## 1132                 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
## 1133         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
## 1134                                                              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
## 1135                                                                                                 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
## 1136                                                                                                            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
## 1137            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.
## 1138         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
## 1139                                                               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
## 1140                                                                                                                     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
## 1141         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
## 1142                                                                                      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
## 1143                                                                                                                                  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
## 1144                                    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
## 1145          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
## 1146         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
## 1147         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
## 1148         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
## 1149         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
## 1150                                                                                                                                           9/5/2007 03:09 pm (fblackmo) employee was racking asphalt when, he got too hot and passed out. Supervisor: michael lemons
## 1151                                                                                                                                     9/5/2007 03:49 pm (fblackmo) employee experienced heat exhaustion while walking beside paving machine. Supervisor: ronnie smith
## 1152       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
## 1153                                                                                         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
## 1154                                       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
## 1155                                                                                             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
## 1156        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
## 1157                                           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
## 1158                                                                                                      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
## 1159                                                                                                       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
## 1160                                       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
## 1161                                                                                     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
## 1162                                                         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
## 1163                                                                                                                                                  9/8/2010 03:37 pm (fblackmo) employee was hanging flag when something hit his left eye. Supervisor: lorrie sineath
## 1164                                                                                                              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
## 1165                                                                                                     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
## 1166                                                                                        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
## 1167                                                                                                                                             9/9/2009 12:11 pm (fblackmo) employee was working when he, noticed his upper lip was swollen. Supervisor: thomas bowser
## 1168                                                                                                    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
## 1169                                                                                                                                       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
## 1170                                                                                                                                                                                                                       A arm came worse nad hit a staff in the nose.
## 1171                                                                                                                                    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. ()
## 1172                                                                                                                                                                A bottle of cleaning solution fell off the shelf and cap came off and solution splashed into rt eye.
## 1173                                                                                                                                                                               A bottle of cleaning solution fell off the shelf and solution splashed into EE rt eye
## 1174                                                                                                                                                                                                                         A box in storage closet fell on employee ()
## 1175                                                                                                                                                                                                                            A brush fell and hit EE in her right eye
## 1176                                                                                                                              A cable from computer got caught on another line which caused computer to roll off moving cart, tried to catch computer, fell on head.
## 1177                                                                                                                                                                                   A car was traveling west on third st. Jumped the grass median an hit employee. ()
## 1178                                                                                                                                                                                                   A cargo strap was being hung and pulled loose. Cutbeside left eye
## 1179                                                                                                                                                                                              A child became angry and combative and hit EE's mouth with thier head.
## 1180                                                                                                                                                   A client accidentally hit EE in the eye. EE seen at eastern eye associates, May return back to work on 8/7/09. ()
## 1181                                                                                                                           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.
## 1182                                                                                   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. ()
## 1183                                                                                                                                             A corner flap of cardboard box grazed EE rt eye leaving a red area happened while EE was putting away stock in freezer.
## 1184                                                                                                                                                                                            A crack in the sidewalk caused employee to lose her balance and fall. ()
## 1185                                                                                                                              A crew of four or five employees were working beside one another weedeating some debris around substructure. Debris got into EE's eye.
## 1186                                                                                                                                                  A customer was handing EE a can of gasoline when the can slipped causing some of the gasoline to splash in EE face
## 1187                                                                                                                              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
## 1188                                                                                                                                                                    A foreign object blew into his left eyey while supervising outside recreation segregated inmates
## 1189                                                                                                                                                            A grain of sand blew into EE's right eye while riding an atv on the beach. EE suffered corneal abrasion.
## 1190                                                                                                                                                                                                                          A hot solution sprayed into EE's right eye
## 1191                                                                                                                                                                       A inmate started fighting with another officer and I tried to help and he started hitting me.
## 1192                                                                                                                                                                                            A large tree fell on top of EE's veh causing severe head and neck trama.
## 1193                                                                                                                                                           A lesion appeared on EE right lower cheek down to neck area, due to outbreak of MRSA EE was sent to hosp.
## 1194                                                                                                                   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
## 1195                                                                                                                                                                                                             A minivan ran a stop sign and EE collided with minivan.
## 1196                                                                                                                                                                                                 A moth flew into EE's right ear while she was walking into building
## 1197                                                                                                                                                                                                                 A pair of scissors fell and hit EE in the right eye
## 1198                                                                                                                                                      A patient became combative when they were asked togo to eto for 5 min and the patient pounched EE in the face.
## 1199                                                                                                                                                   A patient became violent. She jerked her leg lose while staff was restraining her and kicked EE beside right eye.
## 1200                                                                                                              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. ()
## 1201                                                                                                                                                                        A piece of metal from a door fell into his eye.... And scratched the underside of his eyelid
## 1202                                                                                                                                                                        A piece of rust that was dislodged from the grill that he was moving, flew into his left eye
## 1203                                                                                                                                                                                                                      A piece of wood chip flew in employee left eye
## 1204                                                                                                                                              A piece of wood hit incadescent light fixture and casing cracked and broke off falling and cut EE on upper left cheek.
## 1205                                                                                                                                                                                                           A pt grabbed another pt's radio and hit EE in the head ()
## 1206                                                                                                                        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
## 1207                                                                                                   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. ()
## 1208                                                                                                                                                                  A resident in ot living areashave conjuntivitis, EE performimg her duties was in contact with htem
## 1209                                                                                                                                                                                                                                      A rock hit EE in the right eye
## 1210                                                                                                                                                                                                                    A rust from underneath case fell in employee eye
## 1211                                                                                                                                                                                                                               A shelf fell striking EE in the mouth
## 1212                                                                                                               A shelf holding various stores items came loose fron the wall after a microscope which appareantly had been supporting it was removed. An empty... ..
## 1213                                                                                                                                                    A small flask with a minute residue of aqueous hydrogen peroxide exploded while worker was removing the solvent.
## 1214                                                                                                                                                  A small insect looked like a sweatbee flew in the inside corner of right eye under lower eye lid and stung eye. ()
## 1215                                                                                                                                                                                                                   A small piece of metal dropped into EE's left eye
## 1216                                                                                                                                                      A spider dropped down from the ceiling on to the left side of my face. It injured me when I slapped him off ()
## 1217                                                                                                                                                                                                         A splash from the chlamydia control bottle in eyesand face.
## 1218                                                                                                                                                       A storm came up and the wind became so strong, it knocked the window out of tower which struck EE inforehead.
## 1219                                                                                                 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. ()
## 1220                                                                                                               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. ()
## 1221                                                                                                                                                                                                              A student's head banged into EE's chin during practice
## 1222                                                                                                                                                       A tree branch, debris hit Dr. Cleary in the right eye while he was waling through high marsh on cms property.
## 1223                                                                                                                                                                                   A truck hit the feed loader two times causing employee to experience whiplash. ()
## 1224                                                                                                 A vehicle following a truck in the oncoming lane coming suddenly turned left in front of the employee's car causing a collision at approximately 45 miles per hour.
## 1225                                                                                                                                                                                                                          A wood splinter fell from head into eye ()
## 1226                                                                                                                                                                                                                                          A wrench fell on EE's head
## 1227                                                 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. ()
## 1228                                                                                                                                                                                                                                       Abrasions to cornea of rt eye
## 1229                                                                                                                        Absconder's saliva landed on employee's face, transporting abscounder to jail, abscounder began coughing and mucus landed on righ arm jacket
## 1230                                                                                                                                                                                                                           Accident while using welding equipment ()
## 1231                                                                                                                                                                              Accidentally hit her lever on bottle of bleach water solution and sprayed in her eyes.
## 1232                                                                                                                                                                                              Accidentally sprayed w/mace while assisting other staff w/use of force
## 1233                                                                                                                                                                                    Accidentially spilled bleach in rt eye when a resident knocked a container over.
## 1234                                                                                                                                                                                               Accidentlly discharged waepon into the ground causing ears to ring ()
## 1235                                                                                                                                                                                         Accidently hit in nose as she participated in diversity simulation progra,.
## 1236                                                                                                                                                                                                                                Accidently hit in nose by a student.
## 1237                                                                                                                           Accompanied inmate to hospital in ambulance. Ems sprayed substance on I/m that flew into banks eyescaused swollen eye lids & face & pain.
## 1238             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 ()
## 1239                                                                                                                                                                                                                                                                Acid
## 1240                                                                                                                                                                                                                            Acrylamide liquid splashed into left eye
## 1241                                                                                                                                                                                      Adjusting cable and fluid in the tractor and accidently wiped face around eye.
## 1242                                                                                                                                                                         Adjusting cover on client when the client spit and saliva landed in corner of right eye. ()
## 1243                                                                                                                      Adjusting window blinds the curtain fell, pulled chair and stood on it rehang curtain. Chair rolledalost balance, fell backwards on the floor.
## 1244                                                                                                                                                                 Adjustment to nitrogen regulator-pressure built upcausing hose to rupture which produced loud sound
## 1245                                                                                                                                                       Administer eye drop to client, client slung head drops/eye fluid hit EE in face. Contact with conjunctivitis.
## 1246                                                                                                                                                                    Administering TB test when solution & possibly blood squirted out and splashed in eyes & face ()
## 1247                                                                                                                                                                                             After EE had clocked she stated that her left eye had become irritated.
## 1248                                                                                                                 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.
## 1249                                                                                                                                                                               After assisting dress resident-escorting to hallway and resident punched below ear ()
## 1250                                                                                                                   After assisting patient w/ bath, staff was placingbath supplies back in patient's cubby. The patientsbath sponge fell onto staff's nose, staff no
## 1251                                                                                                                                   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.
## 1252                                                                                                                                                                                                            After cleaning tower and left upper eyelid began burning
## 1253      After desk had been moved across the room to the right, I moved to unplug the pc wires as the desk was being moved. Exiting the doorway, desk fell on my back and butt and my head and shoulder hit the wall, trapping/pinning me against wall for 3-5 seconds
## 1254                                                                                                                                 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
## 1255                                                                                                                                                                                          After doing drilling, remove goggles and small piece of metal got into eye
## 1256                                                                                                                                                                                    After donating blood, employee passed out, fell and hit her head on the floor ()
## 1257                                                                                                                                                          After employee taught with flashover simulator, hewas cleaning up & rubbed his eye getting somethingin it.
## 1258                                                                                                                                         After escorting juvenile back to his room, the juvenile punched the staff with a closed first on the left cheek and eye. ()
## 1259                                                                                                                                                                   After getting inmates id for write up, he stated he was tired of this s*** and began swinging. ()
## 1260                                                                                                                    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.
## 1261                                                                                        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. ()
## 1262                          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. ()
## 1263                                                                                                              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.
## 1264                                                                                                                                                           After mopping up the contents of a broken bottle, the employee complained of irritated eys and dizziness.
## 1265                                                                                                                                                                            After parking state vehicle, fire extingisher exploded-- contents went into left eye. ()
## 1266                                                                                                                                                                                                     After pepper spray training, EE began having problems with eyes
## 1267                                                                                                                                                                                                            After pepper spray training, EE's eyes continued to burn
## 1268                                                                                                                                           After performing cell search inmate assaulted a fellow officer. While assisting officer I was hit in the back of head. ()
## 1269                                                                                                                                                              After performing cpr (mouth/mouth) on I/m it was determined that there was blood in the I/m's mouth ()
## 1270                                                                                                                                                                                       After performing shop inspection, rt eye became iritated, something got in it
## 1271                                                                                                                                                                After placing client in tub released shoulder, client hit EE in mouth caused EE to swallow her tooth
## 1272                                                                                                                                                                                  After placing iv pump in patient I stood up & hit top o fhead under metal cabinet.
## 1273                                                                                                                                                                                                After recertifying with shot gun EE noticed hearing loss in left ear
## 1274          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. ()
## 1275                  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. ()
## 1276                  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. ()
## 1277        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 ()
## 1278                                                                                                                                                                                                After spraying a suspect with pepper spray-spray got into EE's eyes.
## 1279                                                                                                                                                                                                    After taking a TB shot he became short of breath & eyes swelling
## 1280                                                                                                                                                                        After taking morning meds, pt suddenly and unprovoke slapped EE on the right side of face ()
## 1281                                                                                                                              After talking with front desk staff employee turned to leave and was poked in the eye by an artificial flower arrangement. Left eye ()
## 1282                                                                                                                                                                        After walking through the fabrication area of sign plant, his right eye became irritated. ()
## 1283                                                                                                                                                              After washing his hands, his feet went out from under him & he hit his head on the side of the toilet.
## 1284                                                                                                                                         After work (it was raining heavily), employee attempted to open car door, foot slipped and she hit head against side of car
## 1285                                                                                                                                                                                    After working with metal in shop something fell in eye from clothing or body. ()
## 1286                                                                                                                                                                                             Agent was working a fire scene and something flew into his left eye. ()
## 1287                                                                                                                                                                                               Aggressive client kicked EE in face when he bent down to pick up keys
## 1288                                                                                                                                                                                                          Aggressive pt attacked EE, hitting EE in left cheek/eye ()
## 1289                                                                                                                                                                                                                      Aggressive pt hit EE in face multiple times ()
## 1290                                                                                                                                                                                                                             Aggressive pt hit EE in the left eye ()
## 1291                                                                                                                        Aggressive pt removed from restraints as ordered by treating doctor. Patient continued to be defiant and aggressive. Pt attacked staff/punch
## 1292                                                                                                                                                                                               Agitated patient grabbed EE glasses and then scratched EE on the face
## 1293                                                                                                                                                                                                                                Agitated patient hit her in the nose
## 1294                                                                                                                                                                                                 Agitated pt hit employee in face causing laceration under left eye.
## 1295                                                                                                                                                                                              Agitated resident hit EE on right side of the facestriking eyeglasses.
## 1296                                                                                                                                                                                              Air jet blew dust underneath EE glasses causing irratation to left eye
## 1297                                                                                                                                                                                       Airborn object in eye from foreign material machine while grading peanuts. ()
## 1298                                                                                                                                            Aisle caging wire-mesh panel fell on head and pushed neck down causing it to fall approx. 3' andhit employee on the head
## 1299                                                                                                                                                        Alarm testing occured during dress time while EE was in her dressroom. Injury in right ear due to the noise.
## 1300                                                                                                                                                                                            Alleged that he was sprayed in the face with oc pepper spray in training
## 1301                                                                                                                                                                                                                      Alleged trama to ears due to noise exposure ()
## 1302                                                                                                                     Alleges after exiting an electrical manhole, a malfunctioning high-voltage oil switch was re-energized and exploded; burning his face and arms.
## 1303                                                                                                                                     Alleges after handcuffing a hostile subject and assisting him into the patrol car; the arrestee spit in his face and right eye.
## 1304                                                                                                                                                                        Alleges after loading traffic cones on a truck the cones fell off the truck and hit his nose
## 1305                                                                                                              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
## 1306                                                                                                                                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.
## 1307                                                                                                                                               Alleges cleaning a table with windex squeezed the trigger to spray windex on the table and sprayed the windex in eyes
## 1308                                                                                                                                                                                                       Alleges cutting keys and later felt a chip in his left eye ()
## 1309                                                                                                                                                                                                      Alleges escorting inmate to cell and was head butted in eye ()
## 1310                                                                                                                                                                                                   Alleges handling animal feed; later his left eye started to hurt.
## 1311                                                                                                                                                                                             Alleges he was escorting a nurse & inmate sprayed liquid in his face ()
## 1312                                                                                                              Alleges he was standing between two bldgs while a malfunctioning oil switch exploded when re-energized; thrown onto a retaining wall hitting his head.
## 1313                                                                                                                                                                                                                 Alleges hit head on arm of spotlight on tower #2 ()
## 1314                                                                                                              Alleges holding a ladder outside a manhole for exiting co-workers; a malfunctioning oilswitch was re-energized and exploded; burning his face and arms
## 1315                                                                                                                                                                                                                      Alleges inmate reach out of cage and hit me ()
## 1316                                                                                                                                                                                      Alleges lifted off the ground & head hit the mat during a training excerise ()
## 1317                                                                                                                                Alleges mopping ladies rest room and slipped on floor-attempted to break her fall and her eyeglasses struck side of face causing cut
## 1318                                                                                                                                                                                                  Alleges mopping water, slipped hit her head, right side on step ()
## 1319                                                                                                                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.
## 1320                                                                                                                                                                                Alleges opening a cabinet door in the kitchen area to obtain sugar for a cup of tea.
## 1321                                                                                                              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
## 1322                                                                                                                                                       Alleges pouring chemicals in a floor machine; he then noticed the right side of his mouth/lips begin to swell
## 1323                                                                                   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. ()
## 1324                                                                                                                         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.
## 1325                                                                                                                                                                                  Alleges rash on lip several days after weed eatinglater developed into open wound.
## 1326                                                                                                                                                                                                      Alleges removing ceiling tile; some debris fell into left eye.
## 1327                                                                                                                                                                        Alleges removing ceiling tiles; debris from the ceiling tile fell off into his hair and eye.
## 1328                                                                                                                 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.
## 1329                                                                                                                                                                                              Alleges resetting toilet reached in to push button head struck pipe ()
## 1330                                                                                                                                        Alleges shaking acan of adhesive to repair a transition strip; the can ruptured and the adhesive sprayed into his right eye.
## 1331                                                                                                               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.
## 1332                                                                                                                      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.
## 1333                                                                                                                 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.
## 1334                                                                                                                                                                                                                       Alleges spit in face & both eyes by inmate ()
## 1335                                                                                                                            Alleges standing in a recycle container to compact it; his weight shifted the container slid, he hit his head and shoulders on the wall.
## 1336                                                                                                                         Alleges that while supervising inmates in welding room at cannery, he apparently burnt eyes while looking at the work being done by inmates
## 1337                                                                                                              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. ()
## 1338                                                                                                                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.
## 1339                                                                                                                       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.
## 1340                                                                                                                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.
## 1341                                                                                                                                                   Alleges when picking up trash near the wood area of lot 21, he was struck by tree branch/limb in his left eye. ()
## 1342                                                                                                                                                Alleges while replacing a shower drain, the tool slipped causing his fist to strike jaw chipping his front tooth. ()
## 1343                                                                                                                                                                                                 Alleges while sawing board small chip of wood blew into his lt eye.
## 1344                                                                                                                                Alleges while unloading the 55 gallon drum from the truck the hand truck flipped over, hit him in the head and causing a laceration.
## 1345                                                                                                                                                                         Alleges while walking through bldg j, walked undermechanical lift & struck his head on lift
## 1346                                                                                                                                                             Allergia apparently became attached to hjand and rubbed on to eye area by hand and caused eye to swell.
## 1347                                                                                                                                                                 Allergin apparently became attached to hand and was rubbed onto eye by hand causing rt eye to swell
## 1348                                                                                                                                                                                                                  Altercation arose between EE and inmate, both eyes
## 1349                                                                                                                                                                                                    Altercation with inmate employee was hit on left side of face ()
## 1350                                                                                                                                       Alyce was taking down the satellite work station off the closet shelf, when the bar came out and hit her under the right eye.
## 1351                                                                                                                                                                                                                    Amanda became dizzy and fell. Rt eye & rt elbow.
## 1352                                                                                                                                                                 Amy mastin was punched in the face with a closed fist by a juvenile she was attempting to restrain.
## 1353                                                                                                                                                                             An aggressive client hit EE on the left side of his head, behind his ear, with his fist
## 1354                                                                                                                                                                   An aggressive patient hit EE on lt side of head with her fist. Mild contusion lt temporal region.
## 1355                                                                                                                                                                              An aggressive patient slammed door causing both left and right ear drums to be muffled
## 1356                                                                                                                                                                                             An agitated patient attacked EE and other staff. Injured leg, forehead.
## 1357                                                                                                                                                                                                      An eppendorf tube filled with liquid n2 exploded &hit my r eye
## 1358                                                                                                                     An indiviudal aggressed towards employee and while employee was placing indiviudal in a t-hold, individual continuously headbutted employee. ()
## 1359                                                                                                                                                                                          An indiviudal was scratching, pinching and grabbing at employee's face. ()
## 1360                                                                                                                                                                                                              An inmate hit EE on his side of the face with an elbow
## 1361                                                                                                                                                                                                                   An inmate hit him on the left side of his head ()
## 1362                                                                                                                                                                  An inmate slipped out of his cuffs and I was hit on the right of my face to the left of my ear. ()
## 1363                                                                                                                                                                                                                             An inmate spit in the officer's face ()
## 1364                                                                                                                                                                             An inmate struck employee with fist on (r) side ofhead-temple area, (l) eye-cheek area.
## 1365                                                                                                                                                           An inmate threw a cup of coffee in her face, then was hit in her face by an inmate with his clodsed fist.
## 1366                                                                                                                                                           An inmate threw a garbage can lid and struck ofc. Kelley in the back of the head at the base of his skull
## 1367                                                                                                                                                                                                                               An inmate threw a liquid in EE's face
## 1368                                                                                                                                                                                                      An inmate threw an unknown substance in the officer's face. ()
## 1369                                                                                                                                                                              An inmate threw urine on an nurse asst. Coming in contact w. Face and rt side of body.
## 1370                                                                                                                                                                      An inmate was being escorted to segregation & spit in his face, getting in his nose & mouth ()
## 1371                                                                                                                                                                                           An inmate was talking to EE and the inmate's saliva flew into EE's rt eye
## 1372                                                                                                                     An inmate was throwing a plastic bag of trash intotrash container when liquid from bag splased into EE's left eye; experienced burning/stinging
## 1373                                                                                                                                                           An inmate was throwing rocks-EE informed inmate tostop-EE was struck in forehead by rock thrown by inmate
## 1374                                                                                                                    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 ()
## 1375                                                                                                                                  An unknown object flew into EE left eye when co-worker moved a burnt mattress spring at scene of investigation of burnt dead body.
## 1376                                                                                                                                                               Another EE (hct) sprayed room deodorizer in hallway, Ms. Whaley reports an allergic reaction to spray
## 1377                                                                                                    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. ()
## 1378                                                                                                                                                                Another EE was cleaning with chemical that was sprayed near fan causing chemical to go on EE's face.
## 1379                                                                                                                       Another EE was opening container and sat containerdown on table. Contents splashed into injured eyesswelling, irritation and bruised left eye
## 1380                                                                                                                                                                     Another EE was swatting wasp-EE move to right and lost balance-fell hitting head on door facing
## 1381                                                                                                                               Another chaplain was pumping gas. Line became kinked & when straighten hose line gas continued pumping & shot up into air & into eyes
## 1382                                                                                                                                     Another employee bumped into EE causing this EE toslip and fall on wet floor. Floor wet from being mopped. EE hit side of head.
## 1383                                                                                                                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. ()
## 1384                                                                                                                                                                    Another employee threw a can of checmical at carl jones. Some of the chemicals got into his eye.
## 1385                                                                                                                                                Another officer dropped some tylenol on floor. Bent down to pick up tylenol, bumped head on door stop. Injured head.
## 1386                                                                                                                                 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
## 1387                                                                                                                                                                                                                        Another veh ran stop light and hit EE's veh.
## 1388                                                                                                                                                                                 Another worker was blowing debris off a chair, & some debris went into EE left eye.
## 1389                                                                                                                                   Antonella was changing the top of a temed bottle and some temed sprayed toward her eye. Her glasses blocked most of the temed. ()
## 1390                                                                                                                                                                                                          Appears that a piece of ceiling material fell intoee's eye
## 1391                                                                                                                                                                               Applicant came into office for interview with pinkeye-next day EE contacted pink eye.
## 1392                                                                                                                                                                                                                                          Applying cleaning solution
## 1393                                                                                                                                                          Applying handcuff to inmate. Door opened and inmate advanced toward EE striking him in left cheek w/a fist
## 1394                                                                                                                                                                                                                                              Applying soil fumigant
## 1395                                                                                                                                                                       Applyinga physical restraint, me and resident fell. I hit my head on a table and cut my head.
## 1396                                                                                                                                                                                                   Approached by patient and punched on face/both sides near jaw. ()
## 1397                                                                                                                                                                             Approached cell where inmate was housed as presented his medications, spit in EE's face
## 1398                                                                                                                                                                                                        Arm on lift of food truck broke and fell-EE has head injury.
## 1399                                                                                                                 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
## 1400                                                                                                                                                    Arranging boxes of supplies in supply closet & while struggling w/heavy box hit corner of her eye on side of box
## 1401                                                                                                                           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
## 1402                  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. ()
## 1403                                                                                                                                                                       As EE bent client's head down to shave his face, client pushed head back & spit in EE's face.
## 1404                                                                                                                                   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. ()
## 1405                                                                                                                                      As I was attempting to sit in chair, it rolled backwards and I fell, striking tail bone and back of head on hardwood floor. ()
## 1406                                                                                                                                                                                        As a result of a brain tumor caused by long term exposure to chemical fumes.
## 1407                              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 ()
## 1408                                                                                                                                                                             As employee was folding up ladder he had been using, he felt something in his left eye.
## 1409                                                                                                                                                                 As inmate was being placed in cell, he was irate. He was left in restraints and then spit on me. ()
## 1410                                                                                                                                                                                   As officer approached the cell door, inmate threw an unknown substance on him. ()
## 1411                                                                                                                   As part of training, received oc pepper spray class& exposure. After exposure to pepper spray, claimsto have very senisitive scalp, lips, face, e
## 1412                                                                                                                                                                    As walking into door at office building; had moth to fly into ear. List injuries as: left ear ()
## 1413                                                                                                                                                                                                         Asaaulted by patient-hit in nose, face and back of neck. ()
## 1414                                                                                                                                                                                                                                                    Asbestos in eyes
## 1415                                                                                                                                                                  Asked inmate to leave library. Inmate was being hostile & violent. Inmate struck me under left eye
## 1416                                                                                                                                                                                   Asking I/m if wanted to come out for shave and I/m threw urine and feces on EE ()
## 1417                                                                                                                                                                                 Aspirating mosquito's. Mouthpiece of aspirator chipped bottom middle left tooth. ()
## 1418                                                                                                                                                                                                                                            Assalted by an inmate ()
## 1419                                                                                                                                                                                                                                          Assaulted by a juvenile ()
## 1420                                                                                                                                                                               Assaulted by an inmate when inmate struck him in the head area with a closed fist. ()
## 1421                                                                                                                                                                                                  Assaulted by an inmate, while passing cleaning supplies to him. ()
## 1422                                                                                                                                                                                                                                              Assaulted by inmate ()
## 1423                                                                                                                                                                                                                           Assaulted by inmate w/closed fist to face
## 1424                                                                                                                                                                                                              Assaulted by inmate, hit in head with metal bracket ()
## 1425                                                                                                                                                        Assaulted by student w/a broom handle while tryingto assist co-worker who was being attacked by same student
## 1426                                                                                                                                                         Assembly of overhead equipment, small metal particle fell into right eye. Glasses were worn during assembly
## 1427                                                                                                                                        Assessing self injurious pt, standing in doorway of his bedroom, pt approached EE and punched him in the left temple area ()
## 1428                                                                                                                                                                                    Assigned to tower 1 & something flew out of air conditioner & hit EE in left eye
## 1429                                                                                                                                                              Assisted in a call extraction of an inmate while restraining inmate someone's knee hit EE in the rteye
## 1430                                                                                                                                                                                                            Assisted in use of force in which an inmate spit in head
## 1431                                                                                             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. ()
## 1432                                                                            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). ()
## 1433                                                                                                              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.
## 1434                                                                                                                                                                      Assisting 2 cna's stand resident up to change clothes. Resident punched in l. Side of face. ()
## 1435                                                                                                                                                                                           Assisting EE in exhaust repair. Piece of metal flew in eye causing injury
## 1436                                                                                                                                                                    Assisting a nurse with medication when inmate threw an unknown fluid/yellow liquid in my face ()
## 1437                                                                                                                                                 Assisting another officer during a fight. The suspect scratched the lt side of EE's face/cheek with her fingernails
## 1438                                                                                                                                                                 Assisting another staff member in performing cpi hold on a patient, patient headbutted employee. ()
## 1439                                                                                                                                                                      Assisting change a client-holding clients hands client head butted EE in nose and upper mouth.
## 1440                                                                                                                                                                                    Assisting change patients clothes-patient punched in left side of nose/cheek. ()
## 1441                                                                                                                                                                                                     Assisting client exit bathroom, client slapped employee in face
## 1442                                                                                                                                                  Assisting client in dining room adn client got agitated and hit employee in the mouth/jaw. Pain in lt front tooth.
## 1443                                                                                                                                                                                            Assisting client in getting ready for bath, clientslapped EE in the face
## 1444                                                                                                                                                                     Assisting client in putting on clothes, client struck EE on left side of nose, breaking glasses
## 1445                                                                                                                                                                                                          Assisting client into bath tub, client kicked EE in rt eye
## 1446                                                                                                                                                                                                                  Assisting client to toilet-client hit EE in lt eye
## 1447                                                                                                                                                                                             Assisting client w/dressing when client kicked her in left side of face
## 1448                                                                                                                                                                           Assisting client w/toileting. Assisting w/pull up brief. Urine splashed into emp left eye
## 1449                                                                                                                                                                                                     Assisting client with bed making and he shoved her into wall ()
## 1450                                                                                                                                  Assisting client with dressing; client began to swinging arms wildly and hit EE in the right eye causing pain to the right eye. ()
## 1451                                                                                                                             Assisting client, client could not fasten belt; employee tried to assist when the client laughed and spit went in right eye and on lip.
## 1452                                                                                                                                                                                                   Assisting client; client swung hand; hit left eye; saliva in eye.
## 1453                                                                                                                                                                                                Assisting co-worker to change diaper, urine splashed in right eye ()
## 1454                                                                                                              Assisting consumer with pulling off wet clothing, consumer became unsteady, EE reached for consumer to prevent falling. EE stood up & hit head on sink
## 1455                                                                                                                                                                                               Assisting dress resident-putting pants on-kicked in jaw and mouth. ()
## 1456                                                                                                                  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.
## 1457                                                                                                                       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. ()
## 1458                                                                                                                                                                                                         Assisting in giving client a bath; client spit in right eye
## 1459                                                                                                                                                                                         Assisting in maintaining control of inmate when she spit in face and eye ()
## 1460                                                                                                                                                      Assisting individual from dining room to bathroom, individual tripped and fell to ground on top of employee ()
## 1461                                                                                                                                                                                      Assisting lay resident down in bed-removing shoes-kicked in r. Side of nose ()
## 1462                                                                                                                                                            Assisting mental health inmate with clean clothes, inmate attacked cliamant and hit him upside his head.
## 1463                                                                                                                   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
## 1464                                                                                                                                                                                                            Assisting patient brush teeth-spit toothpaste in face ()
## 1465                                                                                                                                                                         Assisting patient open box of milk and for no reason the patient punched staff in mouth. ()
## 1466                                                                                                                                                                                                           Assisting patient shave-nicked chin-spit in emp. Face. ()
## 1467                                                                                                                                                                                          Assisting patient with check and change-patient headbutted in r. Cheek. ()
## 1468                                                                                                                                                                                           Assisting placing pt in restraints, pt spat in EE's face - no exposure ()
## 1469                                                                                                                                                                                                    Assisting placing pt on transport board, pt spat in EE's face ()
## 1470                                                                                                                                                                 Assisting provide a bath for patient-patient became aggressive and scratched r. Cheek below eye. ()
## 1471                                                                                                                                                                          Assisting pt with forced bath, pt began scratching EE and spat in EE's face-no exposure ()
## 1472                                                                                                                                                                                        Assisting pt with meds, pt bit EE finger and head butted EE over left eye ()
## 1473                                                                                                                                                                                      Assisting pt with shaving. Floor was wet & EE slipped & hit head on metal rail
## 1474                                                                                                                                                                                                       Assisting put resident into bed-resident kicked in l. Jaw. ()
## 1475                                           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. ()
## 1476                                                                                                                                                                                             Assisting resident get ready for shower-resident headbutted in nose. ()
## 1477                                                                                                                                                               Assisting resident in Dr-Upset-attempted to throw a cup over head-cup hit employee on r. Lower lip ()
## 1478                                                                                                                                                                                                     Assisting resident in bathroom-resident punched in l. Cheek. ()
## 1479                                                                                                                                                                          Assisting resident intoito. Resident picked up wooden wedge and hit staff lt side of head.
## 1480                                                                                                                                                                                                                     Assisting resident to bathroom-hit in l. Eye ()
## 1481                                                                                                                                                                                                           Assisting resident with bath, when resident hit EE in eye
## 1482                                                                                                                                                                                                      Assisting resident with self care. Res. Scratched EE left eye.
## 1483                                                                                                                                                                 Assisting resident-raised head of bed- when stood up-resident struck in face-finger poked r. Eye ()
## 1484                                                                                                                                                                               Assisting resident-rsident swung arms hitting emp. On left and right side of face. ()
## 1485                                                                                                                                                               Assisting staff in maintaining control of an inmate when inmate spit in face and possibly in eyes. ()
## 1486                                                                                                                                        Assisting staff with meds on g block. Inmate threw a clear liquid substance on his left arm, face and uniform chest area. ()
## 1487                                                                                                                                    Assisting student with daily hygiene care and student became angry and pushed employee then slapped her ears with both hands. ()
## 1488                                                                                                                                                                           Assisting visitor with boat winch handle when winch came loose sticking EE in the nose ()
## 1489                                                                                                                                        Assisting with adl's resident turned around & slap me across the face. Then resident came out in the hall and said sorry. ()
## 1490                                                                                                                                                                  Assisting with arrest, offender hit officer in face/nose with both hands while resisting arrest ()
## 1491                                                                                                                                                          Assisting with bending metal on metal brake machine when lock released hitting him on left side of head ()
## 1492                                                                                                                                                            Assisting with brush clearing operation near wood chipper. Flying debris from chipper lodged in lefteye.
## 1493                                                                                                                                                                                                                         Assisting with dressing client hit staff ()
## 1494                                                                                                                                                                                         Assisting with escort of hostile inmate and she spat in sergeant's face. ()
## 1495                                                                                                                                                                                 Assisting with getting inmates off ground. When bitten on the right side of face ()
## 1496                                                                                                                                                                   Assisting with prescribed burn operation in woodedarea and was struck in the eye by a tree branch
## 1497                                                                                                                                                                                 Assisting with putting patient in cpi hold, patient punched employee in the face ()
## 1498                                                                                                                                                                         Assisting with putting restraints on patient, felland hit head on door. Laceration on head.
## 1499                                                                                            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. ()
## 1500                                                                                                                                                                                        Assisting with resident-resident agitated-hit employee in nose with fist. ()
## 1501                                                                                                                                                                                                   Assisting with urinalysis and got a sharp pain in my right eye ()
## 1502                                                                                                                                                                                                                                            Assulted by an inmate ()
## 1503                                                                                                                                                                                                                Assulted by an inmate, inmate spit on the officer ()
## 1504      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 ()
## 1505                                                                                                                                                                                                     At basic training was going to vehicle and tripped and fell. ()
## 1506                                                                                                                                                                                                 At canteen, correctional duties; inmate struck staff with a cane ()
## 1507                                                                                                                                             At end od distillation to remove thionyl chloride from reaction flask, explosion happened. Small glass pieces cut face.
## 1508                                                                                                                                                                                      At sampson corr inst. In control tower when a spider bite her on her lt eyelid
## 1509                                                                                                                                                                                                                                       Attacked by inmate in kitchen
## 1510                                                                                                                                      Attacked by inmate while supervising morning meal--sgt. Lori a diamond was assaulted with a razor to the neck by an inmate. ()
## 1511                                                                                                                                                                                                     Attacked by inmate. Shoved head against window several times ()
## 1512                                                                                                                                                                                                                                                 Attacked by patient
## 1513                                                                                                                                                                                                                                              Attacked by patient ()
## 1514                                                                                                                                                                                            Attacked by patient from behind, hit EE on r shoulder, r side of face ()
## 1515                                                                                                                                                                                                                 Attacked by patient. Patien hit her in nose w/ fist
## 1516                                                                                                                                                                          Attacked from behind by patient who slammed him into wall causing laceration to his eyelid
## 1517                                                                                                                                                                           Attemping to gas up track car when the pressure from the tank sprayed gas in his eyes. ()
## 1518                                                                                                                                                    Attempted to assist co-worker from being attacked by client-in process, client head butted employee in right eye
## 1519                                                                                                                                                 Attempted to assist resident to stand from sitting position on floor - became agitated- hit in l. Jaw with fist. ()
## 1520                                                                                                                                               Attempted to detain and cuff inmate and inmate snatched away. He then grabbed my head & hit it up against the wall ()
## 1521                                                             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. ()
## 1522                                                                                                                                                                                                      Attempted to redirect client - client punched employee in nose
## 1523                                                                                                                                                             Attempted to redirect patient by grabbing hat-aggravated patient-patient scratched/hit in face/neck. ()
## 1524                                                                                                                                                                         Attempted to use oc pepperspray on inmate outside; wind blowing caused spray to get in eyes
## 1525                                                                                                                           Attempting gain access into driver compartment of a wrecked car, by striking the windshield with baton. Glass shards flew into EE rt eye.
## 1526                                                                                                                                                                       Attempting to assist another staff member who was being assaulted. He was assaulted by inmate
## 1527                                                                                                                                   Attempting to avoid stepping in wet wax on floor located in voc rehab area. Misstepped & bumped head on corner of hanging cabinet
## 1528                                                                                                                                                                                                     Attempting to close window in d-dorm memo board hit her head ()
## 1529                                                                                                                                                         Attempting to counsel juvenile about negative behavior when she hit staff on left temple and head with fist
## 1530                                                                                                                                                                                                 Attempting to escort inmate back to his cell. He spat on my face ()
## 1531                                                                                                                                                               Attempting to get inmates out for school when an inmate lunged at her striking her in lower chin area
## 1532                                                                                                                                                                                                        Attempting to give client meds and client hit EE in the nose
## 1533                                                                                                                                  Attempting to handcuff inmate, inmate struck officer in the face on the left side repeatedly. EE sustained psychological injuries.
## 1534                                                                                                                                        Attempting to handcuff subject, in the process subject elbowed EE in lower jaw causing EE to chiptooth on bottom right side.
## 1535                                                                                                                                                                                                          Attempting to interact with client and he grabbed staff ()
## 1536                                                                                                                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
## 1537                                                                                                                                                                                    Attempting to move student desk. Book shelf slipped off desk & struck EE in head
## 1538                                                                                                                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
## 1539                                                                                                                       Attempting to place subject in jail. Subject refused to take all items from his pockets. Began removing items from pockets was struck in nose
## 1540                                                                                                                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.
## 1541                                                                                                                                                                                  Attempting to put patient in mechanical restraintspatient punched hct in right eye
## 1542                                                                                                                                            Attempting to put patients shoes on-upset-kicked foot contacting with employee's l. Eyelid, check and bridge of nose. ()
## 1543                                                                                               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 ()
## 1544                                                                                                                                                                              Attempting to restrain a juvenile, the juvenile hit employee in the face with his fist
## 1545                                                                                                                       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
## 1546                                                                                                                                                           Attempting to restrain an out of control juvenile when the student slammed his forehead into EE's forhead
## 1547                                                                                                                                        Attempting to restrain cat a vet student lost control and cat escaped to floor. Attempting to capture cat when EE was bitten
## 1548                                                                                                                                                                Attempting to restrain inmate and her punched EE in the face & in the back of he head, stated EE. ()
## 1549                                                                                                                                     Attempting to restrain resident & while holding him patient patient was hitting him in head. C/o pain in neck, head & shoulders
## 1550                                                                                                                                         Attempting to serve order for arrest when offenderstruck officer in face knocking officer's glasses to ground breaking them
## 1551                                                                                                                                                                                                                 Attempting to sit down fell out hit head on wall ()
## 1552                                                                                                                                                       Attempting to take an inmate to floor & left side of face brushed wall causing small puncture to hisupper lip
## 1553                                                                                                                                                                                         Attempting to take picture at a crime scene, the strap poked her in the eye
## 1554                                                                                                                                          Attempting to unplug radio to go home, I bumped a ladder which fell into a weedeater & the weedeaterfell onto my face/eye.
## 1555                                                                                                     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. ()
## 1556                                                                                                                                     Attending combative hypoglycemic inmate. While trying to get him to swallow glucose gel, he spit saliva and blood in my eye. ()
## 1557                                                                                                                                                                        Attending pepper spray training. Was sprayed with pepper spray and had allergic reaction. ()
## 1558                                                                                                                                      Attending state ncflex siminar. While walking around hotel swimming pool area, gust of wind blew abrasive material into rt eye
## 1559                                                                                                                                                                                    Audio shows change in threshold reading since last tested one year ago. Hearing.
## 1560                                                                                                                                                                                                                                              Automobile accident ()
## 1561                                                                                                                                                                                         Automobile accident on the way to work causing head injury and ankle injury
## 1562                                                                                                                                                                  Backing backhoe & placing right finger near e prong of roaring river when ufo hit him in right eye
## 1563                                                                                                                                              Backing out property room w/2 bags inmate propertydoor closing & she fell backwards hitting head, back & elbow on wall
## 1564                                                                                                                                                                                                                               Backpack blower hit shovel which fell
## 1565                                                                                                                                                                                      Basketball hit EE in face during facility recreation period in university gym.
## 1566                                                                                                                                                                                                       Bathing patient, patient became agitated & hit EE in left eye
## 1567                                                                                                                                                                                                                       Bathing patient-patient punched in r. Jaw. ()
## 1568                                                                                                                                                                                                          Bathing resident & resident hit EE in nose fracturing nose
## 1569                                                                                                                                                                Battery compartment exploded when officer attempted to start motor causing loss of hearing in rt ear
## 1570                                                                                                                                                                                  Became aggressive with staff and scratched them when told he was going to work. ()
## 1571                                                                                                                                                                                      Became hoarse at work, cleared up at home, came to work became short of breath
## 1572                                                                                                                                              Became light headed; left ribs hurt; sat down or stooped down on the floor, blacked out and hit back of head on floor.
## 1573                                                                                                                                                                                                                        Became overheated and dizzy working in dorm.
## 1574                                                                                                                                                                                           Beckoning for resident to come, had papers in hand, papers went in rt eye
## 1575                                                                                                                   Bedding box fell off machine and splashed. Blower turned on dust hit top of eye, left. While adjusting bedding dispenser control eye. Left eye ()
## 1576                                                                                                                                                    Bee nest was interrupted by employee working in field and he was stung multiple times. Had an allergic reaction.
## 1577                                                                                                                                                                                                                                                Bee sting to face ()
## 1578                                                                                                                                                                                                                                            Bee stung EE on left eye
## 1579                                                                                                                                                                                                         Bee stung employee in the l ear while digging sewer line ()
## 1580                                                                                                                                                                               Began to feel light headed and weak while emptyingtrash in bldg. Smelled strange odor
## 1581                                                                                                                                                                                 Beginning to re-enter the dt office and staff let go of door hitting me in mouth ()
## 1582                                                                                                                                                                                                      Being handed tools/equip overhead, debris got into left eye ()
## 1583                                                                                                                 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.
## 1584                                                                                                                                                             Bending brackerts for power supply and bracket broke. Hitting the pipe in the forehead and cutting head
## 1585                                                                                                                                                                                   Bending down in cage removing boxes and lid of cage fell and hit back of head. ()
## 1586                                                                                                                                                                                                    Bending down to get papers, leaned up, hit nose & r eye on shelf
## 1587                                                                                                                                                                                           Bending down to pick up cup, raised up and hit head on top of courier box
## 1588                                                                                                                                                                                                          Bending down to pick up keys and hit head on door hinge ()
## 1589                                                                                                                                        Bending down to put paper towel in trash can. Straightening back up the rt side of her face struck the paper towel dispenser
## 1590                                                                                                                                                                                                              Bending down to turn on heater and hit head on pipe ()
## 1591                                                                                                                                                                   Bending down. Sliding water cooler to rear of truck & when stood up hit his head on support brace
## 1592                                                                                                                                                                                        Bending over cleaning drawer, stood up and hit head on open cabinet door. ()
## 1593                                                                                                                                                                                   Bending over client when the client reached towards EE face and scratched EE's ()
## 1594                                                                                                                                                                        Bending over looking under desk and when EE stood up hit top of head on the tool cabinet. ()
## 1595                                                                                                                                                                                                         Bending over to lift table. Raised up hit head on steel bar
## 1596                                                                                                                                                                            Bending over to pick up a paper towel off the floor and I bumped my face on the desk. ()
## 1597                                                                                                                                                                    Bending over to pick up an ink pen which he had dropped, hit his head on corner of sick call box
## 1598                                                                                                                              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
## 1599                                                                                                                                                                  Bending over to pick up paper towel off floor in ladies room, was hit by incoming door opening. ()
## 1600                                                                                                                                                                   Bending over to unhook chain from around tree, a limb from the tree flipped across his right eye.
## 1601                                                                                                                                                                 Bending over to unlock lock, struck his head on wire tie protruding from fence in center sally port
## 1602                                                                                                                                                                      Bending to go under counter to get napkins & didn't realize her head was that close to counter
## 1603                                                                                                                                                                                       Bent down and turned head and was struck by student from behind neck and head
## 1604                                                                                 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) ()
## 1605                                                                                                                              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 ()
## 1606                                                                                                                                                                                             Bent down to lock brakes on wheelchair-patient hit/struck on r. Jaw. ()
## 1607                                                                                                                                                                   Bent down to pick up trash from floor - raised up - hit head corner of fire extinguisher cabinet.
## 1608                                                                                                                                                           Bent down to put 3 boxes on handcart, handle came forward & hit me on rgt side of face, (nose & undereye)
## 1609                                                                                                                                              Bent down to tie her shoe while in female staff restroom. When she stood up she hit her forehead on paper towel holder
## 1610                                                                                                                                                                                                  Bent down when raising up hit head on lock and hasp on building ()
## 1611                                                                                                               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.
## 1612                                                                                                                                                                              Bent over to file something under cabinet & when leaned up, head struck counter corner
## 1613                                                                                                                             Bent over to pick up pen off floor, back spasmcausing staff to go backwards falling against door frame striking right side of forehead.
## 1614                                                                                                                                                                                                            Bent over to pick up printing job and hit head on shelf.
## 1615                                                                                                                                                                                                       Bent over to pick up wash cloth and hit head on towel rack ()
## 1616                                                                                                                                                                                Bent over to pull file and metal tab insert hit forehead causing a gash on forehead.
## 1617                                                                                                                                                                                                      Bent over to put shoes on and bumped head on corner of counter
## 1618                                                                                                                                                                                               Bent to pick up cd which had fallen and hit head on corner of desk ()
## 1619                                                                                                                                                                       Bent under desk to retrieve is number on computer, bump her head and fell on her shoulder. ()
## 1620                                                                                                                                                                                                        Bird or fish matter got into eye causing bacteria infection.
## 1621                                                                                                                 Bkwd roll over entry into water from dive support octopus regulator got caught on wall & snapped back shattering glass of mask. Abraison above eye.
## 1622                                                                                                                                                                                                                        Blade detached from fan and sliced off nose.
## 1623                                                                                                                                                                          Bldg having renovations done and as a result dust particles in the air irritated EE's eye.
## 1624                                                                                                                                                                                                 Bldg restroom-using facility door stall did not completly latch. ()
## 1625                                                                                                                                Blet student was attempting to arrest EE and EE hit head on floor/teaching/evaluating. Traumatic head injury, loss of consciousness.
## 1626                                                                                                                                                     Blocked ears, during a scientific dive for inspection. Trauma inner ear--water ruptured capillaries. Right ear.
## 1627                                                                                                                                                                                        Blood clots that resulted from trauma on the job. Loss of vision in left eye
## 1628                                                                                                                                                                                                                           Blood exposure while performing cpr, eyes
## 1629                                                                                                                                                                                               Blood in eye during liver transplant. Was wearing protective eye wear
## 1630                                                                                                                                                                                                  Blood splashed in EE's eye when completing radiological procedure.
## 1631                                                                                                                                                                         Blood vessel in right eye burst, employee was not engaged in any activity at time of injury
## 1632                                                                                                                                                                                                            Blowing grass and dirt from parking lot; got in left eye
## 1633                                                                                                                                                                                                                    Blowing leaves at loading and sand got in eye ()
## 1634                                                                                                                                               Blowing leaves with backpack blower, wind changed direction and debris got in his right eye behind safety glasses. ()
## 1635                                                                                                                                                                                                                                 Blowing on frame, trash in left eye
## 1636                                                                                                                                                                                                           Blurred vision, light sensitivity, little drainageof eyes
## 1637                                                                                                                                                                                                   Board fell striking employee in the head. List injury as: head ()
## 1638                                                                                                                                                                                    Boating across area. Trimming branch & tree limbs a branch struck him in the eye
## 1639                                                                                                                                                                    Bobby was tightening up bolts on the ash line and the wrench slipped and hit him in the mouth ()
## 1640                                                                                                                                                                                                                             Book fell from 6' bookshlf onto EE head
## 1641                                                                                                                                                                          Bookshelf overturn causing books to fall on my head, left shoulder, neck and upper back ()
## 1642                                                                                                                                                                   Boot got caught on raised concrete on sidewalk between chapel and operations and employee fell ()
## 1643                                                                                                                                                                                                   Bottle of bleach fell on floor and splashed up into EE's left eye
## 1644                                                                                                                                                                                                                   Bottle of bleach splashed into employee left eye.
## 1645                                                                                                                                                                                                Braking up a fight between two juveniles, he was hit in the left jaw
## 1646                                                                                                                                                                       Breaking apart steel rail to load on rail car - pry device slipped hitting him in the head ()
## 1647                                                                                                                                                                      Breaking up a fight between 2 juveniles was struck in the head around the temple and cheekbone
## 1648                                                                                                                                                                                                                   Breaking up fight & was accidentally hit in mouth
## 1649                                                                                                                                                                                Breaking up fight and was struck in right eye with pepper spray and inmates hand. ()
## 1650                                                                                                                                                                                       Breaking up fight between 2 pts, one of the pt hit EE on left side of face ()
## 1651                                                                                                                                                                                       Breaking up fight between inmates. One of inmates hit him w/his fist in mouth
## 1652                                                                                                                                                                     Breaking up fight between two students and was punched in face/head stanley melvin 252 830 6590
## 1653                                                                                                                                                                                                                                 Breaking up fight in dining hall ()
## 1654                                                                                                                                                                                                                                               Breathing problems ()
## 1655                                                                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. ()
## 1656                                                                                                               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.
## 1657                                                                                                                                                 Broken hinge on metal technology cabinet resulted in door becoming disengaged and striking employee in the face. ()
## 1658                                                                                                                                                                                                                              Broken stethoscope put in right ear ()
## 1659                                                                                                                                                                                                                Broom fell through railing and struck EE on head. ()
## 1660                                                                                                                                                                                                    Brushing patients teeth, spit splattered in face and on arms. ()
## 1661                                                                                                                                                                                      Brushing resident's teeth-resident scratched upper lip and r. Side of nose. ()
## 1662                                                                                                                                                                                              Bucket from tower 5 lowered by officer & struck co stalcup on the head
## 1663                                                                                                                                                                                                                                   Buffing floor - no injury listed.
## 1664                                                                                                                                                                                                                                                   Bug flew into eye
## 1665                                                                                                                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
## 1666                                                                                                                                                                                                                                    Bullentin board fell on her head
## 1667                                                                                                                                                                                                                        Bumped head on platform when standing up. ()
## 1668                                                                                                                                                                                                              Bumped head on safety interlock/door, scalp laceration
## 1669                                                                                                                                                                                                                           Bumped head on stairs during a home visit
## 1670                                                                                                                                                                                                        Bumped head on stairs outside building causing concussion ()
## 1671                                                                                                                                                                              Bumped into hvac system drain sill cock. Removing circulating pump lacerating his head
## 1672                                                                                                                                                                                               Bumped into low mounted exterior wall fixture while turning a corner.
## 1673                                                                                                                                                                                                                                  Bumped top of head on cabinet door
## 1674                                                                                                                                                                      Bungee cord on atv came loose while EE backing atvand s hook on bungee cord hit EE on the face
## 1675                                                                                                                                                                                                                       Bupmed her head on one the porch floor beams.
## 1676                                                                                                                                                                                                               Burned cornea installing auv light. (welders eyes) ()
## 1677                                                                                                                                                                                                                         Burning in eyes from chemical (in training)
## 1678                                                                                 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 ()
## 1679                                                                                                                                                                                                     C/o exposed to a 1/2 - 1 sec burst to the brow area of his face
## 1680                                                                                                                                            C/o faison was closing vehicle gates at tower 6, &the razor ribbon was hanging to low & scratched EE on top of the head.
## 1681                                                                                                                                                                  C/o patterson was observing the inmate medication pass, when he rubbed his eye, it shut with pain.
## 1682                                                                                                                                                                 C/o singletary leaned back in chair & chair broke causing him to hit his head & elbow on the floor.
## 1683                                                                                                                    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
## 1684                                                                                                                     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.
## 1685                                                                                                                                                                      C/o stated while strip searching inmate struck him in the mouth. Two of his teeth were loosen.
## 1686                                                                                                                                                                                            C/o taylor was assigned to east yard. Wind blew foreign object into eye.
## 1687                                                                                                                 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
## 1688                                                                                                                                  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.
## 1689                                                                                                                                                   C/o was conducting a locker search when the inmate became irate causing injury the the c/o's head and eye area ()
## 1690                                                                                                                                                                                              C/o was picking up lunch tray from inmate's cell &inmate spit in eyes.
## 1691                                                                                                                                                                                                      C/o williams was head butted by an inmate during a cell search
## 1692                                         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. ()
## 1693                                                                                                                  Cadet rogers was participating in a physical confrontational exercise when he was struck in the mouth causing two of his teeth to become loose. ()
## 1694                                                                                                                                                 Cadet was doing active confrontation drills when he was struck in the head by the instructor and fell to the mat ()
## 1695                                                                                                                                                           Cadet was doing active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 1696                                                                                                                                                Cadet was participating in active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 1697                                                                                          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.
## 1698                                                                                                                                                           Called by client to check on swarm of bees at home. While removing bees with vail, gloves and smoker used
## 1699                                                                                                                                                                                                 Came around corner and ran into a file cabinet and cut left eye. ()
## 1700                                                                                                                                                                                                         Came in contact w/ poison ivy while doing forest inventory.
## 1701                                                                                                                                                                                                                                                        Car accident
## 1702                                                                                                                                                                                                                                                     Car accident ()
## 1703                                                                                                                                                                                                             Car hit EE's vehicle causing him to hit another vehicle
## 1704                                                                                                                                                         Car ran red light and hit officer's car on the front left side, the other driver was cited for the accident
## 1705                                                                                                                                                                                          Carry blackline on wildfire, set lit drip torch down to adjust radio. Fuel
## 1706                                                                                                                                           Carrying bottle of germiscat(cleaning)spray-handlebroke, bottle fell, germiscat sprayed into left eye. Chemical/left eye.
## 1707                                                                                                                                            Carrying bottles of chemicals in arm, accidentaly squeezed bottle & it squirted into his eye & some went into his mouth.
## 1708                                                                                                                                                                          Carrying boxes and when staff got box from employee the strings from hoodie hit right eye.
## 1709                                                                                                                                                                                                                                 Carrying cases of paint and tripped
## 1710                                                                                                                                                                                               Carrying ceiling tiles from building, wind blew tile debris into eyes
## 1711                                                                                                                                   Carrying inmate jackets to desk, stumbled and fellby cubicles, hit head & right knee & fell to floorco-worker helped to her feet.
## 1712                                                                                                                          Carrying interpretive box onto the ship. Tripped going down the gangway steps & hit his tooth & lipon box knocking tooth out. Lip & tooth.
## 1713                                                                                                                                                                                     Carrying med jackets to hospital floor, slipped and fell trying to open door ()
## 1714                                                                                                                                                                                                              Carrying rock wind blew debris from rock into left eye
## 1715                                                                                                                                 Carrying sedated cat, employee coughed and cart reached out scratched no warning. The cat was very mellow – not agitated at all. ()
## 1716                                                                                                                                                                                                                               Cat jumped up and scrtched my eye lid
## 1717                                                                                                                                                               Caught against inside wall of moving van when display panel shifted striking him on right templearea.
## 1718                                                                                                                                                                                          Caught toe of right foot on top step & fell forward striking head on floor
## 1719                                                                                                                                      Caulking gun fell off ladder while moving ladder to new location, caulking gun struck EE's head which resulted in a laceration
## 1720                                                                                            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
## 1721                                                                                                                          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. ()
## 1722                                                                                                                                                             Ceiling being opened up in bldg when piece of material came out of ceiling and went into EE's left eye.
## 1723                                                                                                                                                                                                                                Ceiling tile fell on employee's head
## 1724                                   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. ()
## 1725                                                                                                                                                                                                    Cell extraction; falling, striking bed, floor, concrete floor ()
## 1726                                                                                                                                                                                                                Chair fell out from under EE and hit EE on the head.
## 1727                                                                                                                                                            Chair in master control caught on coat rack and turned it over and it struck me on left side of head. ()
## 1728                                                                                                                                                     Chair rolled out from under her while sitting down and missed the chair and fell and hit her head on a bookcase
## 1729                                                                                                                                                                              Chair slipped from under EE & fell to floor. Pulled back an hit head on computer table
## 1730                                                                                                                                                                                                         Changing ballast & burned brittlewire insulation got in eye
## 1731                                                                                                                                                                      Changing client pulled adhesive off depends it popped off and sprayed stool on staff's face ()
## 1732                                                                                                                                                                                                       Changing client's shoes-looked up & client poked emp in eyes.
## 1733                                                                                                                                                                               Changing client. EE opened up disposable diaper and fibers from diaper flew into face
## 1734                                                                                                                                                    Changing compresor was starting up unit something blew in eye was wearing safety glasses also using coil cleaner
## 1735                                                                                                                                                            Changing filter on reverse osmosis unit when pipe wrench slipped off filter housing, stricking EE in jaw
## 1736                                                                                                                                                                                                   Changing hvac filter on joof of isnn bumped head on steel beam ()
## 1737                                                                                                                                                                        Changing linen pad, pt hit EE on the right side of EE's face (eyebrow area) scratching EE ()
## 1738                                                                                                                                                                                                              Changing mouse cage when got some cage bedding in eye.
## 1739                                                                                                                                                        Changing out a bad capacitor, EE took capacitor off & a hot oil type substance came out & went into his eyes
## 1740                                                                                                                                                                                                                 Changing pt's diaper, urine splashed in left eye ()
## 1741                                                                                                                                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.
## 1742                                                                                                                                                                                                           Changing resident- resident kicked in r. Upper eyelid. ()
## 1743                                                                                                                                                                                    Changing transmission in vehicle when some debris fell off vehicle into left eye
## 1744                                                                                                                                                                                                                  Chart fell on head; patient threw hot coffee on EE
## 1745                                                                                                                                                                                                  Chasing suspect and tripped going up steps and struck edge or door
## 1746                                                                                                                                                                       Chasing suspect on foot, forcing him to ground. EE chin struck suspect in back, chipped tooth
## 1747                                                                                                                                                                                                           Check & change-hit employee with closed fist in l. Jaw ()
## 1748                                                                                                                 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
## 1749                                                                                                                                                                                    Checking boiler room doors heard a boom and steam particles blew in right eye ()
## 1750                                                                                                                                                                                                  Checking client's tube placement when client spit in right eye. ()
## 1751                                                                                                                                                                                                         Checking dampers on an opened dorr and something got in eye
## 1752                                                                                                                                                                                                      Checking dishwasher soap pump; soap splashed into right eye ()
## 1753                                                              Checking flashlight for readiness and something fell out of a flashlight and I reached down to pick it up and the chair rolled out underneath me, fell and hit the back of my head on steel cabinet ()
## 1754                                                                                                                                           Checking folder and dropped paper on floor. Bent over to pick up and hit chair. Chair pushed bifocal lenses into left eye
## 1755                                                                                                                                                                                                               Checking gates on the yard when a bug into his lt eye
## 1756                                                                                                                                                                                Checking his equipment in wooden box, was reaching into box and lid fell on his head
## 1757                                                                                                                  Checking leak in 4" valve, bumped insulation, particles fell on employee. Later employee rubbed his eye getting the particles of insulation in it.
## 1758                                                                                                                                   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
## 1759                                                                                                                                                                   Checking on inmate. Inmate was crying b/c of loss of her father. Spit as coughed in EE's left eye
## 1760                                                                                                                                                                       Checking outside doors in industry area when wind blew sawdust from collector into my eye. ()
## 1761                                                                                                                                                                                                          Chemical bottle fell off shelf and splashed EE in eyes. ()
## 1762                                                                                                                                                                                                                     Chemical mist sprayed in employee's left eye ()
## 1763                                                                                                                                                                                                      Chemical splash to face while performing synthesis reaction ()
## 1764                                                                                                                                                 Chemical splash, (bleach)a bottle of bleach droppedon floor from cabinet & the lid popped off causinga splash back.
## 1765                                                                                                                                                                                                                              Chemical splashed in eye when cleaning
## 1766                                                                                                                                                                                                                                           Chemical splashed in eye.
## 1767                                                                                                                                                                                                          Chemical splashed in r-eye while initiating research plots
## 1768                                                                                                                                                                                                            Chemical splashed onto when applying acephate pe sticide
## 1769                                                                                                                                                                                                                                        Chemical splatter, right eye
## 1770                                                                                                                                                                                       Chemical spray splashed in rt eye while spraying contact cleaner on equipment
## 1771                                                                                                                                                                                                                   Chemical went into both eyes when spraying shower
## 1772                                                                                                                                                                                                   Chemicals got into right eye off spray bottle fixing to clean. ()
## 1773                                                                                                                                                                                                   Child jumped out of seat while having nose wiped &hit EE in chin.
## 1774                                                                                                                              Child on rcac playground pulled away from rita and as she transitioned from the mulch to the sidewalk she lost her balance and fell ()
## 1775                                                                                                                                           Child student sitting in EE lap, child jumped up & backwards hitting EE in chin & lower jaw, mouth forced closed quickley
## 1776                                                                                                              Child was struggling during team control exercise began biting, kicking & pushing. Child bit thumb &caused EE to fall, hitting head on corner of table
## 1777                                                                                                                                                                                                                            Chile reached out and scratched EE face.
## 1778                                                                                                                Chiller shutdown alarm system activated and employee responded to reset alarm and chiler. No hearing protection used. List injuries as: right ear ()
## 1779                                                                                                                                                                                                        Chipped front tooth, accidentally was struck by a flashlight
## 1780                                                                                                                                                      Chris was walking towards the pool gate to allow campers ot of pool. Hit top left of head on window awning. ()
## 1781                                                                                                                                                    Claimant hit head while clearing a paper jam in the copier/fax and injured the left side of her head (temple) ()
## 1782                                                                                                                                                      Claimant states she was weeding and stepped on a rake she had laid down, the rake hit her in the right eye. ()
## 1783                                                                                         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. ()
## 1784                                                                                                                                                                                      Claimant was driving a gator and hit the front driver side of an oncoming car.
## 1785                                                                                                          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.
## 1786                                                                                                                 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. ()
## 1787                                                                                                                                                         Claimant was working under something & when he got out, he hit his head on a piece of plywood. Hurt head ()
## 1788                                                                                                                                                                                                                      Claims that he contracted MRSA from patient ()
## 1789                                                                                                                                                                                   Cleaining floor, bent down to pick up trash, head caught edge, laceration to head
## 1790                                                                                                                                                                          Cleaner fell into mop wringer nad EE wrung out mopcleaner squirrted into eyes, mouth, face
## 1791                                                                                                                                                                                         Cleaniing solution slpashed on chin and lip when staff was dispensing it ()
## 1792                                                                                                                     Cleaning 20 refrigeration--purple substance, later discovered substance was a heavy metal irritant. Chemical splash to eye and skin irritation.
## 1793                                                                                                                                                                                 Cleaning a refrigerator mistaken looked up and bumped eye on the corner of face. ()
## 1794                                                                                                                                                                                                          Cleaning a room filled with mortar dust. Left eye redness.
## 1795                                                                                                                                                                                                Cleaning around scrubs, picking up trash, cutting limbs, grading. ()
## 1796                                                                                                                                                                                   Cleaning away metal shavings-safety glasses were worn but metal flake entered eye
## 1797                                                                                                                                                                                                                    Cleaning bahtroom, cleaner went into my left eye
## 1798                                                                                                                                                                                                        Cleaning bathroom, light fixture fell on employee's head. ()
## 1799                                                                                                                                                                     Cleaning bathrooms when her nose, chest, & throat began to hurt. Treated for chemical exposure.
## 1800                                                                                                                                Cleaning behind control desk to kill ants w/comet-wiped right eye. Comet residue from hand in eye caused inflmation a few days later
## 1801                                                                                                                                                                                                            Cleaning blower filters and piece of trash blew into eye
## 1802                                                                                                                                                       Cleaning bottom bunk bed & raised her head to clean top & failed to move far enough to avoid bumping her head
## 1803                                                                                                                                                                    Cleaning brick sign w/ acid using brush, wind blew asid fumes into face burning mouth and tongue
## 1804                                                                                                                                                                           Cleaning brick wall with 707 and tile grout. Fumes of the chemical began to burn my eyes.
## 1805                                                                                                                                                                                                                            Cleaning chemical splashed into EE's eye
## 1806                                                                                                                                                             Cleaning dorm rooms, picked up spray bottle with chemical, hand slipped, hit nozzle and sprayed lefteye
## 1807                                                                                                                                                                      Cleaning exhibit w/bleach on sprayer bottle. Nozzle became clogged and bleach splashed in eyes
## 1808                                                                                                                                                                                      Cleaning file room, tripped on file box, hit head on hand truck, broke glasses
## 1809                                                                                                                                                            Cleaning in carpentry shop he got something in his left eye, which began to irritate about an hour later
## 1810                                                                                                                                                                                               Cleaning off station desk with bleach which splashed into left eye ()
## 1811                                                                                                                                                        Cleaning out lint in dryer; got up to put in trash can; as EE got up hit head on the corner of the dryer. ()
## 1812                                                                                                                                                                                                 Cleaning out steam funnel using large fan, dust blew I nface & ears
## 1813                                                                                                                                                                                                 Cleaning out windows in bathroom, dust or "trash" fell in left eye.
## 1814                                                                                                                                                                                                        Cleaning oven in martin village sprayed oven cleanger in eye
## 1815                                                                                                                                                                                                  Cleaning pipe in engine room when rust broke off and fell into eye
## 1816                                                                                                                                                                                          Cleaning pots with scrub pad and ajax, slipped, something went in left eye
## 1817                                                                                                                                                           Cleaning room & was pulling map holder to roll back in it's case and map fell & hit EE on top of his head
## 1818                                                                                                                                                                                                                            Cleaning room, stood up and hit head. ()
## 1819                                                                                                                                                                                                                Cleaning shower and slipped on the hump in the floor
## 1820                                                                                                                                                                                                                                      Cleaning solution got into eye
## 1821                                                                                                                                                                      Cleaning solution splashed in employee's eye whileshe was cleaning top part of shower curtain.
## 1822                                                                                                                      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.
## 1823                                                                                                                                                                                                       Cleaning stove hood and dust or something fell into left eye.
## 1824                                                                                                                                                                                                     Cleaning student move-out apts. Chemicals splashedin right eye.
## 1825                                                                                                                                                                                                                    Cleaning supply room got dust trash in left eye.
## 1826                                                                                                                                                           Cleaning tables with cleaner, mozzle on the bottle broke and the cleaner sprayed into face and right eye.
## 1827                                                                                                                                                                                                                  Cleaning under conveyor belts. Injury to r eye. ()
## 1828                                                                                                                                                            Cleaning under furniture, stood up and struck head on tv cabinet resulting in headache and dizziness. ()
## 1829                                                                                                                 Cleaning up after alumni day, tripped on ramp @ kirkman house back door entrance. EE fell & hit head, causing concussion and soreness/back pain. ()
## 1830                                                                                                                                                                        Cleaning wall in hallway. Speedy spray mist got on face or EE rubbed her face causing a rash
## 1831                                                                                                                                                                                       Cleaning wound on pt, pt hit EE's glasses causing them to abrade EE's nose ()
## 1832                                                                                                                                                                                                   Cleaning wound with saline some of the fuild splashed into lt eye
## 1833                                                                                                                                                                                           Cleaning. EE stood up and hit forehead on cabinet. Small cut on forehead.
## 1834                                                                                                                                                                                                                        Clearing vent in cell air blew object in eye
## 1835                                                                                                                                                                                Cleint started acting up. Client jumped up and slapped EE across right ear and face.
## 1836                                                                                                                                                                                                                               Cleint stuck finger in EE's left eye.
## 1837                                                                                                                                           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
## 1838                                                                                                                                                                                                                                                Client aggression ()
## 1839                                                                                                                                                                                              Client aggressive - pulled EE hair and headbutted EE in l side of face
## 1840                                                                                                                                                                     Client att to go in nursing room-EE redirecting client when client hit EE in the face with fist
## 1841                                                                                                                                                                                                                        Client attacked EE - rt eye and neck injured
## 1842                                                                                                                                                                                                                               Client attacked EE, cut over left eye
## 1843                                                                                                                                                                          Client attacked staff, staff seen at physician's primecare and rtw with no missed time. ()
## 1844                                                                                                                                                             Client attempted to enter smock room to harm EE and schuffle broke out-EE has injury to bridge of nose.
## 1845                                                                                                                                                             Client attempted to grab staff's hair, staff moved head and client brushed the side of staff's face. ()
## 1846                                                                                                                                                                          Client attempting to hide frm staff to keep from taking shots fighting EE-head, face, neck
## 1847                                                                                                                                                                               Client backhanded employee in the lft side of the mouth- loosened lft upper #4 tooth.
## 1848                                                                                                                                                                                                       Client became aggressive and hit EE in eye and upper forehead
## 1849                                                                                                                                                                                                                  Client became aggressive and struck EE in the nose
## 1850                                                                                                                                                            Client became aggressive nad head butted EE on theside of the face and chipped one one her bottom teeth.
## 1851                                                                                                                                         Client became aggressive-staff intervened, while waiting for assistance-cleint grabbed & hit staff in face loosening tooth.
## 1852                                                                                                                                                      Client became agitated when redirected and struck me in the right eye. Redness and blurred vision resulted. ()
## 1853                                                                                                                                                                                                   Client became combative. EE intervened and was poked in left eye.
## 1854                                                                                                                                                                                                           Client became mad and struck EE several times in the face
## 1855                                                                                                                                                                                  Client became upset and started to hit. EE was hit in mouth and bottom lip was cut
## 1856                                                                                                                                                                              Client became upset because he didn't have enough money and hit EE on rt side of head.
## 1857                                                                                                                                                                                                         Client bit EE in the right side of head. Cranial concussion
## 1858                                                                                                                                                                                                               Client bit staff, staff treated at er rtw 11/17/09 ()
## 1859                                                                                                                         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.
## 1860                                                                                                                                                       Client called staff over as though he was going to whisper in staff ear and popped plastic paper in staff ear
## 1861                                                                                                                                           Client came in and sat on sofa upset-EE tried to calm client in process client slapped EE's glassesoff and scratched nose
## 1862                                                                                                                                                                                  Client came into EE's office, EE asked client to leave, client bit EE on the nose.
## 1863                                                                                                                                                                  Client came into restroom and attacked EE hitting in face, knocking off glasses, kicking in chest.
## 1864                                                                                                                                                              Client came up behind EE, EE turned & client hit in right jaw with fist chipping EE right upper tooth.
## 1865                                                                                                                                                                                       Client charged EE pushing EE to the floor hitting her head on filing cabinet.
## 1866                                                                                                                                Client charged at staff member-while placing in pic client was fighting staff which caused them tofall to floor hitting head on wall
## 1867                                                                                                                                                                       Client grabbed pill bottle from nurse and threw it then hit her in the nose with his fist. ()
## 1868                                                                                                                                                                           Client had been put in pic-client attacked EE scatching nose, face, knocking glasses off.
## 1869                                                                                                                                                                                                                                   Client head butted EE in the nose
## 1870                                                                                                                                                                                                                                       Client head butted in lip. ()
## 1871                                                                                                                                                                                                                                         Client head butted staff ()
## 1872                                                                                                                                                                                                                        Client head butted staff during behavior. ()
## 1873                                                                                                                                                                                                              Client head butted staff with staff wearing glasses ()
## 1874                                                                                                                                                                                    Client head-butted EE in the face, hitting top lip and loosening rt front tooth.
## 1875                                                                                                                                                                                                                                   Client head-butted EE in the nose
## 1876                                                                                                                                                                                                                               Client head-butted staff in the nose.
## 1877                                                                                                                                                                                              Client headbutted EE, laceration to lt eye brow & over bridge of nose,
## 1878                                                                                                                                                                                                   Client hit EE in face serveral times-injury to face and rt ankle.
## 1879                                                                                                                                                                                                                                    Client hit EE in face with fist.
## 1880                                                                                                                                                                                                                                 Client hit EE in left eye with hand
## 1881                                                                                                                                                                                                                                          Client hit EE in left eye.
## 1882                                                                                                                                                                                                                                 Client hit EE in left jaw with hand
## 1883                                                                                                                                                                                                                    Client hit EE in mouth with fist, loosened teeth
## 1884                                                                                                                                                                                                                                   Client hit EE in rt jaw with fist
## 1885                                                                                                                                                                                                         Client hit EE in the head 2 times-EE has history of strokes
## 1886                                                                                                                                                                                                                                     Client hit EE on lt side of jaw
## 1887                                                                                                                                                                                Client hit EE on right side of head during intervene of clients aggressive behavior.
## 1888                                                                                                                                                                                                                    Client hit EE with fist while they were talking.
## 1889                                                                                                                                                                                                                      Client hit and scratched staff aggressively ()
## 1890                                                                                                                                                                                 Client hit employee in face/mouth w/ fist. Cuttingmouth, lips and gums. Pain in jaw
## 1891                                                                                                                                                                                           Client hit employee in mouth (with fist) cut upper lip, pain in face/neck
## 1892                                                                                                                                                                                                                       Client hit employee in the jaw w/closed fist.
## 1893                                                                                                                                                                                                                                 Client hit staff in face and eye ()
## 1894                                                                                                                                                                                                            Client hit staff in nose and hand got caught on chair ()
## 1895                                                                                                                                                                                                                       Client hit staff in the eye with wet towel ()
## 1896                                                                                                                                                                                                                                 Client hit staff in the left eye ()
## 1897                                                                                                                                         Client in activity room throwing things-EE placingclient in pic and client throw head back and hit EE on nose and forehead.
## 1898                                                                                                                                                                                   Client jerked head forward and hit EE in the mouth. Loose tooth and bridge loose.
## 1899                                                                                                                                                                                 Client jumping and yelling staff opened door and got hit in the rt cheek and eye ()
## 1900                                                                                                                                                                                                                                    Client kicked EE in mouth w/shoe
## 1901                                                                                                                                                                                              Client kicked door catching employees head between the door and frame.
## 1902                                                                                                                                                                                                                                      Client kicked staff in face ()
## 1903                                                                                                                                                                          Client leaded forward and bumped heads with staff; he was wearing a helmet on his head. ()
## 1904                                                                                                                                                                                       Client lift was in use when the cord became unplugged & hit client in the eye
## 1905                                                                                                                                                                    Client picked up a bowl of screws & threw them at staff, one of the screws hit staff in the eye.
## 1906                                                                                                                                                                             Client picked up oject while lifting object the client stuck his finger into right eye.
## 1907                                                                                                                                                                                 Client picked up walker and swung it at EE-hittingee in side of head (right temple)
## 1908                                                                                                                                                                                                                                        Client poked EE in left eye.
## 1909                                                                                                                                                                                                                 Client punched EE in left jaw knocking tooth loose.
## 1910                                                                                                                                                                                                                                    Client punched EE in top of head
## 1911                                                                                                                                                                                                                Client punched staff in eye when denied more food ()
## 1912                                                                                                                                                                                                                 Client pushed EE against door, EE hit head on door.
## 1913                                                                                                                                                                                         Client pushed EE down causing her to hit the back of her head on the floor.
## 1914                                                                                                                     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.
## 1915                                                                                                                                                    Client ran out of courtyard-EE redirecting client when client hit EE in the face with glasses on and broke them.
## 1916                                                                                                                                                     Client ran outside EE ran out to catch her. EE caught client & fell client slapped EE in face facial contusion.
## 1917                                                                                                                                                Client rush at staff hitting him in rt eye with fist breaking glasses and making a bruise and a scratch by rt eye ()
## 1918                                                                                                                                                                                                                                     Client scratched EE in the eye.
## 1919                                                                                                                                                                                                                                 Client scratched EE in the left eye
## 1920                                                                                                                                                                                                                                          Client scratched EE's face
## 1921                                                                                                                                                                                           Client shoved her head against the door and hit side of face with fist ()
## 1922                                                                                                                                                                                                                 Client spit in EE's face during medication pass. ()
## 1923                                                                                                                                                                                                                                         Client spit in EE's lt eye.
## 1924                                                                                                                                                                                            Client spit in attorney's eye intentionally while talking about case. ()
## 1925                                                                                                                                                                                                                              Client struck EE in head several times
## 1926                                                                                                                                                                                                                                         Client struck EE in the ear
## 1927                                                                                                                                                                                                       Client struck EE in the face while EE was restraining client.
## 1928                                                                                                                                                                                                                                         Client struck EE in to nose
## 1929                                                                                                                                                                                                       Client struck EE on right side of face. Loosened lower tooth.
## 1930                                                                                                                                                                                                                         Client struck EE w/fist to right lower jaw.
## 1931                                                                                                                                                                                                     Client swung and hit EE in the face hard (between the eyes). ()
## 1932                                                                                                                                                                                                                     Client that EE was assisting had conjunctivitis
## 1933                                                                                                                                                                                                        Client threw bowl striking staff in forehead at snacktime ()
## 1934                                                                                                                                                                                 Client threw drink at EE-client attempted to leavebldg & punched EE in nose 3 times
## 1935                                                                                                              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
## 1936                                                                                                                                                                                                                             Client turned and hit staff in face. ()
## 1937                                                                                                                                                                                                                                    Client upset and hit EE on nose.
## 1938                                                                                                                                                            Client upset with EE while being escorted ot itd when leaving room client grabbed EE and jerked herdown.
## 1939                                                                                                                                                                                               Client walked out of bedroom and hit staff in the nose with her fist.
## 1940                                                                                                                                                               Client walked out of living room, EE went to get client, client turned around and hit EE in the nose.
## 1941                                                                                                                                                                                                        Client wanted to get up; got angry and spit in EE's eyes. ()
## 1942                                                                                                                                                                      Client was asked to brush teeth and put on underwear. Client began fighting and hit EE in nose
## 1943                                                                                                                                                                                       Client was brought to playroom took helment off nad threw it, helmet hit nose
## 1944                                                                                                   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. ()
## 1945                                                                                                                                                Client was hitting his head on the floor EE grabbed him up off floor & went backward with him & was hit in the head.
## 1946                                                                                                                                                                 Client was sitting on couch in dayroom and client reached up and pointed finger into EE's left eye.
## 1947                                                                                                                                                Client was trying to steal sodas he shoved EE poking EE in rt eye causing EE & client to fall EE hit knee and elbow.
## 1948                                                                                                                                                Client was upset. EE tried to cam client down. Client took a step back, then came forward and struck EE on the nose.
## 1949                                                                                                                   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
## 1950                                                                                                                                                                                         Client was walking past, hit staff in nose with fist for no apparent reason
## 1951                                                                                                                                                                                                                        Client went into behavior and hit EE in eye.
## 1952                                                                                                                                                                                                                 Client wrung rag with bleach on EE - bleach in eyes
## 1953                                                                                                                                                      Client wzas lifting the basket down from the con- trol tower, the basket hit EE on the top of head. Contusion.
## 1954                                             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. ()
## 1955                                                                                                                                                                                                      Clients elbow struck staff in the nose causing it to bleed. ()
## 1956                                                                                                                                     Climbing aluminum ladder, ladder folded up causingee to fall & stirke face on joint in ladder, EE fell unconcious to the ground
## 1957                                                                                                                                                                                                     Climbing in bus to do inmate count, hit head goingin back door.
## 1958                                                                                                                                                                                                           Climbing ladder and hit his head on metal access door. ()
## 1959                                                                                                    Climbing though rhododendron thicket. After field work, while showering to remove debris from head/face/hair, washed foreign body into eye, scratching rt eye ()
## 1960                                                                                                                                                                                                                               Climbing through roof hatch, cut head
## 1961                                                                                                                                                                                                            Climbing up into vehicle, hit side of head on doorframe.
## 1962                                                                                                                                                                  Climbing up ladder to adjust water level, slipped on the way down & hit right ear on ladder steps.
## 1963                                                                                                                                                                                                                 Clipping pt's nails, nail went in EE's right eye ()
## 1964                                                                                                                                                                         Clm't driving bus. Buzzard flew into and broke windshield. Clm't got foreign bodies in eye.
## 1965                                                                                                                                                                                                                          Clorox and water bounced into EE right eye
## 1966                                                                                                                                                                                               Closed window in dorm and the window fell open & hit back of head. ()
## 1967                                                                                                                                                                            Closing a student't room door when the student became upset and hit him lip and lft jaw.
## 1968                                                                                                                                       Closing frame mounting bracked under automobile to prepare metal for welding. After completion noticed irritation of left eye
## 1969                                                                                                                                 Closing open window--latch did not catch. Window popped open, reclosed with right hand, window paneshattered cutting right eye lid.
## 1970                                                                                                                                                           Co byrum was in central control when he passed outin the chair and fell in his right side onto the floor.
## 1971                                                                                                                                                                                                             Co-worker backed into her knocking her down face first.
## 1972                                                                                                                                Co-worker dressing client, became agitated, employee went to assist -hit /scratached on bridge of nose and scratched on r. Cheek. ()
## 1973                                                                                                                                                      Co-worker sprayed lysol in the hallway to rid offcie of potential germs due to her just diagnosed throat virus
## 1974                                                                                                                                                          Co-worker trying to hit an acorn w/screwdriver which flew out of his hand striking Mr. Fisher on his head.
## 1975                                                                                                                                                                         Co-worker was cutting iron pipe, dust from pipe got in hands and was rubbed into EE's eyes.
## 1976                                                                                                                           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.
## 1977                                                                                                                                                                                   Co-worker was taking books off a shelf, one book fell and hit sherie in the nose.
## 1978                                                                                                                                                                                                      Code 4 on union in hallway. An inmate was assaulting staff. ()
## 1979                                                                                                                            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
## 1980                                                                                                                                                                       Collecting blood samples from a cow, cow raised her head and hit Dr. Whisnant in the head. ()
## 1981                                                                                                                                                                                                               Collecting trash from I/m and I/m spit in left eye ()
## 1982                                                                                                                                                                                                                              Combative client kicked EE in the eye.
## 1983                                                                                                                                   Combative resident attempted to bite employee-employee raised head away from resident-resident's teeth cut/scratched forehead. ()
## 1984                                                                                                                  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
## 1985                                                                                                               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
## 1986                                                                                                                                                                                                     Coming down from ladder, foot slipped, fell 3 feeton rt hip/leg
## 1987                                                                                                                  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
## 1988                                                                                                               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
## 1989                                                                                                                     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
## 1990                                                                                                                                     Coming out of er, inmate was cleaning walls in hallway with floor cleaner, fan in hallway blew cleaning solution into EE's eyes
## 1991                                                                                                                                                      Coming out of living room turned lt client with helment bumped into med hitting upper rt eye causing swelling.
## 1992                                                                                                                                                                                     Coming up stairs, foot caught under top step, EE tripped and fell, hitting head
## 1993                                                                                                                                                                            Compacting trash on the yard, line busted and sprayed employee in the face and on arm ()
## 1994                                                                                                 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
## 1995                                                                                                                                                                            Conducting bunk search on bottom bunk. Stood up & hit top right side of her head on rail
## 1996                                                                                                                                                                                     Conducting cell cleaning when inmate sprayed feces from a bottle in my face. ()
## 1997                                                                                                                                                                 Conducting cell search on inmate, the inmate became combative and force was needed to gain control.
## 1998                                                                                                                   Conducting cell search. Attempted to exit cell. Inmate stepped in front of him & refused orders to move. Inmate then raised cuffed hands & struck
## 1999                                                                                                                 Conducting class and demonstrating the cable bicepcurl machine when a clip holding the weights brokethe handle causing force to hit him in the head
## 2000                                                                                                                                                                      Conducting clothes exchanges, lifting clothes cart up the stairs & cart nit me on the head. ()
## 2001                                                                                                                                                                                           Conducting count - going up steps and fell, hit mouth on the concrete. ()
## 2002                                                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. ()
## 2003                                                                                                                                                Conducting geologic field mapping/rock study, slipon rock, fell face forward, bumped forehead and sprain right wrist
## 2004                                                                                                                    Conducting handgun weapon retention practice exercises. Co worker accidently struck lower jaw causing teeth to hit together chipping front tooth
## 2005                                                                                                                                                                        Conducting her security check on north yard hit her right side of her head on an open window
## 2006                                                                                                                                                                                                  Conducting inventory when a box fell on head/nose breaking glasses
## 2007                                                                                                                                                                                Conducting mop up on wildfire. Wind was blowing causing debris to go into right eye.
## 2008                                                                                                                                                        Conducting officer survival training. Walking backwards and fell and struck back of his head on weight bench
## 2009                                                                                                                   Conducting random cell search, paper covering ventinstructed inmate to remove the paper, inmate removed the paper & accidently struck him in head
## 2010                                                                                                                                                                 Conducting routine search of gatehouse after visitation she bumped her head on air conditioningunit
## 2011                                                                                                                                                               Conducting search inside of inmate steel locker. During search he struck his head on inside of locker
## 2012                                                                                                                                              Conducting search of wooded area during night hours. All members of pert team using paint guns & was hit on lips w/one
## 2013                                                                                                                                                                                                   Conducting shaves, an inmate threw urine in the officer's face ()
## 2014                                                                                                                                                                                                             Conducting showers and an I/m stabbed EE in the face ()
## 2015                                                                                                                                                                                                            Conducting showers, inmate through bleach in my eyes. ()
## 2016                                                                                                                                                                        Conducting strip search of inmate when inmate suddenly swung his fist and struck EE in mouth
## 2017                                                                                                               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
## 2018                                                                                                                                                                                                                      Conduit fell striking me under my left eye. ()
## 2019                                                                                                                                                                                                                    Conjunctivitis in lt eye possibly contracted it.
## 2020                                                                                                                                                                                                                                       Conjuntivitis from patient ()
## 2021                                                                                                                                                                   Construction work going on in library. EE states that eyes became irritated and started to swell.
## 2022                                                                                                                                                                                           Consumer attacked staff attempted to choke and poked finger in right eye.
## 2023                                                                                                                                                                                  Consumer backhanded EE in face while he was trying to dress him. Hit his right eye
## 2024                                                                                                                                                                                                                                          Consumer spit in right eye
## 2025                                                                                                                                                                                                                   Contact w/MRSA client-eye red & discharge present
## 2026                                                                                                                                                                                   Contact w/resident w/conjunctivities in past 2 wks& EE's right eye red & drainage
## 2027                                                                                              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. ()
## 2028                                                                                                                                                                                         Contacted possible ringword from a patient-locatedon staff's right forehead
## 2029                                                                                                                             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 ()
## 2030                                                                                                                                                                                                                      Contaminated water splashed into EE right eye.
## 2031                                                                                                               Contaminents from the inside of the state truck entered into the inside of c/o davis' eye. Investigation revealed a fire extinquisher had discharged.
## 2032                                                                                                                                                                                                                 Continuously exposed to environment in work area ()
## 2033                                                                                                                                                                                                                             Contracted conjunctivis from patient ()
## 2034                                                                                                                                                                                                                               Contracted conjunctivitis from client
## 2035                                                                                                                                                                                   Contracted pharyngitis and cunjunctivitis while caring for contagious patients ()
## 2036                                                                                                                                                 Contusion to her right eye, from fight in the dining hall-- inmate struck her in the right eye with closed fist. ()
## 2037                                                                                                                                                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
## 2038                                                                                                                                                                                                                       Corncob bedding got in employee right eye. ()
## 2039                                                                                                                                                                                                                                      Corneal abraisons to left eye.
## 2040                                                                                                                                                                                   Corneal scrape from tree branch while walking stream bed for env compliance visit
## 2041                                                                                                                                                                                                          Corr officer states he was hit in the face by an inmate ()
## 2042                                                                                                                                                                                  Could not see took off eye shield for a few second and burned by plasma machine ()
## 2043                                                                                                                                                                                                           Counting florescent light using uv light leading ti eyes.
## 2044                                                                                                                                                 Counting retraints in cabinet hit head on top of cabinet as he started to exit the cabinet. Back of center of head.
## 2045                                                                                                                                                                                                                   Counting supplies & crutch board fell on her head
## 2046                                                                                                                                                                                          Coutner top fell on head causing a contusion on forehead and cutting head.
## 2047                                                                                                                                                                                       Covering merchandise with painters plastic. Cornerof plastic went into rt eye
## 2048                                                                                                                                                                                                                                      Cpr on victim in src courts ()
## 2049     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 ()
## 2050                                                                                                                                                                                          Creating a buffer solution and some sodium dodecy/sulfate got into rt eye.
## 2051                                                                                                                                                                                                                        Crew sprayed into eye when replacing the top
## 2052                                                                                                                                                   Crew was working on vent hoods or something & EE inhaled fumes while working in office. Fumes were not continuous
## 2053                                                                                                               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.
## 2054                                       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 ()
## 2055                                                                                                                                              Criminal justice standards was going to pull his certification and this resulted in a stroke from worry and stress. ()
## 2056                                                                                                                                                      Crossed cable in parkinglot. Foot didn't clear thecable. Fell against right hand. Struck face on railroad tie.
## 2057   Customer began to pull onto patton ave., turned sharply to right, drove over the curb after landing on patton ave. The vehicled rocked back and forth; head struck the b pillar on the passenger side causing neck to pop in center. List injuries: head & neck (
## 2058                                                                                                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. ()
## 2059                                                                                                                                   Customer started to run red light, stopped, and backed up and hit car behind them. List injury as: headache, front & back head ()
## 2060                                                                                                                                                                                                                                         Cuting tress out of highway
## 2061                                                                                                                                         Cutting a lock off inmates locker with bolt cutters and while pressing down cutters snapped down and hit me in the face. ()
## 2062                                                                                                                                                   Cutting a piece of metal when a silver of metal came in contact with his right eye, EE was wearing safety glasses
## 2063                                                                                                                                 Cutting an animal skull w/ an autopsy saw when EE felt like something cold and wet splashed into his lt eye. Wearing eye protection
## 2064                                                                                                                                                                                           Cutting band on lumber rack releasing particles that entered the left eye
## 2065                                                                                                                                                                                             Cutting down a tree during state duty & wood chip struck him in the eye
## 2066                                                                                                                                                                                         Cutting grass and debris flew back in face, safetyglasses where being worn.
## 2067                                                                                                                                                                                                                          Cutting grass and grass landed on face. ()
## 2068                                                                                                                                                                                                                    Cutting grass and wind blew debris into left eye
## 2069                                                                                                                                                                                                                    Cutting grass on hill, mower tractor rolled over
## 2070                                                                                                                                                                                                                       Cutting hole in ceiling, debris got in eye ()
## 2071                                                                                                                                                                            Cutting hole in ceiling-debris from ceiling fell into l. Eye (wearing safety glasses) ()
## 2072                                                                                                                                                                                                       Cutting limbs & sawdust got in eyes osver glasses. Right eye.
## 2073                                                                                                                                                                                                                          Cutting limbs and debris flew in right eye
## 2074                                                                                                                                                                       Cutting limbs from trees and a backhoe truck a tree limb causing it to hit tim on the head ()
## 2075                                                                                                                                                                                                                                   Cutting limbs. Something hit eye.
## 2076                                                                                                                                                                 Cutting lumber, sliver of wood passed under safetyglasses into EE's left eye scratching the cornea.
## 2077                                                                                                                                                                                                                   Cutting masonry with diamond saw. Metal in eye ()
## 2078                                                                                                                                                                 Cutting notch out of a dead oak tree, wood chip flew up, bounced off of face and went into left eye
## 2079                                                                                                                                                                                                 Cutting of plastic box w/cutter when piece of plastic flew into eye
## 2080                                                                                                                                                      Cutting paper w/right hand when went to look down at paper. Scissors scratched above right eye in eyebrow area
## 2081                                                                                                                                                                                      Cutting part on milling machine, hot metal chip flew off into edge of left eye
## 2082                                                                                                                                               Cutting piece of metal when cutting torch had piece of melted metal blow back from tip of torch & went into right eye
## 2083                                                                                                                                                                     Cutting sewer line with saw, wast water & metal savings while cutting stroke face & left eye ()
## 2084                                                                                                                                                                                                           Cutting styro foam board and piece got into his right eye
## 2085                                                                                                                                              Cutting water off to cell and inmate gassed right side of face with an unknown liquid that struck my eyes and face. ()
## 2086                                                                                                                                                                                                                                Cutting wood and piece got in eye ()
## 2087                                                                 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 ()
## 2088                                                                                                                                                                                                                      Debris blew in eye while hanging wall pack. ()
## 2089                                                                                                                                                                                          Debris blew into eye as riding on forklift toward warehouse on a windy day
## 2090                                                                                                                                                                                                           Debris fell in employees eyes when removing ceiling tiles
## 2091                                                                                                                                                                                                            Debris fell into EE's left eye while closing roof hatch.
## 2092                                                                                                                                                                                                                             Debris flew hit EE under eye on eye lid
## 2093                                                                                                                                                                                       Debris from door entrance being enlarges fell intoeye causing cornea abrasion
## 2094                                                                                                                                                                                                                             Debris from ladder fell in right eye ()
## 2095                                                                                                                                                                                                    Debris from weed eating machine went into eyes while weed-eating
## 2096                                                                                                                                                                                                          Debris got blown into EE's eye when helicopter waslanding.
## 2097                                                                                                                                                                                  Debris got caught under rt eyelid. Tried to flush out before going to urgent care.
## 2098                                                                                                                                                                                                                         Debris got into eye causing eye irritation.
## 2099                                                                                                                                                                                          Debris got into left eye while weed eating causing swelling and redness ()
## 2100                                                                                                                                                              Delivering paperwork to the administrative building; wind blowing and door struck left side of head ()
## 2101                                                                                                                                                                                    Delivering supplies & rubbed side eye not realizing cleaing solution was on hand
## 2102                                                                                                                                                                                                     Dermatitis from seating and wearing gloves. Left & right hands.
## 2103                                                                             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. ()
## 2104                                                                                                                                                                                                                    Developed allergies to rats over period of time.
## 2105                                                                                                                                                                                              Developed ear infection following multi-day repetitive undersea diving
## 2106                                                                                                                                                           Developed ear infection following scientific divertraining-subsequently caused sinus & inner ear problems
## 2107                                                                                                                                                     Developed ear pain after scuba diving in exhibit. It did not develop immediately after dive, but a while later.
## 2108                                                                                                                                                                              Developing an ifsp, child playing with a toy gun accidentally poked in my right eye ()
## 2109                                                                                                                     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. ()
## 2110                                                                                                                                                                            Diluted formula splased in right eye. Working at table reading bear reproductive tracts.
## 2111                                                                                                                                                     Directed client back to bedroom. Client sat down on bed and kicked EE in face with shoe, breaking glasses. Eye.
## 2112                                                                                                                                                                      Directing inmates to stop altercation, fight ocurred got a hit from inmate. And spit in eye ()
## 2113                                                                                                                                                                                                Dirt flying around on yard & went in eye.. Startedto tear up & hurt.
## 2114                                                                                                                                                                   Dirty water entered ear canal during scuba diving which May have contributed to swimmer's ear. ()
## 2115                                                                                                                                              Dirty water splashed into eye when cleaning out a p. R. V. Station in the physical plant mechanical equipment room. ()
## 2116                                                                                                                                                                                                                    Discard dirty linens and face broke out in rash.
## 2117                                                                                                                                  Discarded light bulb taken from light fixture in office exploded in hand of maintenance worker at secretary's desk. Injury to eyes
## 2118                                                                                                                                                                                               Discussing problem w/inmate when inmate got mad and spit in EE's face
## 2119                                                                                                                                                                                        Dish soap foam in eye allergic reaction which became apparent days later. ()
## 2120                                                                                                                                                      Dispenser opened and top fell downward hitting EE on right temple. Bruising and swelling to right side of head
## 2121                                                                                                                                                                        Disposing of surplus/junk computer accessories an attached power cord "whipped" and hit face
## 2122                                                                                                                                                                                Diving collecting biological samples, after diving started having vertigo, nausea ()
## 2123                                                                                                                                                                            Diving to 20-24 ft, on ascending to surface suffered reverse squeeze causing rupture. ()
## 2124                                                                                                                                                                                                   Doing activites when client became aggressive and hit EE in l eye
## 2125                                                                                                                                                                                            Doing body work and small piece of glass fell in eye and cut left wrist.
## 2126                                                                                                                                                                                             Doing clean up employee slipped and fell splashingchemicals in her eyes
## 2127                                                                                                                                                            Doing count in dorm. Inmate refused to get on bunk. Inmate hit me in face, left eye & right forehead. ()
## 2128                                                                                                                                                                          Doing dips on pull up bar lost balance and hit bar with mouth breaking left front tooth ()
## 2129                                                                                                                                                                                                               Doing end of year cleaning when debris blew into reye
## 2130                                                                                                                                                                                          Doing fence check on yard 1-walked into razor wire. Cut top of my head. ()
## 2131                                                                                                                                                                                                                                             Doing firearms training
## 2132                                                                                                                     Doing maintenance around office w/weedeater. Came in contact w/poison ivy-oak & sumac. Washed off showered that night. Eye began to swell shut.
## 2133                                                                                                                                                                   Doing nightly med nurse duties when eye started hurting and throughout the night it got worse. ()
## 2134                                                                                                                                                Doing shaves on gray unit when inmate came out of cuffs and struck me on left side of face and right side of face ()
## 2135                                                                                                                                                                                                                     Door falling off hinges striking person on head
## 2136                                                                                                                                                                                                                               Door fell in tower and hit on head ()
## 2137                                                                                                                                                           Door opened and EE was going down steps, heavy dust was blowing. Now rt eye is red and a little swelling.
## 2138                                                                                                                                                                                               Dorm 3 pod fixing a leak in the drain line possible allergic reaction
## 2139                                                                                                                                                                                                                         Drank 2 cups of coffee with saliva in them.
## 2140                                                                                                                                                                                    Drawing blood on inmate & entering vein, blood sprayed & splashed on open lesion
## 2141                                                                                                                                                         Drilling a hole in a steel beam above a suspended ceiling and some how some of the metal fell into EE's eye
## 2142                                                                                                                                                                                           Drilling a hole in sink when a chip came off and hit him in the right eye
## 2143                                                                                                        Drilling a holesaw to cut a hole in the top of a counter top. My head on the l- side of my forehead hit the metal handle hard on the cabinet on the wall. ()
## 2144                                                                                                                                                                        Drilling completed, removed glasses & hard hat to wipe brow & concrete grit got into the eye
## 2145                                                                                                                                                            Drilling holes in the ceiling of avery dorm for anchored supports and something got under my glasses. ()
## 2146                                                                                                                                                 Drilling overhead hole for a 1/4 inch anhor in the basement of reese and concrete dust and debris fell into ly eye.
## 2147                                                                                                                                                                                                                                      Drilling wall dust blew in eye
## 2148                                                                                                                          Drinking @ water fountain, turned suddenly due to inmate behind him and hit upper left front tooth on water fountain - broke tooth in half
## 2149                                                                                                                                    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
## 2150                                                                                                                                                           Driving a 4x4 post into ground with post driver, missed post and hit head. Head injury, 2" gash in scalp.
## 2151                                                                                                                                                                                  Driving a state vehicle and ran through a red light collided with another truck ()
## 2152                                                                                                                                                                       Driving back to office from inspection when she was either stung or biten by flying insect ()
## 2153                                                                                                                                                                                                             Driving camp van when child threw football at EE's head
## 2154                                                                                                                                                                                                                  Driving down road and driver side window shattered
## 2155                                                                                                                                                   Driving drill machine, struck by briar bush in face. Scratched eye. First aid only at this time. No time lost. ()
## 2156                                                                                                                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.
## 2157                                                                                                                                                                            Driving home from clemson sc. Slowed due to accident and semi-trailer rear-ended vehicle
## 2158                                                                                                                                                      Driving in personal vehicle going to a community forum in jacksonville nc. EE was involved in a auto accident.
## 2159                                                                                                                            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. ()
## 2160                                                                                                                           Driving motor cycle across lawn paralle to closed parking lot. Motorcyle hit hole in ground. Lacerated lip & fractured left cheek cavity.
## 2161                                                                                                                                                                                         Driving state vehicle clients, stopped at light, rear ended.... Injury head
## 2162                                                                                                                 Driving state vehicle, south on salisbury st. EE was traveling through intersection of salisbury & lane, vehcile struck driver side of EE's vehicle
## 2163                                                                                                                                                                                                                   Driving to basic, lost control hit telephone pole
## 2164                               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. ()
## 2165                                                                                                                                   Driving vehicle. Rocks fell from passing concrete truck and broke front passenger door window. Shattered glass hit his passenger.
## 2166                                                                       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. ()
## 2167                                                                                                                                                                                            Dropped bottle of virex 256disinfectant-deodorizer& it splashed in eyes.
## 2168                                                                                                                                       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.
## 2169                                                                                                                                                   Dropped large heavy box onto handcart. The metal handle of the cart flew forward and hit the rt side of EE's head
## 2170                                                                                                                                                    Dropped mail on floor, bent down to pick the mail up when she came up she hit bottom of metal table injured head
## 2171               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. ()
## 2172                                                                                                                   Due to construction in bldg, suffered from acute allergies causing mucous build up in the eyes & swelling of the eyes. Severely allergic to dust.
## 2173                                                                                                                                                                      Due to icy conditions, EE slipped and fell, hittingher head on the cement in the parking deck.
## 2174                                                                                                                            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
## 2175                                                                                                                                                                                                           During a cell extraction he was struck in the left eye ()
## 2176                                                                                                                                               During a cell search going out of cell and inmate was standing at the cell door. As I walked by he head butted me. ()
## 2177                                                                                                                    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
## 2178                                                                                                                                                                                During a hearing, defendant reached across dest & hit EE in lt eye & cheek with fist
## 2179                                                                                                                                                                               During a normal conversation with patient, the patient lunged out, punched staff x 3.
## 2180                                                                                                                                       During a normal lab experiment as part of a class, the instructor and a student had a reaction to the uv light being used. ()
## 2181                                                                                                                                                           During a pic, pt was fighting while attempting topit. Pt jumped on EE and slammed his head into the wall.
## 2182                                                                                                                                                                                   During a theraputic hold, patient swung behind and struck me under my left eye ()
## 2183                                                                                                                                                                                 During a use of force, inmate spit in her face -- striking her near her bottom lip.
## 2184                                                                                                                                                         During a use of force, the inmate hit him in the face left eye, causing blood to get on him from the inmate
## 2185                                                                                                                                                                                                 During a use of force. Alleges struck in left eye by inmate fist ()
## 2186                                                                                                                                                                        During adl rounds, client pulled away-hitting EE in mouth, scratching gums with finger nails
## 2187                                                                                                                                                                                      During altercation w/inmate EE came in contact w/pepper spray burning left eye
## 2188                                                                                                                   During altercation with inmate, EE was struck in head and shoulder. Left lip laceration and separated shoulder (right). Attny rep claire campbell
## 2189                                                                                                                                                    During altercation with inmate. Per med. Staff, EE sustained knot near l temporal area, blurred vision in l eye.
## 2190                                                                            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 ()
## 2191                                                                                                                                                                        During an exercise opening mouth wide, jaw cracked. Lower jaw infected taking antibiotics ()
## 2192                                                                                                                                                                                       During an inmate altercation was struck on the left side of head by inmate ()
## 2193                                                                                                                                                                                                 During an interaction with a student-EE was infested with head lice
## 2194                                                                                                                                                             During annual clean-up boxes were moved. Temporarywall shifted and struck EE in back of head. Contusion
## 2195                                                                                                                                                           During bacis training-EE was simulating hand- cuffing -the other EE kneed EE in the face breaking her jaw
## 2196                                                                                                                                                     During bath time, pushing client out of stall into shower chair, shower rod/curtain rod fell on top of head. ()
## 2197                                                                                                                                                                                               During battle sene in play accidently hit in mouth w/butt of prop gun
## 2198                                                                                                                                                                    During boat patrol, antoher vessel passed creating a large wake throwing EE out of the vessel ()
## 2199                                                                                                                                                                                               During boxing practical - EE was struck in the face causing nosebleed
## 2200                                                                                                                                                                                               During boxing practical - EE was struck in the face injuring his nose
## 2201                                                                                                                                                                        During cell extraction helmet came off forehead and hite inmate () ****contusion to forehead
## 2202                                                                                                                                                                                                   During cell extraction inmate gased employee by throwing feces ()
## 2203                                                                                                                                                                                                       During cell extraction inmate punched officer in the face. ()
## 2204                                                                                                                                                                                During cell extraction inmate pushed hands underneath face shield and scratched face
## 2205                                                                           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. ()
## 2206                                                                                                               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
## 2207                                                                                                                           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
## 2208                                                                                                                                                          During cell search, an inmate walked away from him and then came back and struck him twice in the face. ()
## 2209                                                                                                                                                                                                                   During check & change resident kicked in nose. ()
## 2210                                                                                                                                                                                               During check & change, patient headbutted in forehead-above l. Eye ()
## 2211                                                                                                                                                                    During check & change-patient kicked leg up hitting on l. Outer eyebrow and breaking glasses. ()
## 2212                                                                                                                                                                                  During check and change resident hit employee in face (left jaw, eye, and ear). ()
## 2213                                                                                                                                                                                     During check and change resident kicked in nose and l. Lower lip-cutting lip ()
## 2214                                                                                                                                                                    During check and change, a resident got away from a coworker (hct) and hit employee in mouth. ()
## 2215                                                                                                                                                               During check change patient aggressive-kicking while attempting to dress-kicked in mouth/chin area ()
## 2216                                                                                                                                                    During chemical reaction. The reaction exploded with huge sound. After that my right ear was something wrong. ()
## 2217                                                                                                                                                                                                          During chk. & chg. -resident headbutted in r. Forehead. ()
## 2218                                                                                                                               During confrontation with inmate, EE was kicked and punched in the face and upper body ------------ atty represented ----------------
## 2219                                                                                           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. ()
## 2220                                                                                                                                               During conversation with patient, the patient hit staff on the left side of her head at the ear area with their fist.
## 2221                                                                                                                                                                During curfew checks for intensive caseload felt what seemed to be insect or spider bite on his head
## 2222                                                                                                                                                        During defensive tactics training-EE did not have his defense up and was struck in the face by an instructor
## 2223                                                                                                                                                During direct supervision of juveniles, staff attempted to restrain juveniles that exhibited assaultive behavior. ()
## 2224                                                                                                                                                                                                                       During eri, EE butted heads with co-worker ()
## 2225                                                                                                                                                                                                          During eri, EE sustained a small cut to inside of mouth ()
## 2226                                                                                                                                                                                                                During eri, co-worker accidentally hit EE in nose ()
## 2227                                                                                                                                                                                                       During eri, pt pulled leg away fm EE, striking her in nose ()
## 2228                                                                                                                                                                                                                      During eri, pt punched/scratched EE in face ()
## 2229                                                                                                                                                                                                      During eri, pt spat at EE and some of it went in EE's mouth ()
## 2230                                                                                                                                                                                                                           During eri, pt spat blood in EE's eyes ()
## 2231                                                                                                                                                                                                             During eri, pt spat in EE's face (possible exposure) ()
## 2232                                                                                                                                                                                                                   During eri, pt spat in EE's face - no exposure ()
## 2233                                                                                                                                                                                                                         During eri, pt spat on EE, blood in spit ()
## 2234                                                                                                                                                                                                                      During erik pt scraped EE's face with teeth ()
## 2235                                                                                                                                                    During fire training EE recieved particles of ropeinto her right eye from a broken rope off an extension ladder.
## 2236                                                                                                                                                                                       During firearm training a fired shotgun slug ricochet and hit EE on the chin.
## 2237                                                                                                                                                                                                   During forced bath, pt tried grabbing EE's neck, scratching EE ()
## 2238                                                                                                                                       During girls varsity basketball practice a studnetaccidentally hit EE in the jaw with her hand when trying to go for rebound.
## 2239                                                                                                                                        During heavy rain, EE walking to rotary auditorium w/ co-worker for faculty training. Carrying umbrella, tripped over 4-5 ()
## 2240                                                                                                                                                                     During hepatic arteriogram/chemoembolization procedure, EE's right eye was splashed with fluid.
## 2241                                     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. ()
## 2242                                                                                                                                                                                             During hunting patrol, walking in woods something felw into his eye. ()
## 2243                                                                                                                                           During inmate confrontation while restraining inmate, officer fields sprayed oc pepper spray and it got into her eyes. ()
## 2244                                                                               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. ()
## 2245                                                                                                                                                                                                        During instruction, EE was sprayed in the face with oc spray
## 2246                                                                                                                                                                                                           During interaction with student EE was infested with lice
## 2247                                                                                                                                                      During investigation, a cylinder was being hung and hit another cylinder, causing one to strike EE in the head
## 2248                                                                                                                                                                       During locker search, EE bent down and hit left side of forehead on top shelf of wall locker.
## 2249                                                                                                                                                                                During manual hold of patient, EE was struck on her face and glasses were broken. ()
## 2250                                                                                                                                                                                                    During manual restraint, patients arm 'caught' employee's eye ()
## 2251                                                                                                      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. ()
## 2252                                                                                                                                  During mealtime, inmate turned on officer hitting him with the left side of his head with his fist. Reddened area on side of head.
## 2253                                                                            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. ()
## 2254                                                                                                                           During nvci intervention training, placing staff in seclusion room and ran out of room tripping over her own feet causing her to fall. ()
## 2255                                                                                                                                                                                      During oc pepper spray training, ofc was exposed in the eyes with the spray ()
## 2256                                                                                                                                                                                                     During oc pepper spray, developed a pain & bump under eyelid ()
## 2257                                                                                                                                                                    During oc spray training, I was sprayed with mase. Since then I have been experiencing headaches
## 2258                                                                                                                                                                                      During off campus outing on school van, student headbutted staff in the mouth.
## 2259                                                                                                                                                                       During oleoresin capsicum spray training EE was sprayed in the face - cornea abraison lt eye.
## 2260                                                                                                                                                                                                    During patient intervention, pt hit employee breaking glasses ()
## 2261                                                                                                                                                                                                        During patient restraint, pt headbutted EE chipping tooth ()
## 2262                                                                                                                        During patient wrap, patient grabbed staff's hair, pulling staff to floor striking her head. Received mutiple injuries during th struggle ()
## 2263                                                                                                                                                 During physical restraint of an aggressive studentthe student leaned back and caused EE to strike head against wall
## 2264                                                                                                                                                                                               During pic was punched in face by patient -glassesbroken - ? Fx. Nose
## 2265                                                                                                                                     During pit pt hit my upper nose between eyes & coming out seclusion room grabbed rt arm & pulled to ground striking rt shoulder
## 2266                                                                                                                                                                                                               During placing pt in Mr, Pt spat in EE's face/eyes ()
## 2267                                                                                                                                                     During pregame batting practice EE was struck in the face by a line drive fracturing orbital and maxillary bone
## 2268                                                                                                                                                    During prison emergency response training employeewas taken down with arm bar and employee hit head on mat hard.
## 2269                                                                                                                                                                                                          During pt intervention, pt scratched EE face, neck, eye ()
## 2270                                                                                                                                                                                                                    During pt intervention, pt scratched in mouth ()
## 2271                                                                                                                                                        During rec activies while playing basketball with juveniles employee was hit in lower lip requiring stitches
## 2272                                                                                                                                                                                           During restraint of unsafe client, staff was scratchedin the left eye. ()
## 2273                                                                                                                                                                                                         During restraint with client, staff was struck in the face.
## 2274                                                                                                                                                                                      During restrictive intervention patient head butted employee in top of head ()
## 2275                                                                                                                    During restroom breaks, an inmate exited his room kicking the door open, inmate advanced on employeerefusing instructions, sprayed with oc spray
## 2276                                                                                                  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. ()
## 2277                                                                                                                                                                     During routine cleaning on restroom employee stated something (bug) flew in to her left ear. ()
## 2278                                                                                                                                                                                        During routine patrol was involved in an altercati-on with an unruly inmate.
## 2279                                                                                                                                                                 During safety round a patient styarted pulling staff's hair and tried to pluck out her right eye ()
## 2280                                                                                   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. ()
## 2281                                                                                                                                                                                        During scott air pack training had a mask on that caused rash on forehead ()
## 2282                                                                                                                                                During second shift, EE went outside to purchase asoda from drink machine, high winds blew debris into EE's left eye
## 2283                                                                                                                                                           During showering of client, coming out of shower, slipped & fell on floor; hit head on wall in bath-room.
## 2284                                                                                                                                                                                            During speech evaluation, client hit staff on right side of head/ear. ()
## 2285                                                                                                                          During state duty in relief help at hatteras island EE contacted conunctivitis in right eye. ***************see log notes*****************
## 2286                                                                                                                                   During supervising, discarding swollen cans, one can exploded and hit EE/20feet away on right side of face, cutting right ear. ()
## 2287                                                                                                                                                                                                          During the course of an exam of b. T. P. Services, a 17 ()
## 2288        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. ()
## 2289                                                                                                                                 During the oc pepper spray training exercise when sprayed with the pepper spray and flushin I felt there was something still in eye
## 2290                                                                                                                                                                     During the seclusion and restraint of a patient the EE was hit in the lip by the patient's knee
## 2291                                                                                                                                                                                                During therapeautic hold on patient, employee was kicked in mouth ()
## 2292                                                                                                                                                                During therapeutic hold of a patient, the patient spit in staff's rt eye & bit staff on thier rt arm
## 2293                                                                                                                                                                                             During time of accident we were involved with use of force on an inmate
## 2294                                                                                                                     During training EE was positioned for takedown to mat on floor, requiring r/arm to be behind neck inorder to fall backwards on back. In doing s
## 2295                                                                                                                                                                                                       During training EE was sprayed in face with oc spray in eyes.
## 2296                                                                                                                                                     During training excercise officers partner accidentally throw officer into wall, causing him to hit his head ()
## 2297                                                                                                                                                     During training exercise, employee entered building 116, walked into a glass door cutting bridge of his nose ()
## 2298                                                                                                                                                       During training practicing a technique other officer pulled on my head and the cap of my front tooth broke ()
## 2299                                                                                                                                                                                                During training session, employee hit her head on restraint chair ()
## 2300                                                                                                                                                During training, EE was exposed to live shots from firearms. Was wearing hearing protection during this orientation.
## 2301                                                                                                                                                                                                               During training, EE was sprayed in face with oc spray
## 2302                                                                                                                                                                                                 During training, fell backward to ground with trainee on top of him
## 2303                                                                                                                                                                                                     During training, while being pepper sprayed her eyes were burnt
## 2304                                                                                                                                                               During unarmed self-defense EE was hit in the mouth while attempting an uasd technique by co- worker.
## 2305                                                                                                                                                                                     During use of force incident inmate pulled him down & stuck him on side of nose
## 2306                                                                                                                                                                                                 During wilderness training canoe capsized and employee hit her head
## 2307                                                                                                                                                                                                During wrestling practice employee receive blow to nose from student
## 2308                                                                                                                                                                                                                                              Dust blew in right eye
## 2309                                                                                                                                                                                                          Dust blew in right eye as a lawn mower passed by employee.
## 2310                                                                                                                                                                                                                                         Dust fell into EE's rt eye.
## 2311                                                                                                                                                                                                                          Dust from skill saw went into EE's rt eye.
## 2312                                                                                                                                                                           Dust particles dispersed into eye while throwing away trash in outdoor waste container ()
## 2313                                                                                                                                        Dust particles got into particles eye - contact lens. Caused irritation wokring at secretary's desk on inventory list-rt eye
## 2314                                                                                                                              Dust, mold, and paint fumes caused by construction at the local office inflamed employee's sinus cavity, causing swelling and redness.
## 2315                                                                                                                                                        Dusting area to paint that insulation had been pulled out previously thinks piece of insulation in right eye
## 2316                                                                                                                                                                                                       Dusting bookcase in community room and dust went into rt eye.
## 2317                                                                                                                                                                                                                                  Dye on trash got on employee's eye
## 2318                                                                                                                                                  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.
## 2319                                                                                                                                                                                                E was sitting at control desk when eye became irritated in "c" dorm.
## 2320                                                                                                                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.
## 2321                                                                                                                                                            EE & another staff member bumped heads while assisting to try to break up a fight between 2 patients. ()
## 2322                                                                                                                                           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 ()
## 2323                                                                                                                                                         EE & several students were out hitting golf balls & student mistakenly struck EE in the corner of left eye.
## 2324                                                                                                                                   EE & students were constructing flower pots. One of the students was hammering & a nail flew from the hammer & hit EE in the eye.
## 2325                                                                                                             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
## 2326                                                                                                                                                                EE a piece of debris fell into his eyes while supervising inmates replacing a light fixture (lt eye)
## 2327                                                                                                                                                                                                                  EE accidentally punctured her rt eye with a pencil
## 2328                                                                                                                                                                                       EE accidentally sprayed self in the face with board cleaner... Eye irritation
## 2329                                                                                                                                                                                                                 EE accidently drank paint thinner from wrong bottle
## 2330                                                                                                                                                                                                                   EE accidently had chemical sprayed on top of head
## 2331                                                                                                                                                                                                             EE accidently rubbed some bengay ointment in her rt eye
## 2332                                                                                                                                                                                                   EE adding bottles to a nitic acid bath and splashed into her eyes
## 2333                                                                                                                                                                        EE adjusting a denture in lab; no patient involved some acrylic resin got into EE right eye.
## 2334                                                                                                                                                                       EE adjusting belts exhaust fan with fan off some thing flew into eye. Foreign body in lt eye.
## 2335                                                                                                                                       EE adjusting pumps under deposition chamber. As hestood up, his head was struck by a piece of metal on the deposition chamber
## 2336                                                                                                                                                                                                                        EE administered cpr w/o a mask/safety device
## 2337                                                                                                                                                                       EE advised that debris got in his left eye while operating creier tractor installing culvert.
## 2338                                                                                                                       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
## 2339                                                                                                              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
## 2340                                                      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. ()
## 2341                                                                                                                                                                                             EE alleged a child threw a toy and hit her in the face close to rt eye.
## 2342                                                                                                                                                                                       EE alleged dirt went into his eyes while he was cleaning the parking deck. ()
## 2343                                                                                                                                                                          EE alleged excessive dust in an old duct that the EE was discarding got into his left eye.
## 2344                                                                                                                                EE alleged he applied the brakes on his bike causing it to throw him over the handlebars injuring his hands, wrists, face and knees.
## 2345                                                                                                                                                                                           EE alleged he opened a window from inside, raised up and hit his head. ()
## 2346                                                                                                                    EE alleged he walked out the backdoor, twisted hisankle & fell down the stair injurying his knees, lt thumb, rt side chest & head, & left ankle.
## 2347                                                                                                                                        EE alleged he was changing out container at springgarden apartments trash chute room & an air borne particle got in his eye.
## 2348                                                                                                 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. ()
## 2349      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
## 2350                                                                                                                                             EE alleged he was driving into the sink building compound when something flew into his rt eye causing corneal abrasion.
## 2351                                                                                                                                                           EE alleged he was making rounds and walking betweethe school building and tripped over some dirt and fell
## 2352                                                                                                                                                                                     EE alleged he was using blower & sweeper & noticeddiscomfort in ears after use.
## 2353                                                                                                                                                                       EE alleged he was walking up steps when legs gave out and he fell backwards and hit his head.
## 2354                                                                                                           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. ()
## 2355                                                                                                                                         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. ()
## 2356                                                                                                                                                            EE alleged she poured liquid from refrigerator in her cup, dranked from it, and discovered it was bleach
## 2357                                                                                                                                                            EE alleged she tripped or slipped down a flight ofsteps to landing injuring lt knee, rt shoulder & head.
## 2358                                                                                                                                                                       EE alleged she was cleaning in the bathroom when an insect flew in the window and bit her. ()
## 2359                                                                                                                                                              EE alleged she was picking up trash from ground when dumpster door swung back and hit her in the head.
## 2360                                                                                                                         EE alleged she was removing an empty 5gallon waterbottle from cooler when the bottle struck her in the chin and knocked her teeth together.
## 2361                                                                                                                                                                      EE alleged she was reporting to work & fell on icelanding hard on her back & hitting her head.
## 2362                                                                                                                    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.
## 2363          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. ()
## 2364                                                                                                                                                                                               EE alleged stumbled over mail carrier in walkway &injured head & leg.
## 2365                                                                                                                                                                 EE alleged that a violent inmate suddenly turned &struck him on the right cheekbone whith his fist.
## 2366                                                                                                                                                                                               EE alleged that dust/debris in eye & produced laceration; unsure how.
## 2367                                                                                          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.
## 2368                                                                                                                                        EE alleged that inmate accidentally burned him under his right eyelid with a cigarette while escorting him back to the dorm.
## 2369                                                                                                                                                                  EE alleged that inmate struck EE with closed fist in facial area, injury to rt side of cheek, nose
## 2370       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. ()
## 2371                                                                                                                                                            EE alleged was moving books from one shelf when a metal bookend and approx. 5 books feel on her head. ()
## 2372                                                                                                                                                                                  EE alleges a piece of lumber fell striking him in the head while repairing a porch
## 2373                                                                                                                                                                                                                                  EE alleges accumulated work stress
## 2374                                                                                                                                                                                  EE alleges airborne contaminants have been irritating eyes and airway for 3 weeks.
## 2375                                                                                                                                                                 EE alleges cap on bottle was loose and when bottleslipped out of hand-chemical splashed into rt eye
## 2376                                                                                                                                                                                   EE alleges cleaning outside windows with window spray, spray flew into EE's eyes.
## 2377                                                                                                                                                                   EE alleges clearing storm debris; picked up a treelimb and the limb brushed/abraded his right eye
## 2378                                                                                                                                                                                                       EE alleges dust particles from buffing floors blewinto rt eye
## 2379                                                                                                                                         EE alleges experienced an allergic reaction from chemicals used by terminex in office, eyes burned itched & began to swell.
## 2380                                                                                                                                                     EE alleges exposure to chemical - possible sink drainage. Employee claims chemical odor caused asthma to react.
## 2381                                                                                                                                                                         EE alleges exposure to cyclopentadiene has resulted in pain and blurred vision in both eyes
## 2382                                                                                                                            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.
## 2383                                     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.
## 2384                                                                                                                                                                                                                       EE alleges he has a recurring eye irritation.
## 2385                                                                                                                                        EE alleges he walked in a room that had stripper on the floor. He slipped and fell backward and hit the back of his head. ()
## 2386                                                                                                                                                                             EE alleges he was attempting to plug in a cord and bumped his head on a shelf above. ()
## 2387                                                                                                                                                                                    EE alleges he was escorting an inmate, and the inmate struck while handcuffed ()
## 2388                                                                                                                                EE alleges he was monitoring dorm. Waiting for chowcall; EE alleges he remebers sitting on a stool, then getting up off the floor ..
## 2389                                                                                                                                 EE alleges he was mopping floor in control room area. He sprayed cleaner and his eyes started burning and he had trouble breathing.
## 2390                                                                                                                                                            EE alleges he was outside of a dorm after finishing the count when he felt something crawling in his ear
## 2391                                                             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. ()
## 2392               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. ()
## 2393                                                                                                                                  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
## 2394                                                                                                                                             EE alleges received a new ear piece for work that caused him a severe infection in his left ear. Reports onset Oct 2006
## 2395                                                                                                              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
## 2396                                                                                                                                                              EE alleges rt temple on the corner of metal book- shelf when straightening up from picking up a pencil
## 2397                                                                                                                                                                                                     EE alleges seizure and nose bleeds caused by job related duties
## 2398                                                                                                              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
## 2399            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. ()
## 2400                  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. ()
## 2401                                                                                                  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. ()
## 2402                                                                                                                                                              EE alleges she was removing a staple from a form when the staple broke and flew into her right eye. ()
## 2403                                                                                                                     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
## 2404                                                                                                                                                                                                   EE alleges slipping on wet floor hitting rt side of face to floor
## 2405                                                                                                                                                                                                       EE alleges supervisor attacked on forehead and upper left arm
## 2406                                                                                                                                                                                     EE alleges sweeping north stairway in frewell building and was exposed to dust.
## 2407                                                                                                         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. ()
## 2408                                                                                                                                                                      EE alleges that 50% caustic dripped onto scalp, forehead, and finger causing 1st degree burns.
## 2409                                                                                                                                            EE alleges that after cleaning a bathroom she tookoff her gloves, rubbed her right eye and disinfectant got into her eye
## 2410                                                                                                               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
## 2411                                                                                                         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. ()
## 2412                                                                                                                                   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
## 2413                                                      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. ()
## 2414                                                                                                                 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.
## 2415                                                                                                                                           EE alleges that he tripped on a floor rug causing him to fall into a metal "button" cutting his headrequiring 6 stitches.
## 2416                                                                                                                                                  EE alleges that he was coiling cable under a stagewhen he walked into a metal support and hit his head; laceration
## 2417                                                                                                                                                                                        EE alleges that he was hit in left eye by inmate while supervising the yard.
## 2418                                                                                                                                                              EE alleges that he was hit in the eye and kicked in the head by an inmate while supervising yard call.
## 2419                                                                                                                                                                      EE alleges that he was removing sling blades from the rack & something got into his right eye.
## 2420                                                                                                             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
## 2421                                                                                                                                                             EE alleges that he was walking down k&l chute area he alleges that a flying insect flew into his rt eye
## 2422                                                                                                                                                                                                                EE alleges that mop water splashed into her left eye
## 2423                                                                                                             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
## 2424                                                                                                                                                                    EE alleges that she was picking up mail from drop boxes in dorms and lid to box fell on her nose
## 2425                                                                                                                                                                        EE alleges that she was supervising inmates when a inmate threw a rock and hit EE by the eye
## 2426                                                                                                                                                  EE alleges that the decontamination process of pepper spray training, he bumped his left eye withthe water nozzle.
## 2427                                                                                                                                              EE alleges that when he woke his eyes were swollenshut. Did not know if the problem was due to fly bites or weed dust.
## 2428                                                                                                                                                                                   EE alleges that while assigned to tower #3 something flew into her right eye(bug)
## 2429                                                                                                                 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
## 2430                                                                                                                                           EE alleges that while engaged in a use of force with inmate hooper that inmate struck him on left side of face with fist.
## 2431                                                                                                                                                                     EE alleges that while opening the exercise room windows some type of debie fall into his rt eye
## 2432                                                                                                                          EE alleges that while supervising inmates alongside she began to walk backwards to maintain safe distance she claims she stepped in a hole
## 2433                                                                                                                                                                                                                       EE alleges that while working bug bit her lip
## 2434                                                                                                                                                                                EE alleges top broke off on bottle of cleaner whenit fall and spray went into rt eye
## 2435                                                                                                                                              EE alleges walking over curb in parking lot, lost balance and fell against restraining wall strikingforehead and hand.
## 2436                                                                                                                                                                          EE alleges was bent over picking up trash, stood up& bumped her head on a shelf cutting it
## 2437                                                                                                                               EE alleges was changing lightbulbs, while climbingdown ladder he missed the bottom rung & fell against cinder block wall hitting head
## 2438                                                                                                                                                     EE alleges was exiting golf cart while it was backing up & fell in the parking lot injuring his face/head/chest
## 2439                                                                                                                                                             EE alleges when dumping a wastebasket-copier tonerdispersed into air-resulting in toner entering rt eye
## 2440                                                                                                                                                                                                        EE alleges while hanging sheetrock-debris flew into left eye
## 2441                                                                                                                          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
## 2442                                                                                                                                                                           EE already had a cut on forehead. Re-opened cut by hitting head on corner of bottle cage.
## 2443                                                             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. ()
## 2444                                                                                                                 EE and another trooper were attempting to arrest asuspect. He pushed holcombe causing him to fall toground, striking back of head on cement marker.
## 2445                                                                                                                                                         EE and co-worker involved with client co-worker raised up hitting EE in the nose with head. Fractured nose.
## 2446                                                                                                                                EE and other patrol members were in pursuit of violators when they discarded controlled substancecocaine was ingested thru air vents
## 2447                                                                                                                             EE and other patrol members were in pursuit of violators when they discarded controlled substancesubstance was ingested thru air vents.
## 2448                                                                                                                                                                EE and patient moved towards each other at the same time accidently bumping heads together--forehead
## 2449                                                                                                             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. ..
## 2450                                                                                                                                                 EE and two others were welding a clamshell bucket at the same time. Protective welding hoods and glasses were used.
## 2451                                                                                                                                                                                      EE apparently fainted hitting sharp edge & causing extensive bleeding of head.
## 2452                                                                                                                                                                                               EE applying pressure to caulk gun and piece of caulk went into rt eye
## 2453                                                                                                                                                                                           EE applying splint to someone when he struck across face hitting left eye
## 2454                                                                                                                                                                                            EE approached a patient and patient punched EE in the face breaking nose
## 2455                                                                                                                   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
## 2456                                                                                                                                                                                    EE approached drivers veh when a small dog came through window and bit EE on lip
## 2457                                                                                                                                                               EE approached pt re doing an activity, pt said no, grabbed EE's hair, scratched EE in the left eye ()
## 2458                                                                                                                                    EE arrested subject for driving while impaired. While enroute to the detention center arrestee coughed & saliva struck ees face.
## 2459                                                                                                                                                                                    EE arriving the following day, was unable to hear in right ear, from firing line
## 2460                                                                                                               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.
## 2461                                                                                                                          EE as helping her supervisor store tissue in basement closet. As she exited towards the freight elevatr she hit her head on overhead pipes
## 2462                                                                                                                                                                                              EE ascending off ladder, approached top of ladder and hit head on roof
## 2463                                                                                                                                                                   EE asked client to sit on bed, client hit EE in faccausing scratch to lip and breaking eyeglasses
## 2464                                                                                                                                                                                            EE asked patient not to go back into room and patient punched EE in face
## 2465                                                                                                                                                      EE asked patient to return cd player and patient struck EE in the (left side) face 3 x's with an open hand. ()
## 2466                                                                                                                                                                      EE asked patient to sit down, EE then turned and the patient hit EE in the face with his fist.
## 2467                                                                                                                                                                                      EE asked pt who shoes he had on pt turn and hit her in the head with his fist.
## 2468                                                                                                              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.
## 2469                                                                                                                                                                                                      EE asked to got othe bathrooma nd client punched EE in the jaw
## 2470                                                                                                                                                                                                 EE assaulted by a student. EE was hit upside the head by a student.
## 2471                                                                                                                                                                                                                       EE assaulted by client-bruised about left eye
## 2472                                                                                                                                                EE assaulted by inmate. Inmate struck EE in face and head w/fists. EE also fell to floor and struck head on concrete
## 2473                                                                                                                            EE assigned to 2nd floor. Was attempting to cuff inmate. Inmate refused to be cuffed & while attempting to restrain inmate hit EE in eye
## 2474                                                                                                                                                          EE assigned to post 2 - lowered supply basket fromcatwalk. Basket hit EE in top of head. Bump top of head.
## 2475                                                                                                                     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
## 2476                                                                                                                                 EE assigned to segregation-inmate threw tray of food & refused to return to cell. Inmate hit EE on upper lip causing nose to bleed.
## 2477                                                                                                                                                                                             EE assisting change client, client kicked emp. In the right side of jaw
## 2478                                                                                                                                                            EE assisting client out of dining room when clientattacked EE-knot on side of head, soreness of shoulder
## 2479                                                                                                                                                                                    EE assisting client put shoe on, client hit EE in right eye. Bruise to right eye
## 2480                                                                                                                                                                                                                   EE assisting client with conjunctivities - rt eye
## 2481                                                                                                                                                                                              EE assisting client; client started spitting. Client spit in left eye.
## 2482                                                                                                                                                                            EE assisting in lifting client into chair-client headbutted EE in mouth cracking tooth..
## 2483                                                                                                                                                                                     EE assisting in recling sewer line when rod kickedback hitting EE above rt eye.
## 2484                                                                                                                                                                                EE assisting in restraining a student when he was poked in lt eye by students finger
## 2485                                                                                                                                    EE assisting inmate that hand seizure EE turned inmate over on his side to keep him from choking fluid splashed lt side of face.
## 2486                                                                                                                                                                EE assisting officer w/securing patient to cell patient bent head causing EE to be sprayed in lt eye
## 2487                                                                                                                                                                      EE assisting other EE in providing care for pt 1 pputting patient to bed, pt scratched forhead
## 2488                                                                                                                                 EE assisting others extinguish a burning truck in parking lot upon return from dinner at 1900 on 01231996. Throat sore and bleeding
## 2489                                                                                                                                                                   EE assisting others in chaning a display-picked up short strips and raised up and hit top of head
## 2490                                                                                                                                                                      EE assisting pt to seclusion rm, pt head butted staff in nose/face, complaining of headache ()
## 2491                                                                                                                                                                                                                EE assisting pt, knee of pt hit EE under chin, bruis
## 2492                                                                                                                                                                        EE assisting putting supports in storage building supports fell striking EE on left forehead
## 2493                                                                                                                                                                                               EE assisting resident, resident hit EE in mouth w/elbow & broke tooth
## 2494                                                                                                                                                                EE assisting restrain an inmate while he was havinseizure-during seizure inmate struck EE on rt face
## 2495                                                                                                                                                                      EE assisting with injured victim-lost footing and fell onto a sall tree which struck left eye.
## 2496                                                                                                                                                                                           EE assisting with medication into g-tube, medicinesplashed into left eye.
## 2497                                                                                                                                                                                                   EE assisting with mole removal when chemical splashed in left eye
## 2498                                                                                                                                                                                                                      EE assiting client with conjuntivetis - rt eye
## 2499                                                                                                                                                                                      EE assiting with putting client in restraints and client kicked EE in the nose
## 2500                                                                                                                                               EE at firing range - riot helments required part of training. After firing hand slight ringing and pain to right ear.
## 2501                                                                                                                        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.
## 2502                                                                                                                                          EE at water fountain drinking water, got strangledlost breath, EE passed out. Fell face down was out for about 30 seconds.
## 2503                                                                                                                                                                  EE att to arrest suspect-suspect resisted and both fell to the ground causing EE break front tooth
## 2504                                                                                                                                                                   EE att to assist w/combative suspect who was rolling on the ground and kicked EE in the left eye.
## 2505                                                                                                                                         EE att to hold extremely aggresive client with numerous staff members-client and EE fell across bookcase broke front tooth.
## 2506                                                                                                                                   EE att to stop client from running when tray mealswere delivered-client knocked fire extngshr off wall and it hit EE in the head.
## 2507                                                                                                                                                                                 EE att to stop client from swinging at another client and was hit in the right eye.
## 2508                                                                                                                                                EE att to stop one client from hitting another client-client fell on EE causing EE to hit wall with face and rt arm.
## 2509                                                                                                                                                                                                                       EE attacked by pt, hit 4 times in the head ()
## 2510                                                                                                                                                                EE attempted to assist a student with a removing a syringe and dcm fluid squirted into his left eye.
## 2511                                                                                                                         EE attempted to diffuse irrated inmate to no availee decided to move inmate to more secure cell, inmate refused to comply. Inmate advanced.
## 2512                                                                                                                          EE attempted to disperse two student who were arguing. Arugment became physical, EE was inadvertently struck on rt-side of head by student
## 2513                                                                                                                                                                                          EE attempted to get cup from patient & patient scratched EE in the face ()
## 2514                                                                                                                                                                                  EE attempted to intervene btw. 2 clients, client began punching EE, hit EE in nose
## 2515                                                                                                                                          EE attempted to move a pick-up truck from shoulder of I-40. While moving truck some unknown debris went into EE right eye.
## 2516                                                                                                                                                                                 EE attempted to place restraints on inmate, inmate became upset and spit in EE face
## 2517                                                                                                                                                                                                        EE attempted to raise chair and hit head against metal shelf
## 2518                                                                                                                                      EE attempted to remove pull pin with teeth becausee couldn't remove by hand, while attempting to extinguish an ambulance fire.
## 2519                                                                                                                                            EE attempted to restrain patient that was attacking physician, fell to ground kicked multi times on head left hand, ribs
## 2520                                                                                                                                                                          EE attempted to secure a student who was hitting him in the head with his fists. Headache.
## 2521                                                                                                              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
## 2522                                                                                                                                                                                     EE attempting to break up patient fight. Struck head on wall during altercation
## 2523                                                                                                                                                                           EE attempting to change trk tire when he slipped on grease on floor and cut rt side chin.
## 2524                                                                                                                                                                                EE attempting to get an aggressive client off of another EE and injured back of head
## 2525                                                                                                                                                                         EE attempting to get dustmop out of housekeeping closet, mop fell hitting EE in the head ()
## 2526                                                                                                                                                                                              EE attempting to hang her coat in closet when filehanger fell on head.
## 2527                                                                                                                                                     EE attempting to lift a manhole cover with crowbarand crowbar slipped hitting EE in the face chipping two teeth
## 2528                                                                                                                                                                                        EE attempting to remove client's foot from walker when client hit EE in face
## 2529                                                                                                                                                                                                       EE attempting to restrain aggressive client-injuryto left eye
## 2530                                                                                                                                                             EE attempting to shift a column of 25 cases acrossa wooden pallet when one case fell hitting EE on head
## 2531                                                                                                                                                                                 EE attempting to show plumber where toilet leakingwas stuck in lt eye with plunger.
## 2532                                                                                                                   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.
## 2533                                                                                                                                          EE attemtpting to apprehend a traffic violator, when he lost control and overturning his patrol car. Laceration upper lip.
## 2534                                                                                                                         EE attended oc pepper spray training, was sprayed in the eyes causing a burning sensation. EE couldnot open eyes for approximatley 2 hours.
## 2535                                                                                                                                                                                            EE attending a dinner, bit into a piece of french bread and broke tooth.
## 2536                                                                                                                            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.
## 2537                                                                                                                                    EE attnding pepper mace training EE sprayed facialarea. Used water to flush out eyes & facial area. Eyes have burning sensation.
## 2538                                                                                                   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 ()
## 2539                                                                                                                                                                                               EE bathing individual, when individual threw bath water in EE's face.
## 2540                                                                                                              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 ()
## 2541                                                                                                                                                                                               EE became dizzy, nausea and lightheaded from fumesused to unclog sink
## 2542                                                                                                                                                                                                       EE became exposed to poison ivy while weedeating at lake holt
## 2543                                                                                                                                                                                                     EE became overheated while driving tram causing heat exhaustion
## 2544                                                                                                                                                                                                                              EE began itching while folding laundry
## 2545                                                                                                                                                                             EE being sprayed with pepper spray, EE turned head to right and spray got into left ear
## 2546                                                                                                                                                                                            EE bending down to get apron and stood up and hit head on back of grill.
## 2547                                                                                                                                                                           EE bending down to pick up something in the closetand stood up and struck head on a nail.
## 2548                                                                                                                                                                                   EE bending down to wash rags and struck her head on the faucet causing laceration
## 2549                                                                                                                                                                                        EE bending over arrange items on table-stood up and hit head on shelf above.
## 2550                                                                                                                                                                              EE bending over printer, changing cable--raised upand struck forehead on wall cabinet.
## 2551                                                                                                                                                               EE bending over squeezing mop out when door that was propped open slammed shut hitting EE on forehead
## 2552                                                                                                                                                                                EE bending over to pick up dirty napkin-struck rt eye on the adaptive equipment box.
## 2553                                                                                                                                      EE bending reaching inside the double sided metal cabinet-stepped back into cabinet leaving a 2" laceration-top lt scalp area.
## 2554                                                                                                                                                                  EE bent down to check hole for turtles and a needle rush poked EE in lt eye causing blurred vision
## 2555                                                                                                                                                                                                  EE bent down to empty trash and hit right eye hardon copy machine.
## 2556                                                                                                                                                                                      EE bent down to fix basket under tv and struck head under tv while standing up
## 2557                                                                                                                                                                 EE bent down to fix bucket for mopping came up head hit corner of electric box in housekeeping room
## 2558                                                                                                                                                                                             EE bent down to get medication from refrigerator and door hit left eye.
## 2559                                                                                                                                                                                 EE bent down to lift gate, stood up and lost balance, falling hit head on the gate.
## 2560                                                                                                                                                                   EE bent down to open gate door which stopped unexpectedly and EE cut rt side of eye and forehead.
## 2561                                                                                                                                                                                      EE bent down to pcikup trays off floor and came upand hit his head on machine.
## 2562                                                                                                                                                                               EE bent down to pick something up from under desk and struck left ear on side on desk
## 2563                                                                                                                                                   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
## 2564                                                                                                                                                           EE bent down to pick up clipboard off the floor and hit his head on one of the nails when standingback up
## 2565                                                                                                                                                                                                             EE bent down to pick up fax off the floor and hit head.
## 2566                                                                                                                                                                EE bent down to pick up something off floor when stood up she struck her head on a fire extinquisher
## 2567                                                                                                                                         EE bent down to pick up trash on the floor of the breakroom and upon standing, struck the top of head on wooden cabinet. ()
## 2568                                                                                                                                                                        EE bent down to place a piece of wood on the floor and stood up hitting ear on shelf bracket
## 2569                                                                                                                                                   EE bent down to put something in trash can under desk and struck his forehead on ruler to paper drilling machine.
## 2570                                                                                                                                                                      EE bent down to remove boxes out of cabinet and bumped head on the 1st door on the cabinet. ()
## 2571                                                                                                                                                                         EE bent down to retrieve a pair of scissors and struck his head on the corner of book shelf
## 2572                                                                                                                                                                        EE bent down to retrieve paper when she stood up she hit her head on the side of the shelve.
## 2573                                                                                                                                                                               EE bent over and hit his forehead on the corner of the table causing slight cut/scrap
## 2574                                                                                                                                                                    EE bent over to get into a car and the door frame of the car closed and struck EE in the rt eye.
## 2575                                                                                                                                                                EE bent over to get paper out of the fax machine and hit her head on the shelf above the fax machine
## 2576                                                                                                                                                                                 EE bent over to pick up a piece of paper when she struck her head on the door latch
## 2577                                                                                                                                                                                        EE bent over to pick up bottle of water, lost balance and did a nose dive ()
## 2578                                                                                                                                                                                           EE bent over to pick up server - standing up and hit head on server deck.
## 2579                                                                                                                                                                                    EE bent over to pick up sheets from floor and hit top of head on bottom of door.
## 2580                                                                                                                                   EE bent over to pick up something from the floor, when she stood up, her nose came in contact with apartially open wooden drawer.
## 2581                                                                                                                                                                                                 EE bent over to pick up telephone log and hit headon corner of desk
## 2582                                                                                                                                                                                                         EE bent over to pull trash and resident hit EE with fist ()
## 2583                                                                                                                                                                                                   EE bent over to repair vcr chair swung around and hit EE rt cheek
## 2584                                                                                                                                  EE bent over to speak to client-when another client bumped into EE causing EE to hit forehead on wheelchair cutting left eye brow.
## 2585                                                                                                                                                                                           EE bent over to throw trash away and when she came up hit head on cabinet
## 2586                                                                                                                          EE bent over to turn off water faucet after rinsing protective gear following sampling trip. Struck head on hose holder bracket. Cut scalp
## 2587                                                                                                                                                                                             EE bent to grease air handler on boiler, hit left eye on extended pipe.
## 2588                                                                                                                                                             EE bent to pick up trash can and lifted too fast and corner of can and hit EE in the side of the mouth.
## 2589                                                                                                                                                                            EE bit into bone in meat on 2 seperate occassions in the cafeteris and fractured 3 teeth
## 2590                                                                                                                                                                                                         EE blacked out and fell against power lift and hithis head.
## 2591                                                                                                                                                                                                                    EE blacked out and fell hitting head and elbows.
## 2592                                                                                                                                                                                                       EE blacked out applying band-aid to finger (EE hadnot eaten).
## 2593                                                                                                                                                 EE blood pressure went up after being sprayed with pepper spray during training. Face was sprayed with pepper spray
## 2594                                                        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. ()
## 2595                                                                                                                                                                                            EE breaking ice on sidewalks. It was slippery. Fell on ice head hit ice.
## 2596                                                                                                                                       EE breaking up two juveniles fighting & was assaulted by one of the juvenile & hit on upper left back; head & left cheek bone
## 2597                                                                                                                                  EE bumped a sterile pasteur pippette inside a bac-terial hood. It shattered. Glass was blown out, EE felt irritation in right eye.
## 2598                                                                                                                                                                                                                         EE bumped head against a log in an exhibit.
## 2599                                                                                                                                                                                                                           EE bumped head aganist wall while filing.
## 2600                                                                                                                                                                                                                                      EE bumped head getting vehicle
## 2601                                                                                                                                                                                                                                        EE bumped head on cabinet ()
## 2602                                                                                                                                                                                                                               EE bumped head on corner of building.
## 2603                                                                                                                                                                                                        EE bumped head on desk causing a laceration above right eye.
## 2604                                                                                                                                                                                                              EE bumped head on entrance. Small bruise and headached
## 2605                                                                                                                                                                                                                         EE bumped head on fuel box on single cell b
## 2606                                                                                                                                                                                                                                             EE bumped head on shelf
## 2607                                                                                                                                                                                                                                            EE bumped head on stairs
## 2608                                                                                                                                                                                        EE bumped head on tv table in pt's room prev 22. 5% ppd to back on old clm..
## 2609                                                                                                                                                                                                                          EE bumped his head against the trash truck
## 2610                                                                                                                                                                                                                                     EE bumped his head on a cabinet
## 2611                                                                                                                                                                                      EE bumped his head on a/c duct. Cut on right side of head requiring 3 stitches
## 2612                                                                                                                                                                                   EE bumped his head on gate while helping clients take out train. Small laceration
## 2613                                                                                                                                                                                                                                            EE bumped into aijo lift
## 2614                                                                                                                                                                                                                EE burned eyes from the rays on the welding machine.
## 2615                                                                                                                                                                                                        EE came in contact with abrasive material on bridge of nose.
## 2616                                                                                                                                                                                     EE came in contact with poison ivy while on foot patrol for hunting violations.
## 2617                                                                                                                                                                   EE came out of room and consumer tried to hit EE. Consumer hit EE's arms and back into EE's face.
## 2618                                                                                                                                                                                                        EE came out of water with sever pain in both ears from dive.
## 2619                                                                                                                                                                                         EE car was rear ended by another. EE hit back of head on vehicle head rest.
## 2620                                                                                                                                                                                EE carried fiberglass filter. Later rubbed eye andfiberglass got into the right eye.
## 2621                                                                                                                                                                EE carrying baskets from upstairs to downstairs and fell missed last step and fell-basket cut rt eye
## 2622                                                                                                                                                                                      EE carrying computer when he tripped and fell and hit head and eye on computer
## 2623                                                                                                                                                                                        EE caught elbow in nose while participating in recreation with his students.
## 2624                                                                                                                                                                   EE changing a patient & was unaware of posion on container of aloe & sprayed solution in her face
## 2625                                                                                                                                                                                                                    EE changing client-client stuck finger in rt eye
## 2626                                                                                                                 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.
## 2627                                                                                                                                                                                                         EE changing out ceiling overhead when debri got into rt eye
## 2628                                                                                                                                                                                       EE changing plug on generator-stepped up to walk out and struck head on pipe.
## 2629                                                                                                                                                                                                                     EE changing pressure pump, squirted in left eye
## 2630                                                                                                                                                                                                    EE chaning out an compressor and a insect bit EE on the rt cheek
## 2631                                                                                                                                                                                        EE chasing suspect on foot-fell & struck face on log on ground breaking nose
## 2632                                                                                                                                                                                   EE checking dorm wings, and door open court being blown off dirt flew in left eye
## 2633                                                                                                                                             EE checking hematoma on resident, hematoma burst with pressure & squirted blood - face & chest, blood got in EE's mouth
## 2634                                                                                                                                                     EE checking on suspicious activity by inmates. He open pill bottle and material from bottle went into his face.
## 2635                                                                                                              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
## 2636                                                                                                                                                                                        EE checking temperature in the composting pile andwind blew matter into eye.
## 2637                                                                                                                                                  EE checking the fire exit door, pushed the bar to open the door full face forward when she slippeand fell forward.
## 2638                                                                                                                                                                                           EE checking wooded area for traps & struck by a briar branch in right eye
## 2639                                                                                                                                                                          EE claims dx of hyperacusis/tinnitus resulting from noise emitted from computer hard drive
## 2640                                                                                                    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. ()
## 2641                                                                                                                                           EE claims he was attempting to get onto a horse. The horse bucked and threw EE to the ground, knocking him unconscious ()
## 2642                                                                                                                                          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. ()
## 2643                                                                                                                    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. ()
## 2644                                                                                                                                                      EE claims he was drilling a hole in a metal strap, the drill slipped, EE's head went down & hit a metal piece.
## 2645                                                                                                                                                              EE claims he was emptying buckets in the mop room and turned and banged his head on the hose mount. ()
## 2646                                                                                                                                                                    EE claims he was installing an air supply grill and some fiberglass particles blew into his eye.
## 2647                                                                                                                                          EE claims he was jointing plexiglas on jointer, small chards of plexiglas shot out of jointer hitting corner of his eye ()
## 2648                                                                                                                                                                     EE claims he was leaning against a file cabinet and a glass framed painting fell on his head ()
## 2649                                                                                                                                                   EE claims he was sweeping, he stopped to gather the dirt, lifted his head and hit his head on edge of a locker ()
## 2650                                                                                                                                            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 ()
## 2651                                                                                                                                         EE claims her nose became sore and irritated while using spray paint and sandpaper while distressing books and documents ()
## 2652                                                                                                                                        EE claims radiographs were being taken on the patient and the patient was struggling and scratched her on her neck and chin.
## 2653                                                                                                        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 ()
## 2654                                                                                    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. ()
## 2655                                                                                                                                                           EE claims stress as result of harrassment from co-workers and sexual harrassment by center administrator.
## 2656                                                                                                                                                         EE claims that head hit the corner of a cabinet in the ladies room, EE hit head when rising from a chair ()
## 2657                                                                                                                   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
## 2658                                                                                                                               EE claims that while using a pickaxe to take turfgrass samples, the iron part loosened from the wood handle and fell onto his head ()
## 2659                                                                                                                                                 EE claims the odor of mildew/molding from water leaks at her workstation is causing sinus and other body reactions.
## 2660                                                                                                                                      EE claims while untightening steel bars from ceiling as part of a research project, a steel nut fell off and hit his mouth. ()
## 2661                                                                                                                                                                                             EE cleaing using a bleach solution which splashed and went into rt eye.
## 2662                                                                                                                    EE cleaining elevator tracks in a squatting posi- tion stood up lost her balance hitting her head against mop wringer. Bent glasses-injured eye.
## 2663                                                                                                                                                                           EE clean ball with clorox wipe, begin ball toss activity, eyes started burning & itching.
## 2664                                                                                                                                                                    EE cleaned floor with exercise equipment on it, thebars were low, EE hit head on her right side.
## 2665                                                                                                                                                                                            EE cleaning a pan, when cleaner popped entering left eye. Eye irritation
## 2666                                                                                                                                     EE cleaning animal bedding cages, scraping wast material out of tercoplast cages, got bedding in eyepopped under safety glasses
## 2667                                                                                                                                                                   EE cleaning basement with oil and floor finish remover and wipe forehead with arm left eye burned
## 2668                                                                                                                                                                        EE cleaning bathroom sink with sentinel disfectantsolution and it splashed into rt eye; burn
## 2669                                                                                                                                                                      EE cleaning breakroom-bent down to pick up can andwhen standing up hit head on wooden cabinet.
## 2670                                                                                                                                                                                               EE cleaning cart when hand hit spray trigger and spayed her right eye
## 2671                                                                                                                                                                      EE cleaning cart, when she hit the trigger on a bottle full of chemical.. Sprayed in right eye
## 2672                                                                                                                                                                                                 EE cleaning facility in wood working area and got something in eye.
## 2673                                                                                                                                                                                    EE cleaning in mop closet-shaking out dust rag when particules went into rt eye.
## 2674                                                                                                                                                                                  EE cleaning isolation for pigs-turned around and was stuck in rt eye by tree limb.
## 2675                                                                                                                                                                                                              EE cleaning out bens and something flew into left eye.
## 2676                                                                                                                                                                                                         EE cleaning out walk-in closet and ran into overhead shaft.
## 2677                                                                                                                                          EE cleaning parts near filler machine-during cleaning exhaust started spraying out cleaning solution-some got in right eye
## 2678                                                                                                              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
## 2679                                                                                                                                                                                                             EE cleaning sink and chemical sprayed back into rt eye.
## 2680                                                                                                                                                                                               EE cleaning soot and debris from building, noticeddiscomfort in eyes.
## 2681                                                                                                                                                                  EE cleaning w/oven cleaner. Fan on and blowing toward kettle and blew cleaner in face. Into rt eye
## 2682                                                                                                                                                       EE cleaning weapon, spray solution shot up in eye when it was applied weapon. Injured rt eye - extremely red.
## 2683                                                                                                                                                                                         EE clearing basketball ct and someone hit EE with ball, struck EE in rt eye
## 2684                                                                                                                                                EE climbed into truck bed to get a better view off accident scene. He jumped from truck bed to roadway. Pain in head
## 2685                                                                                                                                                                                 EE climbing tree to remove a broken branch-branch broke and struck EE above rt eye.
## 2686                                                                                                                                                                                  EE clinbed under desk to hook up computer speakers and something went into her eye
## 2687                                                                                                                                            EE closed window & turned into another window thatwas extended out. He hit the window with his rt eye before he seen it.
## 2688                                                                                                                                                     EE closing johnson ward he felt some stings in theback of his head he realized there were yellow jackets, wasp.
## 2689                                                                                                                                                                                                      EE closing window and trash from window screen blw into rt eye
## 2690                                                                                                                                             EE collapse during line up by falling to floor scratching forehead and then noticed he had a cut on top rt side of eye.
## 2691                                                                                                                                                                                      EE collecting laundry basket to do laundry and stood up and hit head on shelf.
## 2692                                                                                                                                                                               EE comes in contact w/claved material and face starts to tingle and burning sensation
## 2693                                                                                                                                                   EE coming back from restroom tripped on curb outside booth breaking nose, bruise lip, hip, knee & damaged glasses
## 2694                                                                                                                                  EE coming down stairs, rt foot slipped on carpet. EE stumbled several steps before falling on 3rd step & hitting head against rail
## 2695                                                                                                                                                                          EE coming down stree, vehicle ran the stop sign and pulled into my vehicle off bluford st.
## 2696                                                                                                                                                                                        EE coming into work, tripped over curb & fell hitting right side of face. ()
## 2697                                                                                                                                                   EE coming out shower both feet slipped from under him, causing him to fall backwards hitting his head on barrier.
## 2698                                                                                                                                                                                                         EE completed search, went to stand up- hit head onthe table
## 2699                                                                                                                                     EE completly sterile transfer of dragwabs & bpw into bags. Light & blower turned on. EE not aware fo light. Burned rt & lt eye.
## 2700                                                                                                                                                     EE conducting a controlled burn around woodpecker trees, wind shift caused ash and smoke to blow in left eye ()
## 2701                                                                                                                                         EE conducting cell search. Inmate became angry duestruck EE in face hitting lt eye inmate handcuffedat the time. Lt eye red
## 2702                                                                                                                                                                   EE conducting inside recreation upon placing inmate in cell inmate turned & headbutted EE in head
## 2703                                                                                                                                                                           EE conducting live fire excercise. EE rose to force door open when he was burned on ears.
## 2704                                                                                                                                                                                          EE conducting orientation for new workers when his lt eye started to itch.
## 2705                                                                                                                                                                                                                              EE contract conjunctivitis from client
## 2706                                                                                                                                                                                                        EE contracted conjuctivitis by treating contaminated patient
## 2707                                                                                                                                                                           EE contracted infection in right eye through casual contact with patient providing meals.
## 2708                                                                                                                                                                                                                   EE correcting inmate for entering secured dorm ()
## 2709                                                                                                                      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.
## 2710                                                                                                                            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.
## 2711                                                                                                                                                                                                               EE cut top of head while positioning wet tap machine.
## 2712                                                                                                                                                                                                         EE cutting fallen trees, limb fell on head. Injury to head.
## 2713                                                                                                                                                                             EE cutting pcr bound out of a gel over a uv transilluminator box. Uv burn to both eyes.
## 2714                                                                                                                                                                                        EE cutting pipe with pipe cutter and grit came offpipe and went into EE eye.
## 2715                                                                                                                                                                       EE cutting tree down-pushing to make fall when a limb fell and hit EE in the top of the head.
## 2716                                                                                                                         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
## 2717                                                                                                                                                                                          EE developed a red rash on face - think it May be caused by lymes disease.
## 2718                                                                                                                                                                             EE developed flu-like symptoms while traveling hearing impairment and tinia.. Right ear
## 2719                                                                                                                                                                                             EE developed pain while preventing resident from hitting head on floor.
## 2720                                                                                                                                                                                            EE developed ringing in ears during stack test observation & inspection.
## 2721                                                                                                                                                          EE didn't know when it happened, relized that metalwas in eye late wednesday when it started to bother EE.
## 2722                                                                                                                                                                              EE digging fire line & a stick went in his ear canal scratching & bruising lt ear drum
## 2723                                                                                                                           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.
## 2724                                                                                                                                                                                 EE dismantling fence when a board w/nail sprang forward and hit EE in the forehead.
## 2725                                                                                                                                                                                       EE distracted by construction work and turned and walked into a traffic sign,
## 2726                                                                                                                                                                           EE does not know what occurred to cause his eyes scratchy and watery or why rash appeared
## 2727                                                                                                                                                                                                        EE doesn't know how injury happened but lt eye was scratched
## 2728                                                                                                                            EE doing home visit-offender refused to respond toverbal command & was taken down-he then kicked EE behind her left ear with cowboy boot
## 2729                                                                                                                                                                   EE doing labwork----tilted a cup of formaldehyde 4% on floor----splashed into right and left eye.
## 2730                                                                                                                                                                            EE doing prescribed boxing exercises and punched in hed by another cadet. Bruise to head
## 2731                                                                                                                                             EE doing test on patient when patient moved abruptly, needle came out of patient and stuck EE in finger below nail bed.
## 2732                                                                                                                                        EE door on driver side of vehicle hit her in fore-head when she open it. Attempting to fuel vehicle. Hit center of forehead.
## 2733                                                                                                                                                                                                 EE drilling holes in overhead door frame and metalgot into left eye
## 2734                                                                                                                                                                                                        EE drilling in ceiling and a piece of concrete hitright eye.
## 2735                                                                                                                                                               EE drilling into concrete when dust or concrete particle got behind safety glasses & into to his eyes
## 2736                                                                                                                                                                               EE drilling out old line hook to install new one and metal shavings went into rt eye.
## 2737                                                                                                                                                                                                   EE drinking from cup when a bee flew onto his tongue stinging him
## 2738                                                                                                                                                             EE driver opened door as EE was standing up from looking under vehicle, as EE stood up hit head on door
## 2739                                                                                                                                         EE driving automobile when auto. Hit ice on high- way, skidded and turned over. Head injury-skull fracture with blood clot.
## 2740                                                                                                                                                                                                                  EE driving down road when object flew into rt eye.
## 2741                                                                                                                                                                                                         EE driving golf cart ran off road into a ditch andhit head.
## 2742                                                                                                                                                     EE driving in heavy rain below speed limit, car hydroplanned on standing water & skidded into concrete barrier.
## 2743                                                                                                                                                          EE driving object flew into window and hit EE in lft upper eyelid. Erythema & puritis to eylid w/ swelling
## 2744                                                                                                               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
## 2745                                                                                                                                                                          EE driving post-post driver slipped off post as itwas being driven and contacted EE's head
## 2746                                                                                                                 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.
## 2747                                                                                                                                                             EE driving state vehicle on course field trip-stopped in traffic and was rear-ended by another vehicle.
## 2748                                                                                                                                               EE driving to campground & was struck in left eye by flying dust & debris. After flushing, still felt objects in eye.
## 2749                                                                                                                                                                                                      EE driving tractor making fire lines when rt eye began buring.
## 2750                                                                                                                                         EE driving with both his driver's and right front passenger's side window open when an unknown object struck his right eye.
## 2751                                                                                                                                                                           EE dropped a bottle of ez scrub while cleaning out a freezer and it splashed into eye. ()
## 2752                                                                                                                                     EE dropped a bottle on a test strip and bacterial culture splashed into her eyes. Note: EE paid outof pocket for prescriptions.
## 2753                                                                                                                                                                                    EE dropped a pin on the floor, reached down to pick it up, hit head on the desk.
## 2754                                                                                                                                      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.
## 2755                                                                                                                                                                                                 EE dropped a vial of glutaraldehyde in phosphate splashed in lt eye
## 2756                                                                                                                                                                                                      EE dropped battery and battery acid flew up and in EE's rt eye
## 2757                                                                                                                                                                                                                                           EE dropped bucket on head
## 2758                                                                                                                                                                            EE dropped car keys, bent down to pick them up & hit head on corner part of his car door
## 2759                                                                                                                                                                                                   EE dropped container of reflecta which splashed into his left eye
## 2760                                                                                                                                              EE dropped id badge on floor, bent down to pick up badge, hit corner of desk pull-out table with left side of head. ()
## 2761                                                                                                                                                    EE dropped intake keys at front gate of twr #3, eestood up head struck fence causing bruise to left side of head
## 2762                                                                                                                                                                                    EE dropped soda and hit forehead on jeep mirror while bending down to pick it up
## 2763                                                                                                                  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
## 2764                                                                                                                                                            EE dropped something on the floor, when she bent down to pick it up & hit her forehead on a shelf. Helf.
## 2765                                                                                                                                                             EE dropped sweatshirt on dmg battery-shook shirt off and a few drops of acid splashed on face and arms.
## 2766                                                                                                                                                                                        EE dropped wite-out bottle on desk, fluid flew up into his face & right eye.
## 2767                                                                                                                                                                             EE drove mule up on curb - did not wear seatbelt - nose hit roll bar and knee hit dash.
## 2768                                                                                                                                                                            EE drying resident, as resident was being turn to the left, he hit EE in nose with fist.
## 2769                                                                                                                                                                                                   EE dumpting wheel barrel and wind blew trash and dust into rt eye
## 2770                                                                                                                                                    EE during use of force was pushed backwards and hit his head against the concrete wall. Injured rt side of head,
## 2771                                                                                                                                                                                                                            EE dusting in old adm wall injury to eye
## 2772                                                                                                                                                     EE emptying mop bucket-bent down to pick up debrisfallen into sink-upon lifting head hit back of head on faucet
## 2773                                                                                                                                                                EE emptying trash, opened small bag something went into right eye causing burning/cutting sensation.
## 2774                                                                                                                                                                                               EE enroute to a meeting involved in auto accident head, neck and nose
## 2775                                                                                                                                              EE entered a hatteras "a" block when an inmate was washing the windows and the cleaner accidentally went into EE eyes.
## 2776                                                                                                                                      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
## 2777                                                                                                                    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.
## 2778                                                                                                                                                                             EE entered bldg to investigate cause of fire alarmwhich May have caused ear discomfort.
## 2779                                                                                                                                                             EE entered building that was treated for insecticide several times, EE experienced bleeding in his nose
## 2780                                                                                                                                     EE entered dark hallway and atttempted to turn on light and it did not work and tripped over metal debris that was left behind.
## 2781                                                                                                                          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
## 2782                                                                                                                                                                                     EE entered inmates cell to place restraints on herand she spit in EE's left eye
## 2783                                                                                                                    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
## 2784                                                                                                                  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
## 2785                                                                                                                                                                              EE entered pt's room to assist getting pt off transport board, pt spat in EE's face ()
## 2786                                                                                                                                                                             EE entered side of van and his head hit top of door frame. Abrasion/knot to top of head
## 2787                                                                                                                                                                                             EE entered yard vehicle, hit the corner of lt eye on vehicle rear door.
## 2788                                                                                                                                                                                             EE entering stairwell & tripped hitting the back of her head on doorway
## 2789                                                                                                                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.
## 2790                                                                                                                                                     EE escorted inmate to rec cage, proceed to take thehandcuffs off and the inmate stuck EE on right side of head.
## 2791                                                           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. ()
## 2792                                                                                                                                                                                                            EE escorting inmate to cell and was assaulted by inmate.
## 2793                                                                                                                                   EE examining gel with students using uv light, EE not wearing protective eye glasses, prolonged exposure to uv light injuring eye
## 2794                                                                                                                    EE exited elevator, weaved way thru students waiting for elevator, headed down hall & fell on her face. Broke 2 teeth @ gumline & cracked 3 more
## 2795                                                                                                                 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.. ..
## 2796                                                                                                                                                                                      EE exited sliding door of van and struck head on frt passenger when it opened.
## 2797                                                                                                                                                                           EE exiting a-wing & hit head on top of door frame which caused him to fall-contusion head
## 2798                                                                                                                                                                                                               EE exiting basement hit top of head on window header.
## 2799                                                                                                               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
## 2800                                                                                                                                                            EE exiting central bath when client struck EE on left check causing EE to fall and hit head againstwall.
## 2801                                                                                                                                                     EE exiting food service office in dining hall tripped over telephone cord causing fall hitting head on lt side.
## 2802                                                                                                                                                                          EE exiting from veh when EE dropped item, reached to pick up item bumped head on veh door.
## 2803                                                                                                                                                                                                EE exiting living area, collided w/ another EE who is vision impared
## 2804                                                                                                                                                          EE exiting transfer bus, when he ran into the dooroverhang. Injury occured on forehead and bridge of nose.
## 2805                                                                                                                                                                                                                   EE experienced irritation to left eye during work
## 2806                                                                                                                                                                                EE experienced severe trauma, anguish, anxiety, depressiom, post traumatic disorder.
## 2807                                                                                                                                                                     EE exposed to the pepper gas by being sprayed in the face by captain kenworthy. Head/scalp area
## 2808                                                                                                                             EE fainted in office chair. Fell on floor and impact caused laceration in chin, jaw and face soreness and headache. Referred to glenda.
## 2809                                                                                                                                                                                                EE fainted in the bathroom and hurt her head. EE is in the hospital.
## 2810                                                                                                                                                                                                    EE fainted walking down hall and hit face against wall and floor
## 2811                                                                                                                                                                                             EE feeding client jello when client balled up fist and hit EE in rt eye
## 2812                                                                                                                                                         EE feeding client when hand went up in the air andhit EE under the chin causing EE's bottom teeth to break.
## 2813                                                                                                                                                               EE feeding student when chair tilted over, causingback of chair to hit EE on the head, near left ear.
## 2814                                                                                                                                     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.
## 2815                                                                                                              EE fell 18 feet from the top of a pallet rack, suffering severe head injuries. Severe skull fractures and brain injury. EE was working alone in wareho
## 2816                                                                                                                                                                                            EE fell and hit his head on door/doorway; laceration above his right eye
## 2817                                                                                                                                                                                                                                    EE fell and struck head on floor
## 2818                                                                                                                                                                                                                             EE fell and struck her head on pavement
## 2819                                                                                                                                                             EE fell as she approached the steps. She struck her chest on the bottom step and her chin on next step.
## 2820                                                                                                                              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
## 2821                                                                                                                                                                                          EE fell back trying to sit in desk chair & hit the back of head on desk ()
## 2822                                                                                                                                                                                                             EE fell causing head to strike floor and bruised lt eye
## 2823                                                                                                                                                                                          EE fell down 7-8 steps at rowan co. Courthouse. Injured forehead and knee.
## 2824                                                                                                                                                                                           EE fell down flight of stairs after close of courthead, tooth, hand, hip.
## 2825                                                                                                                                                                   EE fell down some steps and was transported to hospital by ambulance to raleigh community hosptl.
## 2826                                                                                                                                                                                                                EE fell down steps at police department and hit head
## 2827                                                                                                                                                                                                                              EE fell down steps at trailer an fell.
## 2828                                                                                                                                                                    EE fell down while trying to defrost a vehicle to return it. Injured head, tailbone, and elbows.
## 2829                                                                                                                                                                                                                        EE fell forward while walking down stairs ()
## 2830                                                                                                                                                                                                                EE fell from chair while reaching for book on shelf.
## 2831                                                                                                                                                                                                                             EE fell from gas vehicle injuring face.
## 2832                                                                                                                                                                                EE fell going down steps out of building. EE has contusion and abrasion to forehead.
## 2833                                                                                                                                                                                                       EE fell in parking lot on ice when entering bldg hitting head
## 2834                                                                                                                                                                                                      EE fell in parking lot taking work to car to complete at home.
## 2835                                                                                                                                                                                                     EE fell off a cart while driving the cart striking back of head
## 2836                                                                                                                                                                                                      EE fell off golfcart as passenger when driver tooka sharp turn
## 2837                                                                                                                                                                                  EE fell off stool when attempting to sit down; stool rolled out form under her. ()
## 2838                                                                                                                                                EE fell off the back of a stage when she moved herchair. Landed on her head, causing a concussion &brusing her back.
## 2839                                                                                                                                                                                   EE fell off the climbing wall while demonstrating a simulating a practice fall ()
## 2840                                                                                                                                                                                                          EE fell off the stool, moderate swelling on r sideof head.
## 2841                                                                                                                                                                                                  EE fell on back of stairs of bynum hall and hit head concemt wall.
## 2842                                                                                                                                                                                                             EE fell on bathroom floor in clients room hitting head.
## 2843                                                                                                                                                                                                      EE fell on broken exhibit and hit head, shoulder on rock work.
## 2844                                                                                                                                                                             EE fell on concrete steps and struck chin on step jarring head, cut left hand and knees
## 2845                                                                                                                        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
## 2846                                                                                                                                                                                                                      EE fell on floor in dining hall. Injured head.
## 2847                                                                                                                                                                                                             EE fell on ice in parking lot and hit head on concrete.
## 2848                                                                                                                                                                   EE fell on porch while walking to probation resident striking her knee and injurying her forehead
## 2849                                                                                                                                                                                                EE fell on steps in front of entrance of building injuring left eye.
## 2850                                                                                                                                                                                                            EE fell out of golf cart and fell face down on sidewalk.
## 2851                                                                                                                                                                                          EE fell stricking her forehead against the wheel well causing a laceration
## 2852                                                                                                                                                                                                               EE fell to ground striking face, rt hand, and lt knee
## 2853                                                                                                                                                                                                       EE fell to the floor and landed on face after donating blood.
## 2854                                                                                                                                                                                                                            EE fell up stairs outside the mail room.
## 2855                                                                                                                                  EE fell while bowling at bowling alley for apprec-iation week. A party was given for the all of the employees at combined records.
## 2856                                                                                                                                                                                                                      EE fell while running and struck head on floor
## 2857                                                                                                                                                                                 EE felled and injured his rt eye on a concrete paving while running after an inmate
## 2858                                                                                                                             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.
## 2859                                                                                                                                                                                               EE felt faint and passed out hitting head on scalecutting rt eye lid.
## 2860                                                                                                                                                                EE felt light headed & temp. Passed out & fell on the floor face down, cut his eye with his glasses.
## 2861                                                                                                                                                                                                             EE felt pain in left eye progress more over a few days.
## 2862                                                                                                                                                                                                                                         EE felt something in rt eye
## 2863                                                                                                                                                               EE felt strain to left eye when he bent over to pick up files injury detachment of retina to left eye
## 2864                                                                                                                                                                        EE filling buckets w/water to put used spectrumns in-water splashed in the corner of rt eye.
## 2865                                                                                                                                                                                                              EE filling can with bedding-bedding got into right eye
## 2866                                                                                                                                                                               EE filling up shavings cart, got shavings into hisright eye. Scratched right eye lid.
## 2867                                                                                                                                                                  EE fired rifle and the recoil came back and hit him on the bridge of his nose causing it to bleed.
## 2868                                                                                       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. ()
## 2869                                                                                                                                                   EE firing shot gun, weapon slipped and hit his safety glasses causing a cut under lt eye. Small cut under lt eye.
## 2870                                                                                                                                                                                                     EE firing shotgun during training-shotgun made impact with nose
## 2871                                                                                                                                                                                            EE firing shotgun, approx 1 foot from the left side of face and left ear
## 2872                                                                                                                                                         EE first stated that her eye was hurting whn she got to the infirmary she stated that something flew in eye
## 2873                                                                                                                        EE foot patrolling woods, stepped over old stump and heards some buzzing; turned into yellow jackets coming at his face. Started running. ()
## 2874                                                                                                                                                                                                            EE forehead was struck by a tiedown while unloading tire
## 2875                                                                                                                        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
## 2876                                                                                                                                                                                                                     EE found a tick on the back lt side of his head
## 2877                                                                                                                                                                                                                    EE found an embedded tick on the lt side of head
## 2878                                                                                                                                                                                                          EE found lying on floor after everyone heard a loud nosie.
## 2879                                                                                                                                                           EE found pt lying in floor in shower room, during struggle with the patient, EE hit her head on the wall.
## 2880                                                                                                                                                                                                    EE found tick on back of head after mowing and weedeating ground
## 2881                                                                                                                                                                              EE gave patient medication, EE hit by patient, breaking eyeglasses. Broken eyeglasses.
## 2882                                                                                                                                      EE getting chemical off shelf to prepare mop water, pull bottle from shelf and the pump pop up splashing in EE's (left) eye ()
## 2883                                                                                                                                        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.
## 2884                                                                                                                                                                                           EE getting in van to transport residents & struck head against metal door
## 2885                                                                                                                                  EE getting into state car in inclement weather, a strong gust of wind blew car door striking EE onthe head, extreme pain and dazed
## 2886                                                                                                                                                                                            EE getting off forklift-something fell off head guard and blew into eye.
## 2887                                                                                                                                                                               EE getting out of car slipped and fell on ice causing rt non-displaced head fracture.
## 2888                                                                                                                                                                                                EE getting out of car-door came forward striking EE on rt front lobe
## 2889                                                                                                                                                                                                                                 EE getting out of van and hit head.
## 2890                                                                                                                                                                                    EE getting ready to sit in chair when it was pulled away injury EE fell to floor
## 2891                                                                                                                                                                                            EE getting supplies out of car and accidently jammed papers in left eye.
## 2892                                                                                                                                           EE getting tissue frm shelf when box of trash bagsfell and hit EE in the mouth breaking causing top plate to break loose.
## 2893                                                                                                                                                   EE giving client a shower when client turned forward and knocked glasses off EE's face putting a scratch on nose.
## 2894                                                                                                                                                                                                         EE giving client's meds per g-tube. Client spit inright eye
## 2895                                                                                                                                                                                  EE giving medication to patient who punched EE in right eye and right side of face
## 2896                                                                                                                             EE giving resident his dulcolx suppository & he was fighting. Residents knee hit EE in mouth. Broken skin & bruising inside bottom lip.
## 2897                                                                                                                                          EE going to classroom floor wet EE crutches slipped and EE fell backwards hitting head injury to back of head on left side
## 2898                                                                                                                           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
## 2899                                                                                                                                                                                                         EE going to lunch and stumbled over a cement blockand fell.
## 2900                                                                                                                                                                                                                     EE got a foreign particle in eye while cleaning
## 2901                                                                                                                                                                                                                               EE got cleaning solution in right eye
## 2902                                                                                                                                                                                                                                             EE got debris in eye ()
## 2903                                                                                                                                                                                                                                          EE got debris in left eye.
## 2904                                                                                                                                                                                                EE got dirt in his eye while he was working in theradio repair shop.
## 2905                                                                                                                                                                                                                  EE got dust and small piece of metal in right eye.
## 2906                                                                                                                                                                                                                              EE got dust in eye while loading truck
## 2907                                                                                                                                                                                                                      EE got dust in right eye while feeding animals
## 2908                                                                                                                                                                                                                                         EE got foreign body in eye.
## 2909                                                                                                                                                                                                                                     EE got foreign body in left eye
## 2910                                                                                                                                       EE got heel of shoe caught in auto door-shw jerkedher foot free as the door closed and fell backwrdshitting head on doorframe
## 2911                                                                                                                                                                  EE got his eyes burned when he was doing dna-gel straining occasionally without sheild protection.
## 2912                                                                                                                                                                     EE got hit in nose by an inmate while trying to subdue him during use of force. Injury to nose.
## 2913                                                                                                                                                                                                                                             EE got mulch in his eye
## 2914                                                                                                                                                                                                                            EE got particle ing rt eye while working
## 2915                                                                                                                                                                              EE got some cleaning stuff in eye. Was putting it in some water and some poped in eye.
## 2916                                                                                                                                                                                                                                          EE got something in eye ()
## 2917                                                                                                                                                                                                                         EE got something in eye while moving boxes.
## 2918                                                                                                                                                                                           EE got something in lt eye while looking for something in the dispensory.
## 2919                                                                                                                                                                          EE got up from desk, caught feet in telephone cord, tripped and fell, hit head on door jam
## 2920                                                                                                                                                             EE grabbed a fleeing suspect through an open windown and struck her head on the bottom of window frame.
## 2921                                                                                                                                                                                   EE grinding out a keeper and grinder wheel exploded and shot metal into EE's eye.
## 2922                                                                                                                                                                           EE grinding, drilling & cuting metal during the dayand got some metal & rust in right eye
## 2923                                                                                                                                               EE groundfighting with student during subj/controlarrest techniques when student inadvertently elbowed above left eye
## 2924                                                                                                                                                                                                          EE had a bad reaction to oc pepper spray exposure training
## 2925                                                                                                                                                                                                                                EE had a complete neervous breakdown
## 2926                                                                                                                                                                                                   EE had a headache, stood up, passed out and hit her head on floor
## 2927                                                                                                                                                                               EE had a seizure and fell. Due to the way he fell possibly has a head or back injury.
## 2928                                                                                                                                                                        EE had a seizure causing her to fall against the a countertop striking her head on the floor
## 2929                                                                                                                                                                                                          EE had a seizure-lost conciousness and hit head on floor.3
## 2930                                                                                                                                                                                                 EE had a seizure. Hit his head on the floor when he fell out chair.
## 2931                                                                                                                                                                                              EE had a sever allergic reaction to poison ivy while doing camp duties
## 2932                                                                                                                                       EE had a vehcile stopped and was struck in the rear of his patrol car, while he was sitting inside, by an impaired driver. ()
## 2933                                                                                                                                                                                             EE had airborne debris blown in eye while using a gas-powered blower ()
## 2934                                                                                                                                                                                                      EE had allergic reaction to paint fumes causing ulcers in nose
## 2935                                                                                                                                                           EE had an accident with a truck, hitting and breaking side mirror causing mirror to break. Glass in mouth
## 2936                                                                                                                                                                                            EE had an allergic reaction to a rabies vaccination; headache and nausea
## 2937                                                                                  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. ()
## 2938                                                                                                                                                                                                      EE had an allergic reaction to pepper spray affecting his eyes
## 2939                                                                                                                                                                                   EE had an allergic reaction to spray that was usedduring cadet training right eye
## 2940                                                                                                                                                                                                          EE had an allergic reaction to unknown source swollen face
## 2941                                                                                                                               EE had an eye irritation, she noticed later to be discovered as scratched cornea in her left eye. Possibly done when leaf blowing. ()
## 2942                                                                                                                                                             EE had been cleaning pt's room, coming out of rm, pt picked up the wet floor sign hitting EE in face ()
## 2943                      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. ()
## 2944                                                                                                                      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.
## 2945                                                                                                                                                                    EE had been welding the day before and the next day had redness, itching, and sensitive to light
## 2946                                                                                                                                                                                            EE had bent down to get stool and raised up and hit head on cabinet door
## 2947                                                                                                                                                                                                                               EE had ceiling tile fall in right eye
## 2948                                                                                                                                                                                                                                       EE had conjunctivitis in eyes
## 2949                                                                                                                                                                                               EE had crossed the street and stumbled on curb, fell and hit her head
## 2950                                                                                                                                                    EE had dictaphone earplugs in ears when EE sneezedand EE felt a pop in her rt ear and then later had severe pain
## 2951                                                                                                                                                                                                                                              EE had dust in his eye
## 2952                                                                                                                                                                                                    EE had foreign body in lt eye - does not recall how it got there
## 2953                                                                                                                                                                                          EE had given patient a walk and patient turned and struck EE in the mouth.
## 2954                                                                                                                                                                                               EE had glaucoma screening and wellness fair. EE had reaction to drugs
## 2955                                                                                                                                                                                                         EE had gotten water into eye causing infection and pink eye
## 2956                                                                               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. ()
## 2957                                                                                                                                                                  EE had hand truck tipped back loading boxes and handtruck flipped back striking EE in the forehead
## 2958                                                                                                               EE had head tilted to hold the handset while working on payphone. When he turned head to normal position, experienced burning between shoulder blades
## 2959                                                                                                                                                                                                 EE had hematoma to right eardrum, then bacterial infection occurred
## 2960                                                                                                                                                                       EE had her back turned and two students were fighting snd struck her in the back of the head.
## 2961                                                                                                                                                                 EE had interaction with client, client threw a 2 pound weight against the head over EE's right eye.
## 2962                                                                                                                                                                                                  EE had itching in left eye; conjunctivitis exposure by clients. ()
## 2963                                                                                                                                                                             EE had just changed client wet bed and was putting shirt on, client sruck finger in eye
## 2964                                                                                                                                  EE had just completed giving blood when she passedout hitting her head on lid of closed cooler containing drinks for blood donors.
## 2965                                                                                                                                                          EE had just finish welding, lifted welding hood, the metal popped and a piece of metal went into his r eye
## 2966                                                                                                        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 ()
## 2967                                                                                                                                                                      EE had just installed and exhaust ignator and EE was standing in the path and burned EE's eye.
## 2968                                                                                                                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.
## 2969                                                                                                                           EE had just taken mail to another employee and turned to enter bathroom, slipped and fell down hitting bathroom door; chipping her tooth.
## 2970                                                                                                                       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
## 2971                                                                         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 ()
## 2972                                                                                                                                                                                    EE had let inmate out of cell to use bathroom. EE was assaulted by three inmates
## 2973                                                                                                                                        EE had loaded revolver which was in window ledge. Revolver & clipboard fell discharge a live round EE has ringing in lt ear.
## 2974                                                                                                                                                                                         EE had on all the aafety equipement and not sure how what got into the eye.
## 2975                                                                                                                         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.
## 2976                                                                                                                                          EE had plexiglass chip on body while helping saw. He removed safety glasses to wipe forehead with arm and chip got in eye.
## 2977                                                                                                                            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.
## 2978                                                                                                                                                                           EE had punched in to work-looked up at ceiling renovation when something fell in left eye
## 2979                                                                                                                 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
## 2980                                                                                                                                                                                                  EE had seizure and fell to floor hitting his head on the concrete.
## 2981                                                                                                                                                          EE had seizure while working on laptop sitting on a high chair and fell to floor injuring mouth and teeth.
## 2982                                                                                                                                                             EE had to force pt to take medicine. The pt later walked up to writter onrt side of head w/closed fist.
## 2983                                                                                                                                                                                                         EE had to place patient in pic hold and struck head on wall
## 2984                                                                                                                                                  EE had to pull charts out of mailbox that were stuck, when they broke free EE fell backwards striking head on wall
## 2985                                                                                                                                                                                           EE hammering nail into mortar to hang cable-nail dislodge and struck eye.
## 2986                                                                                                               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.
## 2987                                                                                                                                                                                                   EE has been exposed to prolonged and continuous excessive noises.
## 2988                                                                                                                                                                  EE has had an audiogram and has a standard hearingthreshold shift from prolonged exposure to noise
## 2989                                                                                                                                                                                                               EE has infected rt eye - doen't know how it happened.
## 2990                                                                                                                                                                                                   EE has possible hearing loss due to noise made by air compressor.
## 2991                                                                                                                                                                                                            EE has ringing in ears from client hollering for 2 days.
## 2992                                                                                                                                                                                                                        EE having migraine headaches from chemicals.
## 2993                                                                                                                                                                     EE having personal conversation on phone-fainted and struck head on desk and lost consciouness.
## 2994                                                                                                                                  EE having state van checked before travel garage employee accidently pulled garage door down on EE striking her in the head & face
## 2995                                                                                                                                                                                                         EE head struck on concrete while climbing steps up a tower.
## 2996                                                                                                                                          EE helping block up area to help prevent flood water from coming into buildings. Water splashed in lft side of face & eye.
## 2997                                                                                                                                                              EE helping clean up after graduation-shoes stoppedshort & pitched EE forward on face-contusion to nose
## 2998                                                                                                                                                      EE helping co-worker nail down carpet on weeder box, co-worker struck nail that deflected and struck EE in eye
## 2999                                                                                                                                                                                       EE helping harvest on research when a small particle was blown into left eye.
## 3000                                                                                                                                          EE helping inmate to treatment room, when inmate threw his head back head butting EE on right side of head above left eye.
## 3001                                                                                                                                                                                 EE helping patient prepare for shower, patient hit EE in the nose causing bleeding.
## 3002                                                                                                                                                                                EE helping to move concrete table-table was dropped and hit EE head on the way down.
## 3003                                                                                                                                                           EE helping to restrain agitated pt, EE hit right side of head & shoulder on wall, then fell on right hip.
## 3004                                                                                                                                                                                    EE helping to restrain combative aggressive, patient's blood splattered in face.
## 3005                                                                                                                                                                                    EE hit back of head on the sink while picking up some paper towel off the floor.
## 3006                                                                                                                                                                                           EE hit bottom edge of door with forehead while walking through cutting it
## 3007                                                                                                                                                                                                                        EE hit by mental pt during normal wrk duties
## 3008                                                                                                                                                                                                                                 EE hit forehead on corner of mantel
## 3009                                                                                                                                                                         EE hit head on a sharp edge, EE was picking something up and bumped his head when stood up.
## 3010                                                                                                                                                                EE hit head on bookrack when entering restroom which cause headaches, swelling and slight indention.
## 3011                                                                                                                                                                                                                     EE hit head on corner of oven door cutting head
## 3012                                                                                                                                                                              EE hit head on corner of tailgate of state vehiclecausing a laceration above forehead.
## 3013                                                                                                                                                                                                            EE hit head on desk when bending over to pick up pencil.
## 3014                                                                                                                                                                                                                                                 EE hit head on door
## 3015                                                                                                                                                                        EE hit head on metal corner of disposables box in women's bathroom, cut to head and bleeding
## 3016                                                                                                                                                                                                                            EE hit head on metal cutting his head ()
## 3017                                                                                                                                                                                                          EE hit head on shelf while placing paper in zerox machine.
## 3018                                                                                                                                                                                               EE hit head on stairwell when packing up after a meeting. Concussion.
## 3019                                                                                                                                                                                                            EE hit head on state car resulting in cut/gash 1/2 inch.
## 3020                                                                                                                                                                                                                         EE hit head on top drawer of filing cabinet
## 3021                                                                                                                                                                                                    EE hit head on top of ice box causing contusion rt side of head.
## 3022                                                                                                                              EE hit head on upper desk and approx. 1 hour later became disoriented and walked into glass door upon her return from the restroom. ()
## 3023                                                                                                                                                                                                                                        EE hit head on valve stem ()
## 3024                                                                                                                                                                                                     EE hit head on wall-mounted cabinet while getting up from table
## 3025                                                                                                                                                                                                    EE hit head on window by crawling through building during search
## 3026                                                                                                                                                                                                                               EE hit head on wooden support beam ()
## 3027                                                                                                                                                                                                                      EE hit head under stairs while removing ladder
## 3028                                                                                                                                                                                         EE hit head with weight bar, while demonstrating alift. Contusion forehead.
## 3029                                                                                                                                                                                         EE hit her head against the doorway of the truck while entering the vehicle
## 3030                                                                                                                                                                                                                                     EE hit her head on a door frame
## 3031                                                                                                                                             EE hit her head on a goathouse that was in the parking lot where her car was parked. A carpentry class was building it.
## 3032                                                                                                                                                                                                  EE hit her head on a steel pipe, while on a ladderto open a valve.
## 3033                                                                                                                                                                            EE hit her head on brick wall-while restraining student that was refusing to rtn to room
## 3034                                                                                                                                                                            EE hit her head on the air conditioner ****monitor bills--tx unrelated to w/c injury****
## 3035                                                                                                                                                                                                       EE hit her head on the wall in the bathroom; injured forehead
## 3036                                                                                                                                                                                                                              EE hit her mouth (tooth) on a crossbar
## 3037                                                                                                                                                                                               EE hit her right eyebrow on an upside down chair in the storage room.
## 3038                                                                                                                                                                                                               EE hit herself in the eye with paper book. Right eye.
## 3039                                                                                                                                                                                                                               EE hit his head on a low beam..... ..
## 3040                                                                                                                                                                                                                    EE hit his nose with metal on sweeper truck hose
## 3041                                                                                                                                                   EE hit in back of head standing up from bent position as another EE was removing a wood pallet from loading dock.
## 3042                                                                                                                                                                   EE hit in lft side of head by pt while EE putting bib on pt to go to lunch pt knocked EE to floor
## 3043                                                                                                                                                                           EE hit left top side of head on lower row of mail boxes while rising up from sorting mail
## 3044                                                                                                                                                                                       EE hit nose on a steel pipe. EE seen in er and released to return to work. ()
## 3045                                                                                                                                                                                          EE hit on the back of his head with a bar of soap. Struck on side of head.
## 3046                                                                                                                                                                                                                      EE hit self in eye with corner of file folder.
## 3047                                                                                                                                                                    EE hit the back of his head on underside of desk while standing up from fixing keyboard tray. ()
## 3048                                                                                                                                                                                                         EE hit top of head when he was coming up the stairs of unit
## 3049                                                                                                                                                                                                                                    EE hit wall with lt side of face
## 3050                                                                                                                                                                                                                                   EE hot hydranlic fluid in his eye
## 3051                                                                                                                                                                                               EE hs ear infection from exposure to smoke and dust for several days.
## 3052                                                                                                                                            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. ()
## 3053                                                                                                                                                                               EE in altercation with inmate- fell backwards and hit his head on a wooden table leg.
## 3054                                                                                                                                                                                                       EE in booth waiting on customer when light bulb fell on head.
## 3055                                                                                                                                                                                       EE in burn bldg w/face mask on-small particles of debris blew into right eye.
## 3056                                                                                                                 EE in canada attending seminar. Alleges slipped onicy sidewalk, while off campus, hurt tailbone. Next day alleges fell in hotel room & cut forehead
## 3057                                                                                                                                                               EE in control room reviewing camers. Moved computer mouse & piece of debris/paper flew up into eye ()
## 3058                                                                                                                                                                       EE in field setting up trapping-eye became infected & had allergic reaction unknown substance
## 3059                                                                                                                                                                       EE in line behind lady with a tray-glass fell fromtray and something flew into EE's left eye.
## 3060                                                                                                                                                EE in lower cate had body wrapped around to pump aniimal fell out of cage sending pump down. Injured head, forehead.
## 3061                                                                                                                                                                                                  EE in mva; pert van ran off rd, equipment in van struck EE in head
## 3062                                                                                                                                                                                                  EE in network circuit room and hit head on back ofa standing rack.
## 3063                                                                                                                                              EE in pepper mace training, instructed sgt white to open both eyes after being sprayed with pepper spray in face area.
## 3064                                                                                                                                                                     EE in pool during swim. Camper ran into him under water, poking her finger in eye. Injured eye.
## 3065                                                                                                                                                   EE in pool with clients went under water when a client pushed in between in the process scratched EE on lt check.
## 3066                                                                                                                     EE in process of cleaning bathrooms. Started to pick up cleaning solution & dropped in on floor. The bottle cracked, chemical splashed in eyes.
## 3067                                                                                                                                                                              EE in process of installing brake shoes on truck, pliers slipped & hit EE across nose.
## 3068                                                                                                                           EE in tree attempting to tie it before cutting it down. Limb flew up from it & hit him in rt eye causing bleeding behind his eye. Rt eye.
## 3069                                                                                                                  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
## 3070                                                                                                                              EE informed patient of intent to begin bath and ptreached out and scratched EE on the left side of face, approximately one inch long..
## 3071                                                                                                                                                       EE informed resident he could not smoke, resident became violent, hit EE in stomach and EE fell and hit head.
## 3072                                                                                                                                                                    EE inhaled battery acid fumes, as he entered a closed door. Inmate had left a battery on charge.
## 3073                                                                                                                                                                                                        EE inhaled cleaner while washing condenser coils for ac unit
## 3074                                                                                                                                                                                            EE injured both eyes while instructing an inmate on how to use a welder.
## 3075                                                                                                                                                                EE injured his ear while firing a revolver becauseof not having her ear protector properly in place.
## 3076                                                                                                                                                                                                                                EE injured left ear on a scuba dive.
## 3077                                                                                                                                                                                                                                             EE injured lt ear canal
## 3078                                                                                                                                                                                   EE injured neck while struggling with inmate. Also hit back of head against wall.
## 3079                                                                                                                                  EE injury occured when she was sitting at table gathering papers & pictures when wind blew board on her head. Injury back of head.
## 3080                                                                                                                                                              EE injury occured wind blew lid down his head while was searching the tool chest. Blow to top of head.
## 3081                                                                                                                                                             EE installing a shutter when shutter fell appox 2 feel and hit middle of forehead cutting open skin. ()
## 3082                                                                                                                         EE installing a smart board in the ceiling, when a piece of ceiling tile went into right eye. Tile caused redness & irritation over weekend
## 3083                                                                                                                                                                EE installing ac in office window w/metal frame & while drilling a piece of metal flew into left eye
## 3084                                                                                                                                                                                  EE installing ceiling tiles when removing goggles dust particles went into rt eye.
## 3085                                                                                                                                                                                               EE installing door closer overhead when something fell into left eye.
## 3086                                                                                                                                                                 EE instructed inmate to hold out hands to be handcuffed and he struck her in the face with his fist
## 3087                                                                                                                                                                            EE instructing how to properly dot the job-stood up and hit head on bathroom stall latch
## 3088                                                                                                                                                       EE instructing on how to properly stand up plants, matter from a leaf got into right eye. Matter in right eye
## 3089                                                                                                                                                                             EE interceded between two aggressive clients. Client struck EE in forehead and left eye
## 3090                                                                                                                                                                                                                   EE intervened between pt/rn, pt hit EE in head ()
## 3091                                                                                                                                                                                     EE intervened in pt altercation and was punched in the head several times by pt
## 3092                                                                                                                                                                                 EE intervened with student and client. Client raised hand; hit EE in the right eye.
## 3093                                                                                                                                                               EE intervening between to clients attempting to redirect them-client struck EE in left eye with fist.
## 3094                                                                                                                               EE investigating a leaking pump on herb sprayer when he noticed a loos plug-touched plug which caused pesticide to go into both eyes.
## 3095                                                                                                                                                    EE involved in a use of force on an inmate he struck on rt side of head just above ear with plastic mop wringer.
## 3096                                                                                                                                                                                    EE involved in collision causing EE to hit a tree injury right arm, hip and head
## 3097                                                                                                                                                                                          EE involved in intervention had glasses knocked off, kicked, & stepped on.
## 3098                                                                                                                                                                                  EE involved in use of force in mental health, inmate scratched on rt side of face.
## 3099                                                                                                                                                                                                          EE is complaining about itchy eyes when working with mice.
## 3100                                                                                                                                                                          EE is experiencing choking, heavy nose bleeding and vomiting due to conditions of building
## 3101                                                                                                                      EE is having chronic eye infections, which began after they moved into a another building. Ecu's occupational safety & health investigating it
## 3102                                                                                                                                                                                         EE is know to occasionally work in high noise environment while consulting.
## 3103                                                                                                                           EE is wheelchair bound. His vehcile is equipped w/mechanical device that allows him to enter & exit the vehicle while still in the chair.
## 3104                                                                                                                       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
## 3105                                                                                                                                                                                                EE jammed bristles of brush in rt eye when his arm hit the partition
## 3106                                                                                                                              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.
## 3107                                                                                                                                                           EE jumped out of tractor trailer as it turned over, suffered minor head injury muscle strain, bruised leg
## 3108                                                                                                                                                                                                                                   EE kicked resident below left eye
## 3109                                                                                                                                                                                                     EE lacerated his forehead when he walked into a bullentin board
## 3110                                                                                                                                                                                                 EE laying inside wall installing drain line, debrisfell into rt eye
## 3111                                                                                                                                                                        EE leaned back in chair and fell backward. Employee was getting assistance on how to log in.
## 3112                                                                                                                                                                   EE leaned client against the wall to dress him, pipe holding curtain fell and hit EE in the head.
## 3113                                                                                                                                                                             EE leaned down to pick up a pot with a bamboo stake the bamboo stake went up EE's nose.
## 3114                                                                                                                                                             EE leaned forward in chair to pick up a pen, chair tipped and EE fell out, hitting her head on her desk
## 3115      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.
## 3116                                                                                                                                          EE leaned over to adjust seat belt of client on toliet-feet slipped out from underneath EE and hithead on metal hand rail.
## 3117                                                                                                               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
## 3118                                                                                                                                                                                  EE leaning under a storage rack and stood up hitting self in the back of the head.
## 3119                                                                                                                                 EE leaving cosmetic arts ctr & truck in front of her suddenly backed into her car. Driver side airbag deployed & hit EE in face. ()
## 3120                                                                                                                                                                               EE leaving exit gate and foot slipped off curb andee fell face first into steel pole.
## 3121                                                                                                                                                                                        EE leaving facility when insect flew into window of truck and got in rt eye.
## 3122                                                                                                                                                EE leaving for lunch out the front of courthouse took 1 step and fell face down all the way down the cement steps ()
## 3123                                                                                                                                                                        EE leaving survey site, getting into car and hit head on door frame-became ill 5 days later.
## 3124                                                                                                              EE leaving to go home after shift was over trippedand fell - 2inch bruise forehead - two laceration thru chin lower lip - teeth loose - damaged plate.
## 3125                                                                                                                                                                                     EE left eye sill hurting, scratchy feeling due to being exposed to pepper spray
## 3126                                                                                                                                                                          EE lifted a piece of pvc pipe and a piece of debris fell from the pipe into EE's left eye.
## 3127                                                                                                                                                                                                                 EE lifted cover off light and got trash in left eye
## 3128                                                                                                                                                                                                                              EE lifted door and felt pop in neck ()
## 3129                                                                                                                                                   EE lifted heavy box from handtruck being struck w/strong force in the face causing bledding to the bridge of nose
## 3130                                                                                                                                                                                         EE lifted lid on ice machine and lid fell back into eyeborw area. Left eye.
## 3131                                                                                                                  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.
## 3132                                                                                                                                                                          EE lifting a resident with two other people. Resident head came down and hit staff lt eye.
## 3133                                                                                                                                                                                                                   EE lifting mop water and water splashed into face
## 3134                                                                                                                                                                                               EE lifting window to place fan in it, and in doingso the window fell.
## 3135                                                                                                                                                                                EE loaded and charged firearm, fire 1 shot, sharp pain and loud ringing in both ears
## 3136                                                                                                                                                      EE loading boxes into state veh raising up bumping head on door frame injury bump on head and neck compression
## 3137                                                                                                                                                                                                             EE loading brush into truck-limb scratched EE in rt eye
## 3138                                                                                                                                                                                               EE loading car for photo shoot and bumped head on corner of hatchback
## 3139                                                                                                                                                              EE loading firewood into truck, whe a stob (branch) bounced off the truck and hit him in the mouth. ()
## 3140                                                                                                                                                           EE loading logs & debris on truck after throwing a log onto truck it rolled off hitting him in the mouth.
## 3141                                                                                                                                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.
## 3142                                                                                                                                                                 EE looking at a file-bent down to look in basket and stood up and hit head on corner of file drawer
## 3143                                                                                                                                                                           EE looking at a steam valve and moved the insulation back and something fell into my eye.
## 3144                                                                                                                               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.
## 3145                                                                                                                                                                     EE lost balance when a coke bottle rolled under feet causing EE to fall down three cement steps
## 3146                                                                                                                                                                                                       EE lost consciousness and feel to the sidewalk injuring head.
## 3147                                                                                                                   EE lost footing while walking down stairs, was unable to grasp handrail & fell down remainding four (4). Contusions foot, knee cap & back of head
## 3148                                                                                                                                              EE lt kitchen headed towards e dorm and does not remember anything for several min. She apparently fell and passed out
## 3149                                                                                                                                                                         EE lt shoe slipped of and EE fell tripping over itee fell hitting her head and lt shoulder.
## 3150                                                                                                                                                                                       EE made a pick up of loose linen. Something in linen flew into EE's left eye.
## 3151                                                                                                                     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
## 3152                                                                                                                   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
## 3153                                                                                                                                                                                                          EE made contact w/fellow actor directly to rt side of jaw.
## 3154                                                                                                                                                                                      EE made full facial and body contact with edge of unused shower stall door. ()
## 3155                                                                                                                                                                                           EE making announcement to pts, afterward one of the pts hit EE on face ()
## 3156                                                                                                                                                                                  EE making bed, while putting pad on bed, orgel came out of pad and got in EE's eye
## 3157                                                                                                               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.
## 3158                                                                                                              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.
## 3159                                                                                                                                                                                         EE misjudged step down from bldg falling forward & hitting head on asphalt.
## 3160                                                                                                                                                                                                                EE missed step and fell forward and hit head on wall
## 3161                                                                                                                                                                                                                   EE missed the step coming down from the platform.
## 3162                                                                                                                                                                              EE misstepped on the stairs, rt face was hit on the wall and eyelid cut by eyeglasses.
## 3163                                                                                                                                                      EE moved the bakers box whick struck top of the hood that held pots two pots fell striking EE above her lt eye
## 3164                                                                                                                           EE moving cleaning agents on hand truck when one container fell off truck onto pavement causing it to burst & splash into his face & eyes
## 3165                                                                                                                                               EE moving electrical equipment in room-dust build up on cabinets blown in air by vents and dust got into EE's rt eye.
## 3166                                                                                                                                                                                                    EE moving equipment for radio engineer & got debris in right eye
## 3167                                                                                                                                         EE moving furniture when sofa of chair fell out hand hit EE in eye and broke lense of glasses. Contusion rt orbital region.
## 3168                                                                                                                                                                                                 EE moving furniture, turning over couch and was struck in the face.
## 3169                                                                                                                                                                              EE moving insulation fibers wiped eyes with hands before washing and scratched rt eye.
## 3170                                                                                                                                                                                                                        EE moving metal sign and was hit in the head
## 3171                                                                                                                                                                                                              EE moving patient. Scratch on left side of ear andneck
## 3172                                                                                                                        EE moving stacking & labeling boxed. Dust in air accompanied with hot temp. In building, EE has dstallergy, irritated itching & burning eyes
## 3173                                                                                                                               EE moving to front forklift to help position beam. Forklift was carrying ducked around beam hit fork-lift - cut upper bridge of nose.
## 3174                                                                                                                                                                                                           EE mowing grass on campus stung on rt upper eyelid by bee
## 3175                                                                                                                                                                                                    EE mowing grass wind shifted and blew grass particles in lft eye
## 3176                                                                                                                                                                                                       EE mowing lawn and the wind blew a foreing object into rt eye
## 3177                                                                                                                                                                  EE noted red and swollen eyes with discharge. EE has been in contact with client positive for MRSA
## 3178                                                                                                                                                                                        EE noticed brown liquid dripping-walked around & liquid splased in right eye
## 3179                                                                                                                                                                 EE noticed colored discharge and crusty appearanceto eyes. EE came in contact with client with MRSA
## 3180                                                                                                                                    EE noticed left eye bothering him/beleives wed Sept. 26/not much thought but did not go away. Went to Dr & Removed metal sliver.
## 3181                                                                                                                                                                                      EE noticed something near her eye. Afterward became itchy & swollen. Left eye.
## 3182                                                                                                                                        EE observed Dr Cohn pull needle out of inmates back and aimed at EE upper left side of face, squirting solution in left eye.
## 3183                                                                                                                    EE observed workers waxing hallway. He proceeded down hall with caution. He lost footing and fell trying to catch himself. Chin/mouth hit floor.
## 3184                                                                                                                                                                  EE observing opponent softball game-at an adjacentfield a ball was hit & struck EE in back of head
## 3185                                                                                                                                          EE observing student drawing blood in phlebotomy class when student withdrew needle- blood squirtedin instructor's rt eye.
## 3186                                                                                                                                         EE observing student teacher conducting a volleyball class-when ball hit EE in the face swelling nose and warpping glasses.
## 3187                                                                                                                                                                      EE offered medication to inmate. Inmate threw cup of urine on EE. Urine went in EE's right eye
## 3188                                                                                                                                                                             EE on break going towards lobby-looked away and turned back and walked into glass door.
## 3189                                                                                                                                                                            EE on client outing and slipped on water and fell hitting left side of face on concrete.
## 3190                                                                                                                                                             EE on foot in pursuit of suspect in wooded area when tree limbs and briars hit EE in left eye and face.
## 3191                                                                                                                                                     EE on maint. Conference for shower/tub training stepped into shower and slipped and fell and head hit the wall.
## 3192                                                                                                                     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
## 3193                                                                                                                                                                                                           EE opened a bottle of clorox and some splashed into eyes.
## 3194                                                                                                                                                                                                           EE opened a cabinet door, hit head on the corner of door.
## 3195                                                                                                                                               EE opened cabinet door, stepped too close to avoid water in the floor, hit bottom corner of cabinet door with head ()
## 3196                                                                                                                                                                                                                    EE opened door and something blew into EE's eye.
## 3197                                                                                                                                                                                                      EE opened door to EE bathrm, dust fm ceiling fell into eyes ()
## 3198                                                                                                                           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
## 3199                                                                                                                                                                                                    EE opened door to er generator control cabinet, rust blew in eye
## 3200                                                                                                                                                               EE opened loading dock door. He did not open it fully and bumped head on door. Cut and bruise on head
## 3201                                                                                                                                                        EE opened metal cabinet thinking the fume hood wasworking, it was not. He had chemical exposure to his eyes.
## 3202                                                                                                                                                                                 EE opened overhead cabinet to get paper and row ofcabinets collapsed and fell on EE
## 3203                                                                                                                                        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.
## 3204                                                                                                                                                                                  EE opened tower door and bent down to get lunch and paperwork and hit head on door
## 3205                                                                                                                                                                                                             EE opened up the carrier and pop out and hit her tooth.
## 3206                                                                                                                                   EE opening mail, dropped letter opener, got off stool to retrieve & raised up, hitting back/top ofhead on counter. Head contusion
## 3207                                                                                                                                                          EE opening new bottle of peroxide pulled plastic seal off open new bottle and peroxide splashed in lt eye.
## 3208                                                                                                                                                        EE opening restroom door she had to sneeze. When she hit her head on corner of door. Mild concussion lt eye.
## 3209                                                                                                                                                                                                     EE operating farm tractor mowing heavy weeds, lefteye irrirated
## 3210                                                                                                                  EE operating his vehicle w/blue lights & siren activated, on hanover st while involved in chase. EE pursued suspect on foot, slipped & struck head
## 3211                                                                                                                                                                           EE operating milling machine when a piece of steelhit him in rt eye under safety glasses.
## 3212                                                                                                                                                                         EE ordered an inmate to go to his room----inmate jumped up and hit EE. Laceration left eye.
## 3213                                                                                                                                                             EE outside of gatehouse, he struck a match, match head blew into rt eye causing injury. Injured rt eye.
## 3214                                                                                                                                                                                                      EE overhead drilling into ceiling and dust fell into left eye.
## 3215                                                                                                                                                                           EE participated in o. C. Spray practical exercise. EE had extreme discomfort in his eyes.
## 3216                                                                                                                               EE participated in the practical application of o. C. Spray, after decontamination process EE continued to have severe left eye pain.
## 3217                                                                                                                                                                     EE participated in wellness fair and had eyes tested for glaucoma. Eyes irritated from reaction
## 3218                                                                                                                                                                                EE participating in boxing exercise and was hit struck on the left side of the head.
## 3219                                                                                                                                                            EE participating in crdt training-during which fellow officer fell against her & fractured bridgeof nose
## 3220                                                                                                                                   EE participating in dept workshop. Her partner for this exercise struck the EE with knee. The exercisewas disentangle themselves.
## 3221                                                                                                                              EE participating in oleoresin capiscum spray training. EE was sprayed in face with oc spray. Bilateral corneal abrasions to both eyes.
## 3222                                                                                                                       EE participating in unarmed self-defense class & while practicing in an escape from ground attack EE's rt eye turned blood red after maneuver
## 3223                                                                                                                      EE particpated in oc spray training and was sprayed in the eyes. EE received a left eye corneal abrasion and possible laceraton of the eye. ()
## 3224                                                                                                                                                                                                             EE passed out and fell to the floor.... Back of thehead
## 3225                                                                                                                                                                                              EE passed out while sitting in a chair--fell striking head and rt knee
## 3226                                                                                                                                                  EE passenger in pert van rtrng from call-out; van ran off rd., hit ditch; mtpl. Injrs: head, nk, bk, l hnd, l fgr.
## 3227                                                                                                                                                                                  EE passenger in veh going to client's funeral whenstuck by another veh on rt side.
## 3228                                                                                                                         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.
## 3229                                                                                                                                                                                       EE patching wall with putty knife and small piece of trash went into left eye
## 3230                                                                                                                                                                  EE patroling bravo dorm, EE hit by thrown bar of soap and was struck behind left ear head and neck
## 3231                                                                                                                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
## 3232                                                                                                                                                                                                                           EE pepper sprayed in eyes during training
## 3233                                                                                                                                                                                                                       EE performed mouth/mouth cpr on an inmate. ()
## 3234                                                                                                                                                  EE performing cpr on near drowning victim when EE received partial mouthful of victim's blood and bodily fluid. ()
## 3235                                                                                                                                             EE performing inspection when he bumped his head against a pipe. EE sustained an gash ain the eyebrow of his right eye.
## 3236                                                                                                                                                                         EE performing lab experiment with blood-----tubes broke and blood splashed in EE right eye.
## 3237                                                                                                                                                                                                     EE performing state duty and came in contact with flood waters.
## 3238                                                                                                                                     EE picked up a gallon jug of disinfectant, the previos user hand not secured top, and the disinfectant splashed into EE's face.
## 3239                                                                                                                                                                        EE picked up bag of bedding from stack. Open bag spilled bedding into air and got into eyes.
## 3240                                                                                                                                                                EE picked up cassettes and they slid apart, drawers came open, caught the side of employee's face ()
## 3241                                                                                                                                                                              EE picked up hose and end of hose slapped EE in rteye causing irritation and soreness.
## 3242                                                                                                                                                                                                                   EE picked up juice and something got into rt eye.
## 3243                                                                                                                                                                     EE picked up object from floor. When EE stood backup, EE hit her head on corner of cubby boxes.
## 3244                                                                                                                                                          EE picking pine cones lift truck was going under tree and needle. Wen by saftey glassed & puncturedrt eye.
## 3245                                                                                                                                                                                                                   EE picking up antena & injured lt eye on the tip.
## 3246                                                                                                                                                                                         EE picking up litter under tree, turned around andtree branch struck rt eye
## 3247                                                                                                                                                                                                            EE picking up plants and pull in floor irritated rt eye.
## 3248                                                                                                                                                                                                  EE picking up sticks and was stung on lower lip by yellow jackets.
## 3249                                                                                                                                                                       EE placed bottle in her bucket and it fell up against another bottle and sprayed in her face.
## 3250                                                                                                                                                                                                        EE placed fries in hot grease and grease popped in EE's face
## 3251                                                                                                                                       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.
## 3252                                                                                                                                                                                       EE placed juvenile in restraints and student spit in EE face and on his body.
## 3253                                                                                                                                                                                                        EE placed resident in hold and resident headbutted her face.
## 3254                                                                                                                                                                        EE placing handcuffs on inmate who lundged at EE and slapped EE on the left side of his face
## 3255                                                                                                                                                                EE placing inmate in restrains inmate spit in the face of EE & pushing him with hands to chest of EE
## 3256                                                                                                                                                     EE placing leaking trash bag in dumpster when a liquid splashed in his right eye causing burning and irritation
## 3257                                                                                                                                                                           EE placing perserved specimen into storage container and solution splashed into left eye.
## 3258                                                                                                                                                                EE placing pouches on top rack-bent over to place more and was poked in left eye by corner of pouch.
## 3259                                                                                                                            EE placing resident in shower chain, resident grabbled hair, pulled down/once released went to the back shower chair to pull resident up
## 3260                                                                                                                                                                        EE playing ball with consumer and was hit in mouthwith ball. Chipped rt upper back partical.
## 3261                                                                                                                                                                EE playing basketball and tripped over another player's leg falling hitting face and head on asphalt
## 3262                                                                                                                                                                                      EE playing football with clients and hit his nose and lip on clients forehead.
## 3263                                                                                                                                                                                           EE playing in softball game w/client-client swung bat and hit EE in face.
## 3264                                                                                                                              EE playing soccer with campers & tripped & fell. Bit his lip after bumping chin with knee. 1 tooth was chipped, another knocked loose.
## 3265                                                                                                                                                                                                   EE pouring dish detergent into sink which splashedinto right eye.
## 3266                                                                                                                                                                                    EE pouring liquid tissue collection into bottles when some splashed into rt eye.
## 3267                                                                                                                                                                                       EE pouring trk wash into power washer reservior and it splashed into his eye.
## 3268                                                                                                                                                                                                      EE preparing to wash cloths when something popped into her eye
## 3269                                                                                                                          EE printing report on printer small propane bottlefell out of mailbox above printer & struck her on rt cheekbone contusion on rt cheekbone
## 3270                                                                                                                                                                                        EE pruning dead cedar branches-small piece of cedar bark went into right eye
## 3271                                                                                                                                                                                   EE prying open safe w/another EE when crow bar slipped and hit EE on top of head.
## 3272                                                                                                                                                                                                                      EE pulled chair forward and hit head on shelf.
## 3273                                                                                                                                                                      EE pulled lever on adjustible chair and chair fell forward and struck EE across bridge of nose
## 3274                                                                                                                              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
## 3275                                                                                                                                                            EE pulled on the cabinet door, the handle came off, EE fell backwards, hitting back of head on the floor
## 3276                                                                                                                                                                      EE pulled on weight belt buckle which failed hurling a weight at his head causing a laceration
## 3277                                                                                                                                                                            EE pulled open the door of the building and hit his head on the door as it swung open ()
## 3278                                                                                                                                               EE pulling & adjusting newly installed lighting, when the system fell striking EE on the head and hand. Lacerted head
## 3279                                                                                                                                                                                                    EE pulling bag of garbage too hard and edge of bagwent into eye.
## 3280                                                                                                                                                                                    EE pulling bottle of bleach off of shelf-cap not on tight-bleach poured onto EE.
## 3281                                                                                                                                                                  EE pulling file, pulled hard to get it out, when it came out it hit EE in her lt eye causing pain.
## 3282                                                                                                                                                                                                      EE pulling mouse cage top off shelf, fell and hit him in head.
## 3283                                                                                                                                        EE pulling on fence post with hands to tighten wire-wide straned broke and fence post hit EE in the mouth breaking 4th tooth
## 3284                                                                                                                  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
## 3285                                                                                                                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.
## 3286                                                                                                                                                                                                 EE pulling weeds-bent down and leaf of plant hit EE in the left eye
## 3287                                                                                                                                                   EE pulling wire throug conduit with plyers-when plyers came loose from wire and force of tool hit EE in the face.
## 3288                                                                                                                                                                                   EE pushed out of chair and punched on left side of face by pt, twisted r ankle ()
## 3289                                                                                                                      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.
## 3290                                                                                                                                                                                             EE put hand up to avoid staple hitting eye and poked himself in the eye
## 3291                                                                                                                                                                                     EE put on safety glasses & some trash was on the glasses lens & got in his eye.
## 3292                                                                                                                                                    EE put something in trash can. When coming back upshe struck her head on a shelf in fellow employeesworkstation.
## 3293                                                                                                                                                                EE putting bleach in pan, bleach hit pitcher in pan and bounced back into lft eye. Undiluted bleach.
## 3294                                                                                                                                                                                                EE putting boxes up above loft and foreign object got into left eye.
## 3295                                                                                                                                                                                EE putting client in hold when arm came free-client grab table which hit EE in head.
## 3296                                                                                                                                                                      EE putting client in wheelchair to transport- client was swinging arms and hit EE in left eye.
## 3297                                                                                                                                                                      EE putting client to bed-client did not want to beturned over and hit EE in the face with fist
## 3298                                                                                                                                                                        EE putting clients clothes into storage chest whenlid of chest fell striking bridge of nose.
## 3299                                                                                                                                                                                           EE putting face mask on to clean chalkbroad and struck eye with noseclip.
## 3300                                                                                                                                                                                                    EE putting helmet on clt because of sib and clt hit EE on rt ear
## 3301                                                                                                                                                                                            EE putting ice box in back of van and bumped his head. Abrasion to scalp
## 3302                                                                                                                                                         EE putting lock on door and as she was sliding lock back on glass chipped and went to her eye. Glass in eye
## 3303                                                                                                                                                                               EE putting new trash bag in trash can, stood up and hit head on paper towel dispencer
## 3304                                                                                                                                               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.
## 3305                                                                                                                                                                                                      EE putting out woodchip shavings and wind blew them in her eye
## 3306                                                                                                                                                                                 EE putting printer on hand trk-handle of hand trk came up and hit EE on left cheek.
## 3307                                                                                                                                                                                                                 EE putting pt to bed and pt spit in EE face, lt eye
## 3308                                                                                                                                                          EE putting solution disinfectant in mop bucket andthe solution splashed in his eyes. Solution in both eyes
## 3309                                                                                                                                                          EE putting washing detergent up-bottle turned the wrong way and spout hit shelf-detergent went into rt eye
## 3310                                                                                                                                                                                                           EE raised head striking against corner of overheadcabinet
## 3311                                                                                                                                                   EE raised lid to medicine cabinet to get inmate medication out when the lid fell onto his hand cutting it on top.
## 3312                                                                                                                                         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.
## 3313                                                                                                                                                                                                 EE raised windown to get some air when window fellon EE's forehead.
## 3314                                                                                                                                                                                                        EE raked over s wasp nest and was stung on the face and back
## 3315                                                                                                                  EE ran electtic cord through her fingers straightnit out before attempting to plug in socket -struckcorner off rt eye. Rt eye broken blood vessel.
## 3316                                                                                                                                                                                     EE ran into another EE while attempting to intervene in fight between patients.
## 3317                                                                                                                                                                        EE ran into goal post while teaching soccer. EE recieved a head laceration above the lt eye.
## 3318                                                                                                                                                                               EE ran into the back of a car and during the impact EE hit his head on the windshield
## 3319                                                                                                                                                                       EE rasied head up & butted his head on a damper onthe duckwork, while he was fixing a toliet.
## 3320                                                                                                                                                                                             EE reached back on shelf. Shelf fell hitting her on right side of head.
## 3321                                                                                                                                                                                                       EE reached down to pick up h2o bottle and hit scalp on corner
## 3322                                                                                                                                               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.
## 3323                                                                                                                                               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
## 3324                                                                                                                                                                                             EE reached for chemical dispenser when it fell and splashed in her eyes
## 3325                                                                                                                                         EE reached thru section of screen door to pull metal door to lock. Door hit officer in nose. Small cut no stitches required
## 3326                                                                                                                                                                                         EE reached to pick up papers on floor, hit head on corner of keyboard tray.
## 3327                                                                                                                                                         EE reached up in closet for carpet cleaner. Lid was not tightened and cleaner spilled and got in EE's eyes.
## 3328                                                                                                                                                                                            EE reached up to get pans. Pan slipped off top rack and hit EE in mouth.
## 3329                                                                                                                                                   EE reached up to unlock the tv box, box fell and hit EE on l side of forehead. Laceration, swell- ing and brused.
## 3330                                                                                                                                                                            EE rearranging office and stepped on something that flew up and hit her in the left eye.
## 3331                                                                                                                                                                      EE reassemblying soccer goals and moving goals when goals on top fell over and hit EE on head.
## 3332                                                                                                                                                                          EE received a burst of pepper spray in his face while helping subdue an aggressive inmate.
## 3333                                                                                                                                                                                                                                EE received a chemical splash in eye
## 3334                                                                                                                                                                                         EE received a gunshot to the head **********fatality***********************
## 3335                                                                                                                                                                                     EE received direct hit of pepper spray to the eyesduring self defense training.
## 3336                                                                                                                                                                                      EE received punch to face by inmate while EE was participating in use of force
## 3337                                                                                                                                                                                                         EE received rabies vacinnations and had reaction from them.
## 3338                                                                                                                                                                              EE received welders arc burn to eyes while workingin shop adjacent to welding activity
## 3339                                                                                                                                                                              EE receiving sample from cooler - her face was exposed to unknown concentrated vapors.
## 3340                                                                                                                                                                                                                              EE recieved a flash burn while welding
## 3341                                                                                                                                                                                              EE redirected client; client struck EE in right eye scratching eye. ()
## 3342                                                                                                                                              EE redirecting a student when the student began fighting EE striking EE under rt eye with his elbow. Contusion rt eye.
## 3343                                                                                                                                                                                                          EE redirecting client-client struck EE on rt side of face.
## 3344                                                                                                                                                      EE related that he was opening a gate to let transportation vehicle in when sand or metal blew into his lt eye
## 3345                                                                                                                                                 EE removed a pump & set it on an air handler. He bent over & the pump fell on his head, causing a scalp laceration.
## 3346                                                                                                                                EE removed bottle of bleach from the truck, slipped out of hand & fell to the ground splashingup into face, irritation to both eyes.
## 3347                                                                                                                                     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
## 3348                                                                                                                                                                                   EE removed latex gloves and rubbed his rt eye before washing the glove powder off
## 3349                                                                                                                                                        EE removed plug from g-tube and gastric secretionssplashed out before EE pinched tube closed wehnt into eyes
## 3350                                                                                                                            EE removed safety goggles due to fogging from perspiration. Small piece of styrofoam fell into eyes. Swelling and irritation to left eye
## 3351                                                                                                                                                                                           EE removing a ceiling tile to adjust a/c box and dirt fell into left eye.
## 3352                                                                                                                                                                     EE removing a paper towel from holder --- holder came down hitting EE across the bridge of nose
## 3353                                                                                                                                                                                                              EE removing ceiling tile whe derbis fell into left eye
## 3354                                                                                                                                                                                           EE removing copier toner from trash-copier toner blew into face and eyes.
## 3355                                                                                                                                                                            EE removing forks frm forklift-bent down to removelocking pins and struck head on forks.
## 3356                                                                                                                                EE removing inmate from cell, inmate violent, resisted being put in restraints by fighting, fellon top of EE and rolled down stairs.
## 3357                                                                                                                                   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.
## 3358                                                                                                                                 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
## 3359                                                                                                                           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.
## 3360                                                                                                                                                                                                              EE removing trash when he bumped head on the stairwell
## 3361                                                                                                                                                                                                                      EE removing wash down plug that flipped in eye
## 3362                                                                                                                                                                               EE rendering care to seriously ill patient when patient cough blood to face and eyes.
## 3363                                                                                                                                                                             EE rendering care to seriously ill patient when patient coughed blood in face and eyes.
## 3364                                                                                                                                                                                                                      EE repairing steam leak-stood up and hit head.
## 3365                                                                                                                                             EE repairing wtr heater in apt-cut off lines to wtr-when cutting copper line hot wtr in line splashed on EE's forehead.
## 3366                                                                                                                                                                     EE replacing batteries in timer & battery acid squirt in ees eyes - left eye & corner of rt eye
## 3367                                                                                                                                                                                             EE replacing part on hospital bed when the headborad fell on EE's head.
## 3368                                                                                                                                                                                                        EE reported a patient threw a book and hit her in the eye ()
## 3369                                                                                                                                                                                                                            EE reported conjunctitvitis in the eyes.
## 3370                                                                                                                                                          EE reported he was wiping his face off with a paper towel and the corner of it struck him in hisright eye.
## 3371                                                                                                                                 EE reported he was working on the 2nd floor supervising inmates, when inmate leon ponder assaulted him by striking him in the face.
## 3372                                                                                                                                                                                                                   EE reported that he had some object in his rt eye
## 3373                                                                                                                                                                   EE reported that he opened the door to the sergeants office and it struck him on his left eyebrow
## 3374                                                                                                                                            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
## 3375                                                                                                              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. ..
## 3376                                                                                                                                                       EE reported that she leaned over to talk to a patient and the patient hit EE in her face(nose) with her hand.
## 3377                                                                                                              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..
## 3378                                                                                                                   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
## 3379                                                                                                                                     EE reported that while conducting routine cell block check, an inmate threw liquid in both eyes. (liquid believed to be bleach)
## 3380                                                                                                                       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,
## 3381                                                                                                                                                      EE reported tht he was supervising inmates spreading mulch when a gust of wind blew some mulch into his rt eye
## 3382                                                                                                                                                                                                     EE reported to medical with open area 1/2 inch from left eye ()
## 3383                                                                                                                                          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.
## 3384                                                                                                                                                                                                                             EE reported to work w/red eye syndrome.
## 3385                                                                                                                                                                                         EE reported while placing a inmate into cell he was assaulted by the inmate
## 3386                                                                                                                                                                              EE reporting to work and slipped and fell on wax floor injuring head, hip and buttock.
## 3387                                                                                                                    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.
## 3388                                                                                                                                          EE reports pain in ears and difficult breathing after ward he works on was painted. Pain in ears & respiratory complaints.
## 3389                                                                                                                                                                                                         EE reports that inmate spit in EE's face and her right eye.
## 3390                                                                                                                                                              EE reports that w/out warning a juvenile struck him with a closed fist on the left side of the face ()
## 3391                                                                                                                                                    EE responded to a physical confrontatin between two inmates inmate threw trash can it hit EE in the back of head
## 3392                                                                                                                       EE responded to alarm; upon closing access panel on system, the latch failed &the panel forcefully opened & struck EE in face; causing injury
## 3393                                                                                                               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.
## 3394                                                                                                                                                      EE responding to a fight between two inmates-when separating inmates one inmates elbow hit EE in rt eye cheek.
## 3395                                                                                                                                                                                         EE responding to a motor veh accident and was exposed to a toxic substance.
## 3396                                                                                                                                                                                                                      EE restrainin inmate other EE head hit EE nose
## 3397                                                                                                                                                                    EE restraining juvenile and was struck in face, causing bruising and nose to bleed. Right cheek.
## 3398                                                                                                                                                                               EE restraining juvenile; juvenile struck EE in thehead & pushed against table & wall.
## 3399                                                                                                                                                                           EE returning for safety inspection when struck on the left front side of an oncoming car.
## 3400                                                                                                                                                                                                               EE returning from break-had seizure-fell hitting head
## 3401                                                                                                               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
## 3402                                                                                                                                                                                                             EE returning to office-tripped and fell landing onface.
## 3403                                                                                                                            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
## 3404                                                                                                                                                                                           EE riding gator with open windshield-something caused burning in left eye
## 3405                                                                                                                                      EE riding in golf cart, stacey pulled EE head overand while doing so my tooth or sunglasses busted my lip. Bruise to upper lip
## 3406                                                                                                                                                                                             EE riding in van-when driver went over a bump EE hit head on top of van
## 3407                                                                                                                                                                                                                                              EE rolled golf cart ()
## 3408                                                                                                                                             EE rollerskating with special skills group- ran into wall at high rate of speed to avoid collision and hit nose on wall
## 3409                                                                                                                                                                             EE rolling up a section of wire, the wind picked upand blew something into EE left eye.
## 3410                                                                                                                                                                                    EE rose from filing and hit hand on filing shelf (metallic edge)-cut on forehead
## 3411                                                                                                                                                                                                           EE rreached for paper on shelf and hit head while reading
## 3412                                                                                                                                                                                            EE rubbed her left eye after she took off the glove that she was wearing
## 3413                                                                                                                                                                        EE said a pt was extremely angry threw a pool stick and hit EE on top of the head very hard.
## 3414                                                                                                                                                  EE said she was spraying the elevator wall and thechemicals splashed in her face and a little got onher upper lip.
## 3415                                                                                                                  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
## 3416                                                                                                                                                                                           EE sat down in a metal chair the chair collapsed and EE hit head on wall.
## 3417                                                                                                                                         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 ()
## 3418                                                                                                                                                                                             EE sat in chiar, chair and chair roller from underhim hi head hit wall.
## 3419                                                                                                                                                          EE sates writer left out of the chart room and thepatient jumped up and struck EE in the face unpro voked.
## 3420                                                                                                                                                                                EE saw patient to consulate room for treatment. Eecontracted head lice from patient.
## 3421                                                                                                                                                                                                                EE scraped eyelid on trellis wire while bending down
## 3422                                                                                                                                                                           EE scraping caulk on wall, painting tool slipped off working surface stricking upper lip.
## 3423                                                                                                                                                                                                                                                EE scratched rt eye.
## 3424                                                                                                                          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.
## 3425                                                                                                                                                   EE securred outside sally port gate. EE retured tocare when gust of wind caught door-striking her ltside of face.
## 3426                                                                                                                                                                                      EE sent over computer and cut back of head on nail protruding from shelf above
## 3427                                                                                                                                                                                                               EE servicing roof top exhaust and dust got into eyes.
## 3428                                                                                                                               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.
## 3429                                                                                                                                                                                               EE sharpening a hatchet on grinder-piece of metal flew into EE's eye.
## 3430                                                                                                                                             EE sharpening paint scrapers when a piece of metalwent in my safty glassed and hit my eye. Piece of metal stuck in eye.
## 3431                                                                                                                                                                                                                              EE shearing sheep debris got into eye.
## 3432                                                                                                                                                                                                        EE shearing sheep in windy conditions felt something in eye.
## 3433                                                                                                                                                                         EE shelving books, bent over to pick up stack of books and hit head on corner of book truck
## 3434                                                                                                                                                                                 EE shook a cold pack to activate it when it exploded and got into both of his eyes.
## 3435                                                                                                                                                             EE shooting at approved targets-a piece of shrapnel from guilet jacket flew back and hit EE in the ear.
## 3436                                                                                                                                                   EE shooting revolver, she noticed her ears ringingshe couldn't her well - sensitive ears, decreased hearing ears.
## 3437                                                                                                                                                    EE sittin at my dest hand paperclip in lthand & holder in rt. Brought up lt hand misjudged poked self in lt eye.
## 3438                                                                                                                                                   EE sitting a traffic light, he was struck by one vehicle from rear and pushed into another. Recurr-ing headaches.
## 3439                                                                                                        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. ()
## 3440                                                                                                                                                       EE sitting at desk when metal grate from overhead light broke loose and fell on top of EE's head. Laceration.
## 3441                                                                                                                                                      EE sitting at desk working on daily transmittal when a piece of paper slipped from hand and hit her in rt eye.
## 3442                                                                                                                                                                            EE sitting beside client. Client started to spreadarms in air & finger hit EE in lft eye
## 3443                                                                                                                                          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.
## 3444                                                                                                                                                                               EE sitting in chair when chair tipped over EE felldown hitting lock on door with head
## 3445                                                                                                                                                                         EE sitting in classroom during officer refresher training a bee stung him on his head area.
## 3446                                                                                                                                                                                        EE sitting in closet and sheetrock fell from ceiling and hit EE in the head.
## 3447                                                                                                                                                                                         EE sitting in staff support room when a client hitee with fist in the face.
## 3448                                                                                                                                                                                EE sitting in veh as passenger while trk was in reverse when trk hit two park signs.
## 3449                                                                                                                                 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.
## 3450                                                                                                                                                                                                                                  EE slipped an fell hurt right knee
## 3451                                                                                                                                                        EE slipped and fell against sign on sidewalk whilewalking across campus brickyard. Laceration on forehead.\\
## 3452                                                                                                                                                                                                                      EE slipped and fell and hit face against wall.
## 3453                                                                                                                                                                                               EE slipped and fell in wet/oily parking deck and hit head on concrete
## 3454                                                                                                                                                                                                                               EE slipped and fell injuring her head
## 3455                                                                                                                                                                                            EE slipped and fell into a fence topped with razorwire and cut his head.
## 3456                                                                                                                                                                                                                       EE slipped and fell on a slick concrete floor
## 3457                                                                                                                                                                                                                         EE slipped and fell on a wet floor.... Head
## 3458                                                                                                                                                                                                                 EE slipped and fell on ice while assisting motorist
## 3459                                                                                                                                                                                                          EE slipped and fell on ice... Injured the back of his head
## 3460                                                                                                                                                                                          EE slipped and fell on wet floor hitting head against metal door facing ()
## 3461                                                                                                                                                                    EE slipped and fell on wet floor in client's bed-room landed on rt side-hitting head on dresser.
## 3462                                                                                                                                                                                                              EE slipped and fell on wet floor striking head on door
## 3463                                                                                                                                                                                                      EE slipped and fell on wet floor striking lt shoulder and head
## 3464                                                                                                                                                                                                EE slipped and fell stepping off elevator striking her head on floor
## 3465                                                                                                                                                                                                             EE slipped and fell while opening gate-hit back of head
## 3466                                                                                                                                                                                                              EE slipped and struck her head and elbow against truck
## 3467                                                                                                                                                                          EE slipped going down a stairwell and hit his headon the concrete wall at bottom of stairs
## 3468                                                                                                                                                                                                           EE slipped going in to crew room hitting door. Right ear.
## 3469                                                                                                                                         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
## 3470                                                                                                                                                                   EE slipped in stream while holding survey rod. Briars scratched left eye causing corneal abrasion
## 3471                                                                                                                                                                          EE slipped in water on floor and fell hitting headfell on arm, unconcious for 2-3-minutes.
## 3472                                                                                                                                                                            EE slipped in water on floor when EE was walking. Injured foot, neck, head, arm, bottom.
## 3473                                                                                                                                                                                     EE slipped into water and fell striking the lt side of her head on a door frame
## 3474                                                                                                                                                                                                   EE slipped off ladder and fell hitting his head against the table
## 3475                                                                                                                                                             EE slipped on a waxed floor & fell, twisting her left ankle & landing on her left knee, left hand &head
## 3476                                                                                                                                                   EE slipped on an outside ramp falling over the rail striking her head on the floor deck and causing an eye injury
## 3477                                                                                                                                                                                    EE slipped on bedroom floor; left knee and arm hit floor first and then head. ()
## 3478                                                                                                                                                                                                                                     EE slipped on floor and fell ()
## 3479                                                                                                                                                             EE slipped on floor when entering the door and fell hitting the left side of face and head on the floor
## 3480                                                                                                                                                                                        EE slipped on ice in parking lot and fell backwards hitting head on pavement
## 3481                                                                                                                                                                                     EE slipped on ice on pavement walking to his car and fell striking back of head
## 3482                                                                                                                                              EE slipped on icy surface and fell hitting head went to get up and fell again-paramedics call EE was found unconscious
## 3483                                                                                                                                                                                                                EE slipped on seat belt cover and fell. Neck & head.
## 3484                                                                                                                             EE slipped on slick solution in parking area slipped causing injury to left leg, right knee, both hands, bottom, chest, left side, head
## 3485                                                                                                                                                                                                         EE slipped on slippery floor and fell hitting headon metal.
## 3486                                                                                                                                                                                                             EE slipped on stairs and fell hitting head and rib cage
## 3487                                                                                                                                                                                                                       EE slipped on water on steps and hit her head
## 3488                                                                                                                                                                                       EE slipped on wet floor (from rain) fell & hit head against wall & left elbow
## 3489                                                                                                                                                                                                              EE slipped on wet floor after mopping hitting his head
## 3490                                                                                                                                                                                                              EE slipped on wet floor and fell hitting head and back
## 3491                                                                                                                                                                                       EE slipped on wet floor and fell hitting head on cart causing mild concussion
## 3492                                                                                                                                                                                                                       EE slipped on wet floor hitting head on steps
## 3493                                                                                                                                                                                     EE slipped on wet floor in micropsy room and hit head and pulled muscle in side
## 3494                                                                                                                                                                              EE slipped under bathing table, fell back hitting top of head and twisting right hand.
## 3495                                                                                                                                                                                                             EE smacked head on overhanging pallet above the bin. ()
## 3496                                                                                                                                                                                                                  EE sneezed and struck her head on a metal card box
## 3497                                                                                                                        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.
## 3498                                                                                                                                                                                                                                       EE sprayed chemicals in l eye
## 3499                                                                                                                                                                                                     EE sprayed disinfectant spay into both eyes when filling bottle
## 3500                                                                                                                                                                           EE sprayed floor in 4th barn hallway and hit his head on plexiglass biosafety supply box.
## 3501                                                                                                                                                             EE sprayed in face and eyes as part of pepper spray exposure training. Lt eye irritation and infection.
## 3502                                                                                                                                                                EE sprayed in face with pepper spray during traingee reported becoming dizzy and difficult breathing
## 3503                                                                                                                                                       EE sprayed prosan on the ceiling in the restroom trying to clean the tile, the prosan dropped into her eye ()
## 3504                                                                                                                                            EE sprayed w/pepper spray as part of regular training. EE stated when she woke up the following morning face was swollen
## 3505                                                                                                                                                                                                    EE spraying mirrow in bathroom and solution splashed in left eye
## 3506                                                                                                                                                                       EE sprayint iodine on cows-didn't release spray wand handle causing iodine to spray into eye.
## 3507                                                                                                                                        EE squatted down to provide treatment to animal & when she stood up, she hit her head on the metal cage. Referred to glenda.
## 3508                                                                                                                                                           EE squeezing plants out plastic container-- container broke and a piece of plastic flew into EE left eye.
## 3509                                                                                                                                                              EE stacking fire wood-bent down to pick up anotherlog and another log from top fell and hit EE in head
## 3510                                                                                                                                                               EE stacking plastic tables-removed table leg from one to correct poition when leg went into right eye
## 3511                                                                                                                                                                                       EE staes patient threw a remote and it struck EE in the temporal of the head.
## 3512                                                                                                                                            EE staes that he was in conversation with inmate thomas miles when saliva flew from inmates mouth and hit him in the eye
## 3513                                                                                                                                                                       EE standing at frt counter-co-worker picked up a spray bottle and chemical went into left eye
## 3514                                                                                                                      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
## 3515                                                                                                                                    EE standing in front of dry rack for beverage containerl one of containers was stacked on top shelf, it fell & struck EE on head
## 3516                                                                                                                                EE standing near basketball pole from basketball court. An inmate dribbling toward basket in crowd inmates elbow hit EE in eye area.
## 3517                                                                                                                                                                  EE standing on ladder & opened ceiling file, therewas broken brick on other side, fell into EE ear
## 3518                                                                                                                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
## 3519                                                                                                                                                                    EE state "I was struck in the face w/ a bat while taking water out on the field to the umpires."
## 3520                                                                                                                                                                     EE state a hand truck flipped over and struck him on the rt side of head around the rt eye area
## 3521                                                                                                                                                                    EE state after inspecting an area that inmates had just cleaned--EE felt something in his lt eye
## 3522                                                                                                                                                                                                                                  EE state an inmate spitted on him.
## 3523                                                                                                                                                                                                                    EE state he struck his head on a vending machine
## 3524                                                                                                                                                                                                                    EE state he was struck in the face by an inmate.
## 3525                                                                                                                                                                                                                            EE state some powder got into her lt eye
## 3526                                                                                                                                                                                                                    EE state the wind blew something into his lt eye
## 3527                                                                                                                                                             EE state while assisting with an aggressive inmatewho was fighting causing EE to fall striking his head
## 3528                                                                                                                                                                            EE state while assisting with an inmate he accidently sprayed his eyes with pepper spray
## 3529                                                                                                                                          EE state while assisting with an inmate who was having a seizure she struck her head on a napkin container in the bathroom
## 3530                                                                                                                                                                            EE state while attempting to stand his head struckthe bio harzard box located in a booth
## 3531                                                                                                                                                                                                        EE state while cleaning buses he stood up and stuck his head
## 3532                                                                                                                                                                                                       EE state while driving a truck something flew into his rt eye
## 3533                                                                                                                                                               EE state while getting out the car in the parking lot the wind blew an unknown object into his rt eye
## 3534                                                                                                                                                                                        EE state while going thru a door the door closed striking EE head and lt eye
## 3535                                                                                                                                                     EE state while he was attempting to break-up a fight b/w two inmates he was struck on the rt upper cheek araea.
## 3536                                                                                                                                                                                          EE state while making sercuity rounds the fan blewsome trash in her lt eye
## 3537                                                                                                                                                               EE state while opening the driver door to vehicle the door swung back and struck her under the lt eye
## 3538                                                                                                                                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
## 3539                                                                                                                          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
## 3540                                                                                                                                                    EE stated I bent down to put medication into refrigerator and I hit my head on open cabinet door when I stood up
## 3541                                                                                                                                      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
## 3542                                                                                                                                                                                             EE stated I/m came out of cuff and hit him in on l-sided of his head ()
## 3543                                                                                                                               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
## 3544                                                                                                                                                                                                                 EE stated a splash from gly-4 plus went into rt eye
## 3545                                                                                                                                                                                                         EE stated a yellow jacket stung him on the back of his head
## 3546                                                                                                                                                                                                         EE stated after decontamination, left eye continued to burn
## 3547                                                                                                                                          EE stated after firing revolver she felt a slight irritation in lt eye subsequently her eyelid has become swollen & tender
## 3548                                                                                                                                                                                     EE stated bar poped out of carrier and hit EE in face across and below left eye
## 3549                                                                                                                                                                            EE stated bending over to get syringe, stood up & hit her head on the box that hold keys
## 3550                                                                                                                            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
## 3551                                                                                                                                                                                              EE stated blood vessel ruptured in eye due to straining to repair pipe
## 3552                                                                                                                                                              EE stated changing and checking equipment and locks and eye started itching and touched or rubbed eye.
## 3553                                                                                                                                                                                              EE stated during pepper spray training, she was sprayed in eyes by it.
## 3554                                                                                                                              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 ()
## 3555                                                                                                               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
## 3556                                                                                                                                        EE stated he escorted an inmate in the unit 3's sergeant office and was questioning-- he struck him in the face and head. ()
## 3557                                                                                                                    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).
## 3558                                                                                                                        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.
## 3559                                                                                                               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
## 3560                                                                                                             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. ..
## 3561                                                                                                                                                                                 EE stated he was assisting officer being attack by an I/m and got hit in the mouth.
## 3562                                                                                                                                   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
## 3563                                                                                                                                                    EE stated he was attempting to handcuff inmate when inmate began to swing his fist striking him above his lt eye
## 3564                                                                                                                          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.
## 3565                                                                                                                 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.
## 3566                                                                                                                                                         EE stated he was attending oc pepper spray training I took a blast of pepper spray directly into lt eyeball
## 3567                                                                                                                                                   EE stated he was checking the fence in the ball- field. He pulled on the fence and a wasp came out and stung him.
## 3568                                                                                                                                                                  EE stated he was cuffing an inmate and he became aggressive striking him on the head and shoulder.
## 3569                                                                                                                                                               EE stated he was feeding chow & an inmate hit him with a plastic tray in the face, it cut his lt eye.
## 3570                                                                                                                                                                                  EE stated he was grinding metal on outside of gate when the wind blew metal in eye
## 3571                                                                                                                                                         EE stated he was on a stakeout and ran into a limbgetting piece of wood in left eye. Scratch to lefteyeball
## 3572                                                                                                                                                                 EE stated he was performing maintenance on the airhandles stood upright & struck head on metal beam
## 3573                                                                                                                  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'.
## 3574                                                                                                                     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
## 3575                                                                                                                                                                       EE stated he was reapiring radiator guard for segretation when metal flew in EE eye. Left eye
## 3576                                                                                                                                              EE stated he was riding in state vehicle ice came off the vehicle in front and struck windshield causing it to shatter
## 3577                                                                                                                        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
## 3578                                                                                                             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.... ..
## 3579                                                                                                                                                                                                        EE stated he was struck twice on the head/neck with a pencil
## 3580                                                                                                                                                                     EE stated he was traveling down hwy 24 w/window down & a foreign object struck him in lt temple
## 3581                                                                                                                        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
## 3582                                                                                                                                                                                     EE stated he was using an electric welder the light from the welder burned eyes
## 3583                                                                                                                                                 EE stated he was working on unit 1, the recreation yard, when inmate reached out and cut him in the face & head. ()
## 3584                                                                                                                                                             EE stated his foot got caught in the strip on floor causing EE to fall striking his head on the mailbox
## 3585                                                                                                                                                                           EE stated his right eye became red and swollen after going through pepper spray training.
## 3586                                                                                                                                                                     EE stated injury occured during pepper mace training, when pepper mace was sprayed in her face.
## 3587                                                                                                                                                                EE stated inmate attacked him from behind and hit him 3 times while trying to cuff another inmate ()
## 3588                                                                                                                                              EE stated inmate refused to go to his cell after being ordered several times inmate head butted employee over left eye
## 3589                                                                                                                                                                  EE stated inmate was empting dust pan by striking it on edge of trash can. Dust & dirt got in eyes
## 3590                                                                                                                          EE stated maintanence personnnel was working on the air conditioner in tower #2 the compressor erupted violently spraying freon into tower
## 3591                                                                                                                                                                            EE stated on my knees searching shelf under bunk and hit my head on table when rising ()
## 3592                                                                                                                                                         EE stated opening the back door of the trailer, door went up and lock came down and hit EE in the left eye.
## 3593                                                                                                                                                                   EE stated patient became agitated that required containing for safety-patient butted EE in rt eye
## 3594                                                                                                                                                                                                   EE stated patient was agitated. Patient hit staff in the head. ()
## 3595                                                                                                                                                                                            EE stated piece of brick fell into eye when he was scraping ivy off wall
## 3596                                                                                                                   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
## 3597                                                                                                                                                           EE stated she was assisting to restrain an inmate when the inmate struck her in the lt jaw and top of lip
## 3598                                                                                                                                                                                             EE stated she was attempting to assist in arrest and was hit in the eye
## 3599                                                                                                                   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
## 3600                                                                                                                                                                          EE stated she was dorm-headache, eye started to swell, and large lump on head appeared. ()
## 3601                                                                                                                                                           EE stated she was escorting inmate to single cell and she spit at someone and some came back into EE face
## 3602                                                                                                              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
## 3603                                                                                                                   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
## 3604                                                                                                                                                            EE stated she was in the chart room, opened the door to go back out & patient clocked her in the eye. ()
## 3605                                                                                                                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
## 3606                                                                                                                           EE stated she was trying to intervine a behavioral issue with individual and another staff and individual struck her in the right eye. ()
## 3607                                                                                                                                                         EE stated that after pepper srpay training, EE went home & her left eye swelled shut. Chemical conjutivitis
## 3608                                                                                                                                                                    EE stated that after removing restraints from inmate, the inmate began hitting EE with his fist.
## 3609                                                                                                               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
## 3610                                                                                                                            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
## 3611                                                                                                                                                                          EE stated that during a use of force with inmate, inmate head butted her in the right eye.
## 3612                                                                                                                          EE stated that during mandatory o. C. Pepper spray training-the instructor sprayed the spray into her eyes which caused a bodily reaction.
## 3613                                                                                                                                    EE stated that foreign object blew in the window while he was transporting physician orders on the patient's medication profile.
## 3614                                                                                                                   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.
## 3615                                                                                                                                                     EE stated that he had a fragment of metal on finger and when he scratched his eye, the fragment got in his eye.
## 3616                                                                                                                                                              EE stated that he hit the top of his head on a light switch while standing up, he was pulling trash ()
## 3617                                                                                                           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
## 3618                                                                                                                                                                                                                           EE stated that he walked into a window ()
## 3619                                                                                                                                         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
## 3620                                                                                            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. ()
## 3621                                                                                                               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
## 3622                                                                                                                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
## 3623                                                                                                                             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
## 3624                                                                                                                                                                        EE stated that he was helping staff, while walkingin stripper, his feet slipped in stripper.
## 3625                                                                                                               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
## 3626                                                                                                                       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
## 3627                                                                                                                              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.
## 3628                                                                                                              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.. ..
## 3629                                                                                                                        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.
## 3630                                                                                                               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
## 3631                                                                                                                                                  EE stated that hit head on metal bar that is around signal light on trailer while bending down to pick up a strap.
## 3632                                                                                                                    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
## 3633                                                                                                                                                                                                     EE stated that in use of force on inmate, inmate began spitting
## 3634                                                                                                                                                                                             EE stated that inmate rushed him & struck him several times on the head
## 3635                                                                                                                                                                                                                       EE stated that patient head butted him in lip
## 3636                                                                                                                                                                                      EE stated that she felt her eye itch, she began torub it & it started burning.
## 3637                                                                                                                   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
## 3638                                                                                                                 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
## 3639                                                                                                                                    EE stated that she was cleaning off the housekeeping cart and accidentally sprayed the mildew stain remover in her right eye. ()
## 3640                                                                                                                                              EE stated that she was coming into work and fell on the rug. She tripped and hit right side of her forehead on cement.
## 3641      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 (
## 3642                                                                                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. ()
## 3643                                                                                                                     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
## 3644                                                                                                                  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.
## 3645                                                                                                                                                       EE stated that she was sprayed with oc pepper spray during training, panicked & was given a shot of benadryl.
## 3646                                                                                                                                                                       EE stated that she was sweeping behind the steps when she bumped her head on the mantle piece
## 3647                                                                                                                                                     EE stated that something flew in her face as she was trying to get it out of her eye her fingernail hit eyeball
## 3648                                                                                                                                                                           EE stated that upon entering the van she hit the top of her head on the frame of the door
## 3649                                                                                                                                                                          EE stated that upon entering the van she hit the top of her head on the frame of the door.
## 3650                                                                                                                                                                                                          EE stated that use of earplugs caused compacted wax in ear
## 3651                                                                                                                                                                     EE stated that while attending training lesson he fell out and hit side of door at line up room
## 3652                                                                                                                                                                                           EE stated that while buring old files some tyoe of deris flew into lt eye
## 3653                                                                                                                                  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.
## 3654                                                                                                                                                                EE stated that while controlling hostile inmate onblue unit, inmate punched staff in the facial area
## 3655                                                                                                                    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.
## 3656                                                                                                                                                       EE stated that while handcuffing an inmate that had been involved in a fight, he got body fluid on his hands.
## 3657                                                                                                                  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
## 3658                                                                                                                 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.
## 3659                                                                                                                  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.
## 3660                                                                                                                                                     EE stated that while responding to code 2 running down main hallway fell down hit head on floor & scraping knee
## 3661                                                                                                                       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
## 3662                                                                                                                                                                     EE stated that while working on tower #2 was stung by a wasp on lt side of his heaf by his ear.
## 3663                                                                                                                                                                                                EE stated use of force, confrontation w/inmate inmate scratched face
## 3664                                                                                                                     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
## 3665                                                                                                                                                                                                 EE stated while attempting to subdue inmate inmate swung and hit EE
## 3666                                                                                                                                                             EE stated while conducting a patrol in the woods at camp buttner a tree branch struck him in the rt eye
## 3667                                                                                                                                                                                                   EE stated while emptying urinal, urine splashed in her right eye.
## 3668                                                                                                                        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
## 3669                                                                                                                                    EE stated while he was escorting inmate back to cell, inmate spit on his left side of face (head, neck, eye). Poss bbp exposure.
## 3670                                                                                                                                                    EE stated while in a state vehicle two officers taking them to their post something blow of of vent into his eye
## 3671                                                                                                                                                              EE stated while in traiing instructor went to show technique the baton came open hitting EE in chin ()
## 3672                                                                                                                                                                                                     EE stated while on yard duty a gust of wind blew object in eyes
## 3673                                                                                                                                                      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.
## 3674                                                                                                                                           EE stated while patroling dormitory upstairs of west wing he closed the snap on the mace holster and the can was leaking.
## 3675                                                                                                                                       EE stated while searching unmat, inmate pushed EE out of the way and fled. Inmate struck EE in the left temple with his fist.
## 3676                                                                                                                                                                                          EE stated while securing units yard wind blew a foreign object into rt eye
## 3677                                                                                                                                                  EE stated while sitting in the chair it flipped and she fell on the floor hitting her head and body on the floor .
## 3678                                                                                                                     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.
## 3679                                                                                                                                                                                                 EE stated while working on post #6 that she was stung bu an insect.
## 3680                                                                                                                                                                            EE stated, he was blowing his nose & felt light- headed & passed out, hitting the floor.
## 3681                                                                                                               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
## 3682                                                                                                                                      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
## 3683                                                                                                                                                                                                                               EE states a bee stung him in the face
## 3684                                                                                                                                                                                                                          EE states a bee stung him on the upper lip
## 3685                                                                                                                                                                                                                           EE states a box fell and struck his head.
## 3686                                                                                                                                                                                                 EE states a broom slipped from door frame strikinghim in the rt eye
## 3687                                                                                                                                                                                                                                EE states a bug flew into his lt eye
## 3688                                                                                                                                                                                                 EE states a bug or piece of wood flew up & hit himin the right eye.
## 3689                                                                                                                                                           EE states a chair slipped from under him causing him to fall receiving a small laceration above hislt eye
## 3690                                                                                                                                                                                    EE states a chemical fell to the floor and splashed in EE's eye and on EE's arm.
## 3691                                                                                                                                                     EE states a client attacked another client and during restraint client hit staff in the arch of nose with fist.
## 3692                                                                                                                                                                                              EE states a door which was stuck dropped loose striking EE in the head
## 3693                                                                                                                                                                                                          EE states a florescent light fell striking him on the head
## 3694                                                                                                                                                                                                    EE states a inmate charged from his room, strickinee in his face
## 3695                                                                                                                                                                                                          EE states a light fixture fell and struck her on the head.
## 3696                                                                                                                                                                                                       EE states a light fixture panel fell striking him on the head
## 3697                                                                                                                                                                                                                       EE states a limb tree stuck him in the lt eye
## 3698                                                                                                                                                                                                    EE states a loud noise or bang has caused ringing to his rt ear.
## 3699                                                                                                                     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
## 3700                                                                                                                                                                                                             EE states a piece of burning ember went into his lt eye
## 3701                                                                                                                                                                                                          EE states a piece of concrete hit tooth --- chipped tooth.
## 3702                                                                                                                                      EE states a piece of debris flew into eye while driving down road, flushed eye several times and could not get the debris out.
## 3703                                                                                                                                                                                                                      EE states a piece of dust entered into rt eye.
## 3704                                                                                                                                                                                      EE states a piece of wood fell and struck him on the head causing a laceration
## 3705                                                                                                                                                                                               EE states a pt sprayed room deodorant in face causing eye irritation.
## 3706                                                                                                                                                                                                           EE states a pt struck him on the head with a garbage lid.
## 3707                                                                                                                                                                   EE states a resident hit him very hard in the lt temple area. EE was beginning basic care-routine
## 3708                                                                                                                                                                                              EE states a rock was thrown from passing vehicle &hit him on the head.
## 3709                                                                                                                                                                                                                       EE states a sallyport door closed on her head
## 3710                                                                                                                                                                                                             EE states a she accidentally struck her head on a door.
## 3711                                                                                                                                                                     EE states a student was cleaning a wood planer w/adust hose and the wood dust blew into EE eye.
## 3712                                                                                                                                                                                           EE states a tray hit her in the head-unknown EE chose not to go to clinic
## 3713                                                                                                                                                                                         EE states a tree branch struck him in the lt eye during a dog handler drill
## 3714                                                                                                                                                                                                                            EE states a tree limb hit him in the eye
## 3715                                                                                                                                                                EE states after being in the building 1st hour of day she started to have headaches, blurred vision.
## 3716                                                                                                                                                                           EE states after cleaning countertops with cleaningsolution he accidently wiped his rt eye
## 3717                                                                                                                                      EE states after fire on 6th floor was over he began to write his statement & his nose was irritable. Soot came out when blown.
## 3718                                                                                                                                                                   EE states after firing during fire arm training she noticed ringing and echo sounds in her lt ear
## 3719                                                                                                                                                                                     EE states after taking off a glove the residue from the glove got into his eye.
## 3720                                                                                                                                                                                     EE states after wiping feet on floor mat slipped and fell hitting head on floor
## 3721                                                                                                                                                                                 EE states an explosion from a water pump caused a bright uv light to burn both eyes
## 3722                                                                                                                                                                                                              EE states an inmate blew cleanser powder in both eyes.
## 3723                                                                                                                                                                                                EE states an inmate came out of his cell and struck him in the mouth
## 3724                                                                                                                                                                                                            EE states an inmate head butted him while being escorted
## 3725                                                                                                                                                                    EE states an inmate placed a bottle of clorox on his desk---the clorox splashed into his lt eye.
## 3726                                                                                                                                                                     EE states an inmate sprayed some unknown liquid substance from a bottle into his face and eyes.
## 3727                                                                                                                                                                                                           EE states an inmate struck him in the eye with handcuffs.
## 3728                                                                                                                                                                                                               EE states an inmate struck him in the face with a cup
## 3729                                                                                                                                                                                                        EE states an inmate struck him in the face with a flashlight
## 3730                                                                                                                                                                                                                EE states an inmate struck him in the head with fist
## 3731                                                                                                                                                                                                                   EE states an inmate threw some bleach in her face
## 3732                                                                                                                                                                                                                   EE states an inmate threw some liquid in his face
## 3733                                                                                                                                                                                                                  EE states an inmate threw toilet water in his face
## 3734                                                                                                                                                                  EE states an inmate was driking some water and while talking some of the water went into EE rt eye
## 3735                                                                                                                                                                   EE states an inmate was drilling a hole in the ceiling when some of the dust went into his lt eye
## 3736                                                                                                                                                                                                         EE states an inmated walked passed her and spit in her face
## 3737                                                                                                                                                                                        EE states an insect flew into his lt eye when he proceeded to secure a gate.
## 3738                                                                                                                 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
## 3739                                                                                                                                                            EE states as he opened the door to th outside gym a bee flew out and stung him on the left side of face.
## 3740                                                                                                                                                                           EE states as she turned to go do something she struck her upper right eye area on a pole.
## 3741                                                                                                                                                         EE states as she was cleaning a pt came from behind her and started striking her on the head and shoulders.
## 3742                                                                                                                                                                            EE states as she was entering the sallyport door the door closed striking top of EE head
## 3743                                                                                                                 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
## 3744                                                                                                                                   EE states as she was supervising inmates picking up trash along I-540 east, a large truck passed blowing debris into EE left eye.
## 3745                                                                                                                                                                                               EE states assisting in overhead, kicked on left side of face by child
## 3746                                                                                                                  EE states attempting to apply deodorant to client when the client swung left hand and struck EE across the mouth causing soreness and bleeding. ()
## 3747                                                                                                                                                                     EE states bent down to pick a report that fell on the floor and hit his l eye on cornor of desk
## 3748                                                                                                                                        EE states blister like areas broke out upper lip, spread to lower lip. Supervisor wants her to check it due to MRSA exposure
## 3749                                                                                                                              EE states client attempting to run out bldg., she went after him. Client turned around and hit EE inface with his hand. Head contusion
## 3750                                                                                                                                                                                                             EE states client headbutted EE striking her in thenose.
## 3751                                                                                                                            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.
## 3752                                                                                                                                                                                                                                  EE states client spit in EE's eye.
## 3753                                                                                                                                                            EE states client struck her in the face. Client had been placed in proper hold after becoming agressive.
## 3754                                                                                                                                                                             EE states client was walking down hallway struck EE on the rt side of face and shoulder
## 3755                                                                                                                                                                               EE states client's leg bag came loose & urine splashed onto EE's face, eyes and hair.
## 3756                                                                                                                       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.
## 3757                                                                                                                    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
## 3758                                                                                                                          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
## 3759                                                                                                                                                                             EE states constant ringing of telephone gives severe headaches, and ringing in the ear.
## 3760                                                                                                                                                                                                               EE states corner of piece of paper stuck in right eye
## 3761                                                                                                                                                                                                  EE states dipping cages in vercon and chemicals splashed into eyes
## 3762                                                                                                                                                                                      EE states doing cell extraction training he was struck in the eye and forehead
## 3763                                                                                                                                                                                                              EE states due to striking her head on desk she fainted
## 3764                                                                                                                                                               EE states during a baton training course she lost her balance and fell striking her head on the floor
## 3765                                                                                                                                                                                               EE states during a cell search he was struck in the face by an inmate
## 3766                                                                                                                                                                                                        EE states during a fire drill he struck the back of his head
## 3767                                                                                                                                                                                         EE states during a timber exam a tree limb swung striking EE in the lt eye.
## 3768                                                                                                                                                                                               EE states during a use of force he got some pepperspray in both eyes.
## 3769                                                                                                                                                                                         EE states during a use of force he was kicked by a staff member in the face
## 3770                                                                                                                                                                          EE states during a use of force on an inmate he was sprayed with pepper spray in both eyes
## 3771                                                                                                                                               EE states during a use of force on an inmate the inmate pushed him into some steel bars causing a cut to his forehead
## 3772                                                                                                                                                                                      EE states during a use of force on an inmate the inmate struck EE in the face.
## 3773                                                                                                                                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
## 3774                                                                                                                                                                                           EE states during an altercation with an inmate he was struck on the nose.
## 3775                                                                                                                                                                                             EE states during baton training he was struck in the mouth with a baton
## 3776                                                                                                                                                                                   EE states during firearm training course he noticea cracking sounds in his lt ear
## 3777                                                                                                                                                                                          EE states during pepper spray training he was sprayed directly in the eyes
## 3778                                                                                                                                                                                                  EE states during pepper spray training he was sprayed in the face.
## 3779                                                                                                                                                                                    EE states during pepper spray training she was exposed to pepper spray in lt eye
## 3780                                                                                                                                                             EE states during pepper spray training some of the pepper spray got into both eyes causing inflammation
## 3781                                                                                                                                                                                   EE states during round checks something blew from the ceiling fan into her lt eye
## 3782                                                                                                                                                                                                       EE states during sercuity check something got intohis lt eye.
## 3783                                                                                                                                   EE states during training exercise, crowd managemenpracticing striking dummy w/baton. Lost grip & baton struck top r side of head
## 3784                                                                                                                                                                                                         EE states during training he struck his head against a wall
## 3785                                                                                                                                                                          EE states during training he was administered pepper spray which has caused blurred vision
## 3786                                                                                                                                         EE states during training he was sprayed with pepper spray causing headaches ***EE was transported by ambulance to hosp****
## 3787                                                                                                                                                                                                         EE states during training he was sprayed with pepper spray.
## 3788                                                                                                                             EE states during weapon firing EE experienced temporary loss of hearing in his right ear. He wasusing bearing protection during firing.
## 3789                                                                                                                                                                                                         EE states during yard patrol something flew into her rt eye
## 3790                                                                                                                                                                                                                      EE states edema of upper left lid/eye swelling
## 3791                                                                                                                                                                                                               EE states eruptions of bumps on skin below lower lips
## 3792                                                                                                                                                                                                  EE states escorting an inmate inmate spit in officer's face & eyes
## 3793                                                                                                                                                            EE states eyes started itching 8/5/96 after she arrived home, eye itching, swollen almost closed and red
## 3794                                                                                                                                                                           EE states feeding chow dropped trap door to give inmate tray inmate punched me in the jaw
## 3795                                                                                                                                                                                                                                 EE states foreign object in rt eye.
## 3796                                                                                                                                                                                                  EE states fumes from cleaning fluid (pine oil) caused eyes to itch
## 3797                                                                                                                                                                                                      EE states fumes from mildew remover came in contact with eyes.
## 3798                                                                                                                                                                                           EE states getting back in chair, hit right side ofhead by the timle area.
## 3799                                                                                                                                                                       EE states going to ward 238 to assist with body alarm. He was injured during the altercation.
## 3800                                                                                                                                                                                            EE states got som contact cleaner in eye either mist in air or on finger
## 3801                                                                                                                                                                                                                                   EE states grass blew in right eye
## 3802                                                                                                                                                                                  EE states handling a broom she was scratched on the lt side of check and neck area
## 3803                                                                                                                                                                                                                  EE states he began to feel sick when he passed out
## 3804                                                                                                                                                                                 EE states he bent over to pick up some trash and struck his head on the control box
## 3805                                                                                                                                                                                                         EE states he bit into a hamburger and broke one ofhis tooth
## 3806                                                                                                                                                                                                                         EE states he bumped his head on a van door.
## 3807                                                                                                                          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
## 3808                                                                                                                                                                                                EE states he developed an ear infection during an underwater session
## 3809                                                                                                                                                                                         EE states he dropped a jug of bleach when it got into his both of his eyes.
## 3810                                                                                                                                                                                                           EE states he fell off trailor striking his head and nose.
## 3811                                                                                                                                                                                                 EE states he got something in eye doing cleaning up in boiler room.
## 3812                                                                                                                         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 ?
## 3813                                                                                                                                                                                                       EE states he had something blow off bath blanket into his eye
## 3814                                                                                                                                                       EE states he has been feeling dizzy and having headaches due to exposurer to construction dust innew building
## 3815                                                                                                              EE states he has had repeated exposure to open MRSA positive legions. EE also states this has required 2 sinus operations. Persistant sinus infection.
## 3816                                                                                                                                            EE states he hit his head on the metal bars of the exercise area in segregation while trying to secure combative inmate.
## 3817                                                                                                                                                                                                 EE states he injured the top of his head-- foot slipped on stairway
## 3818                                                                                                                                                  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
## 3819                                                                                                                                                                                     EE states he lost his balance and fell backward striking his head on a bookcase
## 3820                                                                                                                                                                      EE states he opend door on locker of road squad bus & door fell open striking him in forehead.
## 3821                                                                                                                                                                                                          EE states he passed out in the bathroom striking his head.
## 3822                                                                                                                                                                                                        EE states he picked up a piece of metal and rubbedhis rt eye
## 3823                                                                                                                                                                        EE states he placed hand restraints on disruptive inmate when inmate kicked EE in the mouth.
## 3824                                                                                                                                                               EE states he reached down to pick up an item he has dropped when his rt eye struck the dresser drawer
## 3825                                                                                                                       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.
## 3826                                                                                                                                                                               EE states he slipped and fell on a research vesselboard striking his head on a ladder
## 3827                                                                                                                                                                                           EE states he slipped and fell on ice causing injury to his head/neck area
## 3828                                                                                                                                                         EE states he slipped and fell on some mud strikinghis head against ground causing injury to his front tooth
## 3829                                                                                                                                                                                                                         EE states he slipped on the ice on sidewalk
## 3830                                                                                                                                                                                       EE states he stepped up into van and hit his head on top of the door opening.
## 3831                                                                                                                                                                                            EE states he struck a wall when some paint chip and went into his rt eye
## 3832                                                                                                                                                                                                                  EE states he struck his head on a metal cell door.
## 3833                                                                                                                                                                                             EE states he struck his head on a metal shelf causing a scalp lacertion
## 3834                                                                                                                                                                                                           EE states he struck his head on the bottom of the stairs.
## 3835                                                                                                                                                                     EE states he struck his head on the bunk while removing personal property from inmate's locker.
## 3836                                                                                                                                                                                                       EE states he struck his head on the corner of a window frame.
## 3837                                                                                                                                                                 EE states he thinks he got pink eye from inmate, he noticed irritation 4-5 days ago and went to er.
## 3838                                                                                                                                                                                     EE states he tripped and fell face down on step striking face against the floor
## 3839                                                                                                                                      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.
## 3840                                                                                                                                                                                                  EE states he turned on the fan when something blew into his lt eye
## 3841                                                                                                                                            EE states he walked into a machinery shop where someone was grinding metal when a piece of the metal flew into EE rt eye
## 3842                                                                                                                                                        EE states he walked into two metal pipes that wereon the back of a truck striking him on the rt sideof face.
## 3843                                                                                                                                                                                 EE states he was assaulted by an inmate with a flashlight--striking him in the face
## 3844                                                                                                                                                                                                                                  EE states he was attacked by a pt.
## 3845                                                                                                                                                                                                                              EE states he was attacked by an inmate
## 3846                                                                                                                                                                                             EE states he was bitten by an insect while supervising recreation unit.
## 3847                                                                                                                                           EE states he was crossing the street from thomas hall when he tripped on the curbing & fell face first into the pavement.
## 3848                                                                                                                                                                      EE states he was cutting a fire line in a laurel thicket when stick went into his left nostril
## 3849                                                                                                                                                                                  EE states he was cutting grass on corr. Unit - west yard-got something in left eye
## 3850                                                                                                                                      EE states he was driving patrol car applied brakes vehicle propelled hitting concrete barrier, striking forehead & rt ankle ()
## 3851                                                                                                                                               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.
## 3852                                                                                                                                                                                                         EE states he was dusting high window seals in the stairwell
## 3853                                                                                                                                                                                                     EE states he was exposed to pinkeye while supervising trainees.
## 3854                                                                                                                            EE states he was faxing papers & papers fell behind printer & when he went to pick up papers, his head bumped cabinet mounted on wall ()
## 3855                                                                                                                                                                                               EE states he was feeding patients and felt something go into his eye.
## 3856                                                                                                                                        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
## 3857                                                                                                                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.
## 3858                                                                                                                                                                         EE states he was hit in the mouth while trying to control an inmate EE 25% left ring finger
## 3859                                                                                                              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
## 3860                                                                                                                                                              EE states he was in contact with a pt who has a rash which has caused swelling and itching of the eye.
## 3861                                                                                                                 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.
## 3862                                                                                                                                                                                    EE states he was leaning out of the bathroom when the hot water heater exploded.
## 3863                                                                                                                                                                                                            EE states he was lightning a gas grill when it exploded.
## 3864                                                                                                                                      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.
## 3865                                                                                                                                                                                      EE states he was opening cabinet he was struck by a piece of plastic in lt eye
## 3866                                                                                                                           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.
## 3867                                                                                                                                                                           EE states he was picking up trash when a inmate threw what is thought to be urine on him.
## 3868                                                                                                       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. ()
## 3869                                                                                                                      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
## 3870                                                                                                                                           EE states he was putting something under the patient to lift off mat. Patient uncrossed his legs and struck EE in lft eye
## 3871                                                                                                                                                                                   EE states he was replacing pipe on fire pump when he got something in his lt eye.
## 3872                                                                                                                                EE states he was sitting at control and another officer was spraying bleach to clean desk and bleach splashed off desk into his eye.
## 3873                                                                                                                 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
## 3874                                                                                                                         EE states he was sprayed into my face and eyes with oc pepper spray (training). Spray and particles got into eyes causing pain & irritation
## 3875                                                                                                                                                                         EE states he was stacking cooler lids when a lid fell and struck EE on the top of the head.
## 3876                                                                                                                                                                                                     EE states he was standing at a cell door and inmate spit on him
## 3877                                                                                                                      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.
## 3878                                                                                                                                                                                                EE states he was struck by a flying object while assisting a trainee
## 3879                                                                                                                                                                                                                    EE states he was struck by a pt on the rt cheek.
## 3880                                                                                                                                                                                                                    EE states he was struck by an aggressive patient
## 3881                                                                                                                                                                                                        EE states he was struck by an inmate on the back of the head
## 3882                                                                                                                                                                                                       EE states he was struck by an inmate on the rt cheek and head
## 3883                                                                                                                                                                                                               EE states he was struck by inmate on the side of face
## 3884                                                                                                                                                                            EE states he was struck in the face by an inmate and also got pepper spray in both eyes.
## 3885                                                                                                                                                                 EE states he was struck in the face by an inmate on the rt side of face. EE eye glasses was broken.
## 3886                                                                                                                                                                                                                   EE states he was struck in the face by an inmate.
## 3887                                                                                                                                                                                                                   EE states he was struck in the head by a student.
## 3888                                                                                                                                                                                                                   EE states he was struck in the head by an inmate.
## 3889                                                                                                                                                           EE states he was struck in the mouth by an inmate. He also received minor scrapes to his lt and rt wrist.
## 3890                                                                                                                                                                                                                         EE states he was struck in the mouth by pt.
## 3891                                                                                                                                                                                                                   EE states he was struck in the nose by a patient.
## 3892                                                                                                                                                                                                                  EE states he was struck in the rt eye by an inmate
## 3893                                                                                                                                                                                                                    EE states he was struck on the head by an inmate
## 3894                                                                                                                                                                                                        EE states he was struck on the lt side of face by a patient.
## 3895                                                                                                                                                                                                                       EE states he was stung by a bee on the rt eye
## 3896                                                                                                                                                                                                                   EE states he was stung by a wasp on the lt cheek.
## 3897                                                                                                                                                                                                                      EE states he was stung by an insect on the lip
## 3898                                                                                                                                              EE states he was supervisin bathroom breaks for the inmates and am inmate struck EE in the mouth with his closed fist.
## 3899                                                                                                                                                              EE states he was supervising an inmate with a weedeater some of the debris struck him under his lt eye
## 3900                                                                                                                    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.
## 3901                                                                                                                                                                                                EE states he was supervising unit 8 when he was assaulted by inmate.
## 3902                                                                                                                                                                                      EE states he was sweeping the floor with push broom and tripped over chair leg
## 3903                                                                                                                                                                    EE states he was training how to open gate, stood up and hit the razor wire with top of his head
## 3904                                                                                                                                                                                   EE states he was trying to arrest an offender. Offender resisted and assulted EE.
## 3905                                                                                                                   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
## 3906                                                                                                                   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.
## 3907                                                                                                                                                             EE states he was walking and hit head on ventilation shroud projecting 4-6 inches from side of building
## 3908                                                                                                                                                                          EE states he was walking assisting inmates pickingup liter when a bug flew into his rt eye
## 3909                                                                                                                                                              EE states he was walking through mech rm and was hit by air draft causing dust particles to go in eyes
## 3910                                                                                                                                                                                  EE states he was walking thru the woods when a tree limb struck him in the rt eye.
## 3911                                                                                                                                                                          EE states he was walking to the dorm when he was stung by a wasp on the left side of head.
## 3912                                                                                                                                                         EE states he was walking towards operations building when a inmate ran up to him striking him in his rt eye
## 3913                                                                                                                                                                              EE states he was working during tower duty when he was stung by a bee under the rt eye
## 3914                                                                                                                         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
## 3915                                                                                                                            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,
## 3916                                                                                                                                                                 EE states her lt eye started hurting--she went to the doctor and found out she had an eye infection
## 3917                                                                                                                                                                                           EE states her nose was injured by the center shaft of a rotating tool bin
## 3918                                                                                                                                                                                                                  EE states her rt eye has become severely irritated
## 3919                                                                                                                                                                                                   EE states her was drive lifting out of bldg when head hit bean ()
## 3920                                                                                                                                                                                                                EE states his eye was irritated from oc pepper spray
## 3921                                                                                                                                                       EE states his rt foot slipped on some steps which was wet from rain causing him to fall injuring hishead/hand
## 3922                                                                                                                                                                                                        EE states hit in eye with an elbow while playing basketball.
## 3923                                                                                                        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. ()
## 3924                                                                                                                                 EE states inmate hit her. EE was taking inmates pulse after setting fire to cell & trying to hang self. Right temple red & swollen.
## 3925                                                                                                                                                                                                                 EE states inmate threw liquid substance on her face
## 3926                                                                                                                                                                                  EE states inspecting the removal of a freezer doorwhen something flew in left eye.
## 3927                                                                                                                                                                                         EE states kicked in the eye by a patient during process of therapeutic hold
## 3928                                                                                                                                                      EE states l eye feels like something is over it, complaint that eye was stuck together when she got up this am
## 3929                                                                                                                                                                                                                                       EE states left hand injury ()
## 3930                                                                                                                                                                               EE states lt ear irritated and itching and thinks it's a fungus from the stethoscope.
## 3931                                                                                                                                              EE states lt eye became very irritated went to employee health then to eye Dr. Small metal like material found on eye.
## 3932                                                                                                                                                                                                                                       EE states lt eye was swollen.
## 3933                                                                                                                                                EE states medication splashed in her eye while shewas drawing liquid up into syringe. Foreign substance in right eye
## 3934                                                                                                                                                                                                   EE states noise in coal handling bldg made him loose his hearing.
## 3935                                                                                                                                                                                    EE states nose fracture due to softball injury while playing for the co-ed team.
## 3936                                                                                                                                                                                                       EE states open cart and bar popped out and hit EE in the eye.
## 3937                                                                                                                                                                  EE states opening a autocave to get trash out, thehot liquid boiled over and sprayed out when open
## 3938                                                                                                                                              EE states patient attacked staff in the face; nurses glasses are scrtached in process. EE was struck is hit lt temple.
## 3939                                                                                                                                                     EE states patient came running out of bedroom attacking staff swinging both arms and hitting staff in the face.
## 3940                                                                                                                         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.
## 3941                                                                                                                                          EE states patient got upset in class, offered to lead him back to ward. Patient is blind. Patient attcked me for no reason
## 3942                                                                                                                                                                                                             EE states patient hedabutted EE on the lt side of head.
## 3943                                                                                                                                              EE states patient hit EE in head w/ chair causing * laceration to scalp * clmt stated she does not need any add'l trmt
## 3944                                                                                                                                                                                                                              EE states patient hit him on the head.
## 3945                                                                                                                                                                  EE states patient hit staff in rt cheek while restraining the patient to be put in the quiet room.
## 3946                                                                                                                                           EE states patient kicked me in the side of my temple when myself and other staff was changing him from one bed to another
## 3947                                                                                                                                                            EE states patient reached up and grabed EE glasse s from her face leaving an open scratch in e forehead.
## 3948                                                                                                                                                          EE states patient struck EE on left side of face with fist *clmt was overpd ttd 8-13 x 8-31 for $820. 50**
## 3949                                                                                                                                                                                                                           EE states patient struck him in the face.
## 3950                                                                                                                                                                                                                              EE states patient stuck EE in the eye.
## 3951                                                                                                                                                                                                 EE states patient swung at staff person then hit hit EE in the eye.
## 3952                                                                                                                                       EE states patient threw a chair & attatcked EE during redirection to return to his room. Also tripped EE & she fell to floor.
## 3953                                                                                                                                                              EE states patient used both hands to pull her hairon the lt side of her head and would not turn loose.
## 3954                                                                                                                                                  EE states patient walked out of peers room and lunged at EE and said she was going to punch EE inthe face and did.
## 3955                                                                                                                                                                            EE states patient walked up to her and started hitting her on the left side of her head.
## 3956                                                                                                                                                                                                 EE states patient was being restrained and head butted in the nose.
## 3957                                                                                                              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
## 3958                                                                                                                                                                                           EE states pepper spray has caused her face to become numb on the rt side.
## 3959                                                                                                                                                                                         EE states picking box up and when EE went to stand up hit head on shelf. ()
## 3960                                                                                                                                  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
## 3961                                                                                                                                                                    EE states pt attacked her by hitting her in the head. EE glasses were broken during this attack.
## 3962                                                                                                                 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.
## 3963                                                                                                                                             EE states pt was being redirected from threatrningother patients. Pt then took a swing at EE and hit EE ing the rt eye.
## 3964                                                                                                                                                                                                      EE states putting patient in s&r, she kicked writer on lt jaw.
## 3965                                                                                                                                                                                          EE states reading s. O. P. He rubbed rt eye started hurting and tuned red.
## 3966                                                                                                                                                                                                             EE states requires to swim with patients(swimmer'sear).
## 3967                                                                                                                                                                             EE states resident coughed while feeding sending food & saliva into face & lt eye of EE
## 3968                                                                                                                                                                                                             EE states resident punched him on right side of face ()
## 3969                                                                                                   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 ()
## 3970                                                                                                                                                           EE states resident was leaning and EE tried to sit resident up straight and resident poked EE in the eye.
## 3971                                                                                                                    EE states resident was upset, when released from chair restraint, resident slapped eye glasses off her face causing bruise & swelling of lt eye.
## 3972                                                                                                                                                                                                      EE states responded to body alarm and hit lip on door of ward.
## 3973                                                                                                                                                                                                           EE states rt ear hurts and is swollen from using earphone
## 3974                                                                                                                                                                        EE states sandal got caught under mat, she tripped fell and struck back of head on bookshelf
## 3975                                                                                                                                                                                          EE states seat belt of a state owned car hit him iin the mouth on a tooth.
## 3976                                                                                                                                                                                                             EE states she accidently struck lt eye with an envelope
## 3977                                                                                        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 ()
## 3978                                                                                                                                          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
## 3979                                                                                                                                                    EE states she bent over to pick up something from floor when she struck her head on a hanging water hose nozzle.
## 3980                                                                                                                                                           EE states she bumped a broom handle that was hanging from a shelf causing a mop to strike her on the head
## 3981                                                                                                                                                                      EE states she bumped her head on the corner of thecell while passing money receipts to inmates
## 3982                                                                                                                                                       EE states she contracted-impetigo an airborne bacterial infection on her face/nose from workplacenvironments.
## 3983                                                                                                                                                                            EE states she developed laryngitis after talking for a long length of time for a lecture
## 3984                                                                                                                                           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.
## 3985                                                           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 ()
## 3986                                                                                                                                                                                                                   EE states she fell while walking down some steps.
## 3987                                                                                                                                                                                                                           EE states she got some trash into rt eye.
## 3988                                                                                                                                 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.
## 3989                                                                                                                                                                                                          EE states she has obtained serious sinus and chestattacks.
## 3990                                                                                                                                                                      EE states she hit her forehead on top cabinet in the break area while washing a coffee mug. ()
## 3991                                                                                                                                 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.
## 3992                                                                                                                                                            EE states she remove the latex glove from her rt hand and rubbed her rt eye when her eye started to burn
## 3993                                                                                                                                                                                                         EE states she slipped and fell on ice causing a head injury
## 3994                                                                                                                                            EE states she started feeling dizzy and while exiting the door to get some air she tripped and fell on some loose gravel
## 3995                                                                                                                                                                                                                       EE states she struck her forehead on a shelf.
## 3996                                                                                                                                                                                                             EE states she struck her head against the bus doorframe
## 3997                                                                                                                                                                                                                    EE states she struck her head on a desk cabinet.
## 3998                                                                                                                                                                                              EE states she stuck her head on a door while tryinto open a trap door.
## 3999                                                                                                                  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
## 4000                                                                                                                                                       EE states she was attempting to assit patient withadl's--pt became agressive and struck cna on the lt temple.
## 4001                                                                                                                                        EE states she was called by the nurse to help flush the patients urine. While flushing the urine it splashed in her face. ()
## 4002                                                                                                                                           EE states she was closing door to cabinet & started to turn around at smae time. Corner of door hit on left side of face.
## 4003                                                                                                                                                                                     EE states she was conducting count she rasied up and hit head on cabinet corner
## 4004                                                                                                              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
## 4005                                                                                                                                                                 EE states she was doing disciplinary hearing, when inmate became aggitated and hit her in the mouth
## 4006                                                                                                                                                EE states she was entering ward to begin work as she entered the room she was punched in the rt eye by an inmate. ()
## 4007                                                                                                                           EE states she was escorting a patient to the quietroom, patient reaches across and scratched her under her nose and kicked her left ankle
## 4008                                                                                                EE states she was escorting employees from orientation when she stepped in a crack that was in the sidewalk, tripping injuring both knees, forehead over her eye. ()
## 4009                                                                                                                                                                                                                           EE states she was exposed to pepper spray
## 4010                                                                                                                                                                                                                EE states she was exposed to pink eye while at work.
## 4011                                                                                                                                                                       EE states she was getting a pump on the rack and a filter box fell down and hit her rt eye ()
## 4012                                                                                                                                                                            EE states she was hit by inmate in face for no apparent reason while giving out medicine
## 4013                                                                                                                                                                       EE states she was injured while trying to restraina student--EE was headbutted by the student
## 4014                                                                                                                                                                         EE states she was on unit floor spraying acid air freshner and the spray got in her eye. ()
## 4015                                                                                                                                                                                     EE states she was opening a firedoor and the door came back and hit EE on head.
## 4016                                                                                                                         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.
## 4017                                                                                                                     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
## 4018                                                                                                                              EE states she was preparing cleaning supplies for patients am cleaning and chemical splashed into eeeyes. She was not wearing goggles.
## 4019                                                                                                                 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 ()
## 4020                                                                                                                                               EE states she was refilling the cleaning solution bottle, and accidently sprayed the chemical solution into her r eye
## 4021                                                                                                                                                                           EE states she was removing a heplock from a patient when blood splashed in her lt eye. ..
## 4022                                                                                                                                                            EE states she was sitting down and leaned against the wall and hit her head on the corner of a metal box
## 4023                                                                                                                                                                                                   EE states she was sprayed with window washing fluid in both eyes.
## 4024                                                                                                                                          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. ()
## 4025                                                                                                                                                                                    EE states she was struck by an inmate in the stomach and on the back of the head
## 4026                                                                                                                                                                                                      EE states she was struck in the back of the head by a student.
## 4027                                                                                                                                                                                            EE states she was struck in the face by client causing glasses to break.
## 4028                                                                                                                                                                                                EE states she was struck in the face with a wire hanger by a student
## 4029                                                                                                                                                                                                EE states she was struck in the head with a rock thrown by an inmate
## 4030                                                                                                                                                                                                                  EE states she was struck in the rt eye by a client
## 4031                                                                                                                                                                                                               EE states she was struck on the head by a basketball.
## 4032                                                                                                                                                                                   EE states she was stuck in the face by an inmate injuring her face and cheek area
## 4033                                                                                                                                                                                                                    EE states she was stung by a bee under the chin.
## 4034                                                                                                                       EE states she was supervising a group of patients and was talking with a patient who was upset. Pt turned & hit EE on the lt temporal region.
## 4035                                                                                                                   EE states she was supervising an inmate changing alight bulb when one of the light fell from the ceiling and some of the debris went into her eye
## 4036                                                                                                                               EE states she was talking to patient and another patient came up to her and hit her on the side of her face and bent her finger back.
## 4037                                                                                                                                                                      EE states she was tapping a patient hep c when she removed the tube it splashed in her eye. ()
## 4038                             EE states she was using the addressograph maching and turned to bend down to the right to place form into the shred crate, EE states she hit the top front of her head on the corner of the aed machine that is attached to the wall ()
## 4039                                                                                                                                                                                   EE states she was verbally redirecting patient and patient struck EE in the head.
## 4040                                                                                                                                                      EE states she was waiting for a key from another EE when a client threw a toy clock and struck EE on the head.
## 4041                                                                                                                                                     EE states she was walking across the facility parking lot when she lost her footing on icy spot on the pavement
## 4042                                                                                                                                                                 EE states she was walking down a/block hallway while fan was on. Something flew into her right eye.
## 4043                                                                                                                                                                                      EE states she was walking in her office and the ceiling light fell on her head
## 4044                                                                                                                             EE states she was walking into the nursing station as she was opening the door and was hit on the left side of her face by the door. ()
## 4045                                                                                                                        EE states she was working at computer desk. Got upto answer knock at door, foot was tangled in keyboard cord, causing her to fall face first
## 4046                                                                                                                       EE states she was working at her desk when hvac system forcefully blew air from ceiling vent and particles/debris were blown into her eye. ()
## 4047                                                                                                                                                                                  EE states she was working directly with a patient that has a rash and EE has rash.
## 4048                                                                                                                                                                                          EE states slipped in dishroom, cut arm on metal food catcher and hit head.
## 4049                                                                                                                                                                                                           EE states some bug spray was sprayed in her face and eyes
## 4050                                                                                                                                                                                            EE states some chemical fell off shelf and splash into her eyes and face
## 4051                                                                                                                                                                                                                       EE states some chemical splashed into his eye
## 4052                                                                                                                                                                                                                        EE states some clorox splashed into her eyes
## 4053                                                                                                                                                                          EE states some cobweb got on his face and when he wiped it away his rt eye started to hurt
## 4054                                                                                                                                                                                                                           EE states some debri flew into his rt eye
## 4055                                                                                                                                                                                                                          EE states some debrid got into his rt eye.
## 4056                                                                                                                                                                                         EE states some debris got into his lt eye while working with trailer tires.
## 4057                                                                                                                                                                                   EE states some flying debris from lawn mover got in his lt eye causing irritating
## 4058                                                                                                                                                                                     EE states some oven cleaner fell off shelf sprayedinto her eyes and facial area
## 4059                                                                                                                                                                                                                    EE states some pepper spray got into his lt eye.
## 4060                                                                                                                                                                                        EE states some pine oil cleaner fell off a cart and splashed into his rt eye
## 4061                                                                                                                                                                                                                    EE states some pine sol splashed into her rt eye
## 4062                                                                                                                                                                   EE states some saw dust got into his eye while using a cutter--EE was wearing protective eye gear
## 4063                                                                                                                                                                                                        EE states some trash from washing machine got intohis lt eye
## 4064                                                                                                                                                                                                                   EE states some unknown object got into his lt eye
## 4065                                                                                                                                                                                                                    EE states some unknown object went into his eye.
## 4066                                                                                                                                                                                                                  EE states some unknown object went onto his rt eye
## 4067                                                                                                                                                                                                       EE states some water containing chemical went intohis rt eye.
## 4068                                                                                                                                     EE states something came thru air vents directly and both eyes started to burn, itch and water after they had worked on th air.
## 4069                                                                                                                                                                                                                            EE states something flew into her lt eye
## 4070                                                                                                                                                                                                                             EE states something got into his rt eye
## 4071                                                                                                                                                         EE states stepped up in van; as EE was raising her head; bumped head on entrance of van; neck bent down. ()
## 4072                                                                                                                                                                                                                        EE states stress caused by problems at work.
## 4073                                                                                                                        EE states struck right side of mouth with soil auger as she pulled it out of entangeled grass. Noproblem at time. Tooth fell out 3 wks later
## 4074                                                                                                                                                                                                                             EE states student hit him in the lt eye
## 4075                                                                                                                                                                                                                    EE states student ran up and yelled in EE's ear.
## 4076                                                                                                                                                                         EE states students was upset, walked up to EE, hit her in the rt arm, across face and eyes.
## 4077                                                                                                                                                      EE states that 2 inmates were fighting, pushed against officer and fell back against med cavinet hitting head.
## 4078                                                                                                                                                                                                  EE states that a bee stung him in his rt ear while he was mowning.
## 4079                                                                                                                                                            EE states that a hot metal piece flew out of the porthole when he was checking melt with a rod of steel.
## 4080                                                                                                                                                                                                 EE states that a particle from air conditioner went into his lt eye
## 4081                                                                                                                                                                      EE states that a potato cutter fell from the top of a shelf and hit her on the top of the head
## 4082                                                                                                                                                        EE states that a resident shoved the door open hitting the mop solution causing it to splash intohis rt. Eye
## 4083                                                                                                                                                                                       EE states that a student struck her with a milk crate on the rt side of head.
## 4084                                                                                                                                                                                                               EE states that a tree branch struck him in the rt eye
## 4085                                                                                                                              EE states that after he left his vehicle and was going toward admin. Building the wind gushed down the road blowing sand and into eyes
## 4086                                                                                                                        EE states that after opening tool door to take outthe bolt cutters she bent down to pick them up andthe hammer fell and hit her in the head.
## 4087                                                                                                                                 EE states that after she was sprayed w/the pepper spray it cont'd to irritate her and she felt like she had a film over her rt eye.
## 4088                                                                                                                                                                                        EE states that an inmate slapped her on the lt side of head with his rt hand
## 4089                                                                                                                                                                                   EE states that an inmate struck him in the mouth causing injury to his lower lip.
## 4090                                                                                                                                                       EE states that an inmate threw an unknown liquid substance in his face while he was conducting cell clean up.
## 4091                                                                                                                      EE states that an offender was aggressively appro-aching another officer, EE stepped in, struggle insured, EE was struck in face and hand pain
## 4092                                                                                                                                            EE states that as he was standing at the gas pump supervising the inmate fueling a van, a bee stung hi, in his left eye.
## 4093                                                                                                                                          EE states that as she was using a staple remover to remove staples from documents, a staple flew up and into her left eye.
## 4094                                                                                                                                                                                                                           EE states that client hit him in the eye.
## 4095                                                                                                                                               EE states that during a cell extraction of an inmate and trying to gain control of him somehow he injuried his rt eye
## 4096                                                                                                                                                                             EE states that during a use of force he was struckin the face with handcuffs by inmate.
## 4097                                                                                                                                                                       EE states that during a use of force while applying restraints inmate kicked EE in right jaw.
## 4098                                                                                                                                 EE states that during inside recreation he was assaulted by an inmate. Right side of face bruisedand cut up. Cut right side of neck
## 4099                                                                                                                                                                                     EE states that during the pepper spray training, left eye affected due to spray
## 4100                                                                                                                   EE states that during the use of force, inmate hadone hand cuffed, inmate broke away from EE and swinging hand with cuff on it hitting EE in eye.
## 4101                                                                                                                                                                             EE states that grit and dirt from reroof of the historic blew into EE face and lt eyes.
## 4102                                                                                                                                                         EE states that he began to feel severe pain in hisleft eye as he was welding; he was wearing a face shield.
## 4103                                                                                                                                                                                   EE states that he fell to the floor with an inmatewhile trying to apply handcuffs
## 4104                                                                                                                          EE states that he had filled the salt truck with gas when getting back into truck his foot slipped on the icey running boards and he fell.
## 4105                                                                                                               EE states that he had left the conference room andwas walking to the copy room when he slipped on the wet floor. His feet went out from under him. ..
## 4106                                                                                                                                                                                       EE states that he ran head first into cell bars while fighting with an inmate
## 4107                                                                                                       EE states that he was assaulted by an I/m hit in head, face, abrasions lt arm, lt hand 3, 4, 5, knuckles 3 bott. Ft. Teeth loose, cut/discoloration both legs
## 4108                                                                                                                                                                 EE states that he was at a inmates cell talking with him and inmate spit in his face threw the bars
## 4109                                                                                                               EE states that he was briskly walking around the corner of housing unit #6. He tripped over the railroad tie and struck his rt forehead on the window
## 4110                                                                                                               EE states that he was cleaning a control room window in the control room of upper f unit the window was located under a water valve struck head on va
## 4111                                                                                                               EE states that he was conducting a security check of the inmates working in industry, when he walkedby one of the machines, blew something in lt eye.
## 4112                                                                                                                                     EE states that he was conducting rounds, making security checks while exiting delta bldg., & walked into door stricking his lip
## 4113                                                                                                                                      EE states that he was driving ford van on hwy 78 west approx. 54mph the hood flew up and hit the windshield glass went in face
## 4114                                                                                                                                      EE states that he was giving medication to an inmate and while speaking with him, the inmate accidently spit in EE's right eye
## 4115                                                                                                                                                                                                                   EE states that he was hit in the lt eye by a pt .
## 4116                                                                                                                                                                               EE states that he was in east control and had something blown in his eye from the fan
## 4117                                                                                                                    EE states that he was involved in a use of force in segregation while attempting to gain control of the inmate his head struck sheild cut lt eye
## 4118                                                                                                                        EE states that he was looking at computer screen when his eye began to ache. He stated it was severe burning, blurred vision, and headaches.
## 4119                                                                                                                                                                                                       EE states that he was painting when the spray blewin his eye.
## 4120                                                                                                                           EE states that he was performing a routine blow out of soot tubes on boiler when the damper bounced & a piece of metal flew into his eye.
## 4121                                                                                                                                                                             EE states that he was piling mulch w/ the backhoe and the wind blew dust into left eye.
## 4122                                                                                                                                                             EE states that he was positioning for a group photogaph when he struck his head aganist the door closer
## 4123                                                                                                                            EE states that he was replacing water damaged ceiling tiles and something got in his rt. EE says that he was wearing his safety googles.
## 4124                                                                                                                                                              EE states that he was searching in a wooded area when a small twig from a tree went inside his lt ear.
## 4125                                                                                                                                                                                        EE states that he was setting up concert shelves and was hit by one of them.
## 4126                                                                                                                                                                                     EE states that he was sprayed with pepper spray and his rt eye is still burning
## 4127                                                                                                                                                                                                                   EE states that he was struck in the head by a pt.
## 4128                                                                                                                                                                     EE states that he was stung by wasp while install-ing the burner assembly back into the boiler.
## 4129                                                                                                                                                     EE states that he was supervising inmates on work detail, the wind was blowing & blew something in his left eye
## 4130                                                                                                              EE states that he was talking to the yard man whenthe chair in the control area bumped the cover on the mantenance box and the door fell on top of hea
## 4131                                                                                                                                                                            EE states that he was walking out the door when hehit his nose on the glass of the door.
## 4132                                                                                                                     EE states that he was working in charlie dorm he bent over to pick up something when he felt a painin his forehead like he was bit by something
## 4133                                                                                                                                           EE states that he was working in the east unit control room when he fell down hitting his head due to a medical condition
## 4134                                                                                                                 EE states that he was working the road squad and bees or hornets were around an inmate. He alleges that on of the bees landed on him and stung eye.
## 4135                                                                                                                                                                                                          EE states that head started hurting and developed swelling
## 4136                                                                                                                                                                                       EE states that her head struck the top of van whenshe was pushed by a client.
## 4137                                                                                                                                                                                                                EE states that his eye started to hurt while working
## 4138                                                                                                                      EE states that in an attempt to remove a solvent sodden dirty paint roller cover from a paint roller frame, acetone solvent splashed into eyes
## 4139                                                                                                                                                                            EE states that inmate pushed him to the floor withthier hands. Bump on back of the head.
## 4140                                                                                                                                                                                                                  EE states that inmate spit on the back of his head
## 4141                                                                                                                                                              EE states that lids fell on her head while in the stockroom & inmate was removing something from above
## 4142                                                                                                                                       EE states that patient hit her in the eye with contact in. The patient was escorted to the quietroom by 5 male staff members.
## 4143                                                                                                                           EE states that returning from icon she reached forhandle on back door to medical, & tripped, she fell on rt knee & rt. Side of head/face.
## 4144                                                                                                                                                                                   EE states that she had been working around residents that have mra on her unit ()
## 4145                                                                                                                                EE states that she stook an inmate down and it wasconfirmed inmate tested postive for MRSA. EE notica spot on her nose, sent to hosp
## 4146                                                                                                                                                       EE states that she turned in a swivel office chair and struck her rt temple area on the corner of the printer
## 4147                                                                                                                                                                                           EE states that she was assisting client when the client spit in her eyes.
## 4148                                                                                                                                           EE states that she was at condrotl desk of f- dormitiry when a rock was thrown out of f1 wing and hit her across the head
## 4149                                                                                                                                EE states that she was directly exposed to oc pepperspray as mandated for certified correctionalofficers in new employee orientation
## 4150                                                                                                                      EE states that she was discussing the mental hlth status of an inmate when she turned to her rt and hit the edge of an open door. Above rt eye
## 4151                                                                                                                                                                                                                   EE states that she was hit in the nose by inmate.
## 4152                                                                                                                                                                                                  EE states that she was hit several times in the face by an inmate.
## 4153                                                                                                                                                                               EE states that she was observing inmates when she was hit in the face by a basketball
## 4154                                                                                                                                                                               EE states that she was opening mail & a strong chemical smell came from the envelopes
## 4155                                                                                                                EE states that she was passing out meds. A pt. W/ no warning suddenly has a projectile vomitting episode some vomit hit the inside of EE's left eye.
## 4156                                                                                                                        EE states that she was patrolling in preimeter #2 when she felt a sting on her rt eye lid she pulled down the visor and dust flew in her eye
## 4157                                                                                                                                                                  EE states that she was pulling on cord to close blind when it fell and hit her in the left temple.
## 4158                                                                                                                                                                       EE states that she was rolling a hose the nozzle flicked back and hit her in the r eye socket
## 4159                                                                                                                                                           EE states that she was standing at a desk on unit when a pt came up behind her and struck her on thehead.
## 4160                                                                                                                                            EE states that she was standing in the sally port at the construction site when an unidentified object flew into her eye
## 4161                                                                                                                                       EE states that she was walking doen the hall with staff member, when the staff member laughed, she felt saliva go in her eye.
## 4162                                                                                                                  EE states that she was wasing dish machine guard skirt with bleach and water to remove mold and buildup. Some of the liquid splashed into her eye.
## 4163                                                                                                                          EE states that suring annual firearm training he was shooting a revolver and when he fired it created a hot flash and burnt his upper lip.
## 4164                                                                                                                                                 EE states that the patient hit him in the face with a closed fist ****wp is paid**** clmt wants to be paid weekly**
## 4165                                                                                                                                                                                                              EE states that the wind blew some dirt into his lt eye
## 4166                                                                                                                     EE states that was walking down the hall when the corner to sharply and hit the rt side of her head on the corner of the office wall partition.
## 4167                                                                                                                                                                                    EE states that when answering dorm phone, unknown fluids flew into her right eye
## 4168                                                                                                                                                                      EE states that when he opened the door to the kitchen, that a fan blew trash into his left eye
## 4169                                                                                                                                                             EE states that when loading a resident into the abmulance, she hit her head on ambulance. Injured head.
## 4170                                                                                                                                                                   EE states that while another EE was cutting a bolt with the torch a spark flew into his right eye
## 4171                                                                                                                                               EE states that while attending training he was walking through teh woods and a bee stung him on the back of the head.
## 4172                                                                                                                                              EE states that while checking an interior pipechase of dormitory two she struck her head on some low hanging duct work
## 4173                                                                                                                                                                           EE states that while closing window to dorm the window broke and shattered in facial area
## 4174                                                                                                                                                 EE states that while collecting inmate food trays, an inmate threw his tray and hit her (smith) in the throat area.
## 4175                                                                                                                                         EE states that while coming out of a tunnel he stepped and slipped on wet floor hitting his head on the side of the tunnel.
## 4176                                                                                                                      EE states that while coming out of the segregationunit he felt something blow into his eye. This scratched his eyeball which led to irritation
## 4177                                                                                                                                                     EE states that while conducting a cell search he dropped a bottle containing bleach and it splashed in his eyes
## 4178                                                                                                                                                                                           EE states that while he was attending firearms training he hit his lt eye
## 4179                                                                                                                                               EE states that while he was helping a nurse check an inmate in his cell, the inmate hit EE in the nose with his head.
## 4180                                                                                                                    EE states that while he was running bloodhounds in the wood in columbus co the leash caught a low w bush & it came back and struck the EE rt eye
## 4181                                                                                                                                                                  EE states that while he was suppervising inmates on the west yard, n insect flew into his left ear
## 4182                                                                                                                                 EE states that while in seg. Control, he was pulling curtain back & one of the curtain hooks popped off & hit him in the right eye.
## 4183                                                                                                                                   EE states that while instructing the annual firearms training class the noise from the rifle blast left ringing in both his ears.
## 4184                                                                                                                                          EE states that while loading a greenhouse fan ontotruck the fan rocked and hit EE on the left side of his head at the eye.
## 4185                                                                                                                                                                                        EE states that while mowing around a tree a pine needle got into his lt eye.
## 4186                                                                                                                  EE states that while on break and standing in the groundskeeper building a gust of wind blew throughthe building blowing a foreign object into eye
## 4187                                                                                                                                                                                                            EE states that while on front porch a bug flew into eye.
## 4188                                                                                                                                          EE states that while performing regular duty a client in group home had pink-eye. EE has acquiredpossible lt eye infection
## 4189                                                                                                                                                                         EE states that while preparing to install a door the viewer of the door struck EE in lt eye
## 4190                                                                                                                                                                          EE states that while pulling a wire through conduit a screwdriver struck him in the mouth.
## 4191                                                                                                                                                                  EE states that while pulling on a cable wire it stuck him in the face causing injury to his lt eye
## 4192                                                                                                                                                                                              EE states that while running showers in c-wing the inmate spit on him.
## 4193                                                                                                                                                              EE states that while she was assigned in the control area some type of article got into her rt eye. ..
## 4194                                                                                                                                                                   EE states that while she was changing a client he kicked her in the mouth and loosened her tooth.
## 4195                                                                                                                                             EE states that while she was just standing inside building where construction was being done something got into her eye
## 4196                                                                                                                EE states that while sitting in chair at gate post the back of chair suddenly gave in with a back motion, EE went into awkward position to not fall.
## 4197                                                                                                                                                                          EE states that while taking keys to another building on the outside a bug flew into lt eye
## 4198                                                                                                                                     EE states that while talking to an inmate the inmate began speaking in a loud voice spraying herin the facial area with saliva.
## 4199                                                                                                                                                                                        EE states that while trying to detain a supspect he was stuck in the face ()
## 4200                                                                                                                                       EE states that while trying to restrain an inmate his forehead struck the edge of a window causing injury above his lt pupil.
## 4201                                                                                                                                         EE states that while vacuuming floor, client was close to face, breathed in face then spit in face exposing mouth and eyes.
## 4202                                                                                                                                                           EE states that while walking an inmate to his cellthe inmates struck EE on the lt side of face with fist.
## 4203                                                                                                                                                                                    EE states that while walking to another building something went into her rt eye.
## 4204                                                                                                                                                                     EE states that while walking to the processing area some foreign material blew into his lt eye.
## 4205                                                                                                                                    EE states that while working post 1 he tripped over a chair leg and hit his rt eye and upper cheek on the metal light switch box
## 4206                                                                                                                             EE states thathe was standing in the unit control center when he became lightheaded he attempted to turn around and fell to his rt knee
## 4207                                                                                                                                                                                         EE states the carport collasped onto the state carwhile she was backing out
## 4208                                                                                                                                                                                     EE states the day after pepper spray training she felt tightening in her throat
## 4209                                                                                                                  EE states the exposure to epoxy paint has caused nausea and while on duty he felt fainted losing his balance and fell striking his head on a desk.
## 4210                                                                                                                                                      EE states the fan blew papers on the floor, he bent over to picked the papers up and hit his head on the desk.
## 4211                                                                                                                                                                                         EE states the fire alarm went off causing him to hear ringing in his lt ear
## 4212                                                                                                                                                                        EE states the fumes from a cleaning solution has caused her eyes to become irritated and red
## 4213                                                                                                                                                                         EE states the he was attemping to cuff an immate when the inmate assaulted EE above the eye
## 4214                                                                                                                                                                                                               EE states the high wind blew particles in his lt eye.
## 4215                                                                                                                                                                                                                  EE states the high wind blew sand into his lt eye.
## 4216                                                                                                                                            EE states the janitor was spraying bleach on the sinks and fixture when some of the spray was blowninto his face and eye
## 4217                                                                                                                                                                                                    EE states the metal handle from a mop struck her in the face/jaw
## 4218                                                                                                                                                     EE states the patient became aggresive when he entered the room, and he patient kicked EE in the chest and face
## 4219                                                                                                                                                                                                 EE states the patient hit her in the head and caused blurred vision
## 4220                                                                                                                                                                                                                           EE states the pt struck her in the mouth.
## 4221                                                                                                                                                                  EE states the top came off a jug filled with floorwax causing the wax chemical to get into EE eye.
## 4222                                                                                                                                                                                                                  EE states the wind blew foreign object into lt eye
## 4223                                                                                                                                                                                                              EE states the wind blew his gun sling into his lt eye.
## 4224                                                                                                                                                                                                                 EE states the wind blew some debris into his lt eye
## 4225                                                                                                                                                                                                                 EE states the wind blew some debris into his rt eye
## 4226                                                                                                                                EE states they had a student in a therapeutic holdon the floor, the student was able to free his hands and scratched EE in the face.
## 4227                                                                                                                                                          EE states they uses chlorox as a tooth irritant, it might be the cause of why her eyes have become swollen
## 4228                                                                                                                           EE states trainees were cutting down trees along fence line, one of the trees fell on the fence and linb snapped back hitting EE in l eye
## 4229                                                                                                                  EE states transferring dirty scissors from a pain that was too full to another pan when a drop of amerse from the new pan splashed into her rt eye
## 4230                                                                                                                                                                                    EE states trunk lid fell on forehead his eye glasses were scratched by trunk lid
## 4231                                                                                                                                                                                                              EE states turning into a parking lot and hiting a sign
## 4232                                                                                                                                                                          EE states two road squad bus collided causing his head to slam against the wall of the bus
## 4233                                                                                                                           EE states upon exiting the bathroom another staff member pushed door causing door to strike EE in the face--upper lip and chipped 3 teeth
## 4234                                                                                                                          EE states use of force with pepper spray and he and inmate butted heads, as the inmate tries to tackle him, EE was expose to pepper spray.
## 4235                                                                                                                                                                                                                                 EE states used of force with inmate
## 4236                                                                                                                                                                                    EE states walking from parking lot to work site and a bug flew in his rt eye. ()
## 4237                                                                                                                      EE states walking in an exam room to write an inmate chart she attempted to sit down in a chair and struck her head on the bottom of a cabinet
## 4238                                                                                                                                                                                  EE states walking toward street, fell on rocks that were on pavement, hitting head
## 4239                                                                                                                         EE states was adding calcium hypocholrite mixed iwth water in five gallon bucket to the wading pool. Some of mixture splashed into EE's eye
## 4240                                                                                                                                           EE states was approached by an inmate who said he lied to him about new jumpsuit. Punched in the face by an irate inmate.
## 4241                                                                                                                                                                                 EE states was assaulted by juvenile while getting him water ** salary continuance**
## 4242                                                                                                                                                                          EE states was bending over to work on a piece of equipment when he hit his head and cut it
## 4243                                                                                                                                                                                                EE states was cleaning floors and bumped her head on the stair wells
## 4244                                                                                                                                                                                EE states was cleaning shower stall and slipped on slick floor hitting head and back
## 4245                                                                                                                                                                 EE states was cleaning windows and doors and started back inside, tripped over mat and fell on hips
## 4246                                                                                                                    EE states was closing bathroom door and tripped on stop and fell to floor and hit head on the trash can. Inj rt hip/rt side of head per eva teel
## 4247                                                                                                                   EE states was conducting showers in n-pod, EE opened the wicket door, an inmate sprayed urine and feces mix in medical bottle in EE's mouth, face
## 4248                                                                                                                   EE states was discussing business w/bill glass ministry team member, team member closed car door that accidently hit him on the left side of head
## 4249                                                                                                                                                EE states was firing at firing range, headphones cames off and EE fired 6 rounds. Didn't realize headphones came off
## 4250                                                                                                                                                                                                                          EE states was hit by a bungee cord on nose
## 4251                                                                                                                                                                                                            EE states was involved with confrontation with an inmate
## 4252                                                                                                                     EE states was mixing chemicals compound together, she was wearing gloves, EE scratched nose with glove and felt burning sensation and felt fain
## 4253                                                                                                                           EE states was struck in head and his glasses destroyed by angry patient being admitted **12-17-04 paid clmt for reimbursement of glasses*
## 4254                                                                                                                                                        EE states was walking to her car, stepped in some oil, fell down on pavement. Transported by ems to rex hosp
## 4255                                                                                                                                                                                                             EE states washing dish and something went toino her eye
## 4256                                                                                                                                                                           EE states water and grease on floor has caused himto fall causing headaches and dizziness
## 4257                                                                                                                      EE states went to courier box to pick up mail, bent down to pick up boxes, straightened up and banged top of head on the projecting lip of box
## 4258                                                                                                                                    EE states wheel came off chair and EE fell to the floor and landed on lower spine with all weight & then fell back onto my head.
## 4259                                                                                                                                                      EE states when bending down to pick up a packet onthe floor, she hit the left side of her head on the desktop.
## 4260                                                                      EE states when breaking pipe loose; waste sprayed into face, left eye. EE jumped striking left hand and fingers on pipe. Chemical exposure to left eye and contusion to left hand; fingers. ()
## 4261                                                                                                                                                                                         EE states when he entered the 4th floor lab--his lips and tongue went numb.
## 4262                                                                                                                                                                                    EE states when he walked by patient and patient jumped up and hit EE in the eye.
## 4263                                                                                                                               EE states when he was getting back in the van, hispants got caught in the seat belt and pulled away and hit his head inside the door.
## 4264                                                                                                                                  EE states when moving the buckets on the cart, the cart hit the door causing the water mixed with chemicls to splash into his eye.
## 4265                                                                                                                  EE states when patient was asked to go to quiet room patient began to hit EE in the head and eye. **do not pay for charges after Dec from nc eye**
## 4266                                                                                                                                             EE states when she reported to operations she felt warm and the next thing she knew she had passed out and hit her head
## 4267                                                                                                                                                                               EE states while adjusting a chair he lost his balance and struck the back of his head
## 4268                                                                                                                                                EE states while adjusting the tension on a fire door with a wrench the wrench slipped and struck EE on the lower lip
## 4269                                                                                                                                                                                            EE states while adjusting the water for the showeran inmate attacked him
## 4270                                                                                                                                                                EE states while administering medical care to an inmate the inmate struck EE on the lt side of face.
## 4271                                                                                                                                     EE states while administering medication to an inmate the inmate struck EE in the face with his fist striking her in the rt eye
## 4272                                                                                                                                                                              EE states while administering pepper spray some ofthe pepper spray got into her rt eye
## 4273                                                                                                                  EE states while allowing an inmate from his cell to retrieve a mop and while unlocking the trap door some unknown substance struck him in the face
## 4274                                                                                                                                                                    EE states while answering a call on the switchboadhe struck his nose with the telephone receiver
## 4275                                                                                                                                                        EE states while applying lubricant on screws to loosen drain covers some of the lubricant flew into his eye.
## 4276                                                                                                                                                                                    EE states while assisting a nurse with an inmate she struck her head on a window
## 4277                                                                                                                                             EE states while assisting an inmate back to his cell the inmate attacked EE and struck him in theface with a flashlight
## 4278                                                                                                                                                                        EE states while assisting lifting a client the client swung backwards and hit EE in the face
## 4279                                                                                                                                                                   EE states while assisting officer with an inmate the inmate struck him on the head on the rt side
## 4280                                                                                                                                                                                       EE states while assisting pt a staff member elbow struck him on the forehead.
## 4281                                                                                                                                                                                               EE states while assisting restraining a pt she wasstruck in the head.
## 4282                                                                                                                                                                                 EE states while assisting with a patient he was struck in the mouth by the pt foot.
## 4283                                                                                                                                                                       EE states while assisting with aggressive client the client struck EE on the rt side of head.
## 4284                                                                                                                               EE states while assisting with an aggressive inmate the inmate pushed him causing him to fall to the floor injuring his head and neck
## 4285                                                                                                                                                                        EE states while assisting with an aggressive inmate the inmate struck EE in lt eye with fist
## 4286                                                                                                                              EE states while assisting with an aggressive inmate the inmate struck him in the face several times causing an injury to his lip/mouth
## 4287                                                                                                                                                                 EE states while assisting with an aggressive inmate the inmate struck him in the face with his fist
## 4288                                                                                                                                                           EE states while assisting with an aggressive inmate the inmate stuck him with fist on the lt side of head
## 4289                                                                                                                                                                     EE states while assisting with an aggressive inmate the inmate's elbow struck him in his lt eye
## 4290                                                                                                                                                                        EE states while assisting with an aggressive inmated he was struck in the face by the inmate
## 4291                                                                                                                                                                              EE states while assisting with an aggressive pt the pt struck EE in the eye with fist.
## 4292                                                                                                                                                                              EE states while assisting with an aggressive student the student struck EE in the nose
## 4293                                                                                                                                                                       EE states while assisting with an agressive inmatethe inmate struck him in the face with fist
## 4294                                                                                                                                                                       EE states while assisting with an agressive inmatethe inmate struck him in the face/cheekbone
## 4295                                                                                                                   EE states while assisting with an altercation withtwo inmates both inmate was sprayed with pepper spray when some of the spray got into EE mouth.
## 4296                                                                                                                                                                                      EE states while assisting with an inmate the inmate head butted EE in the head
## 4297                                                                                                                                                                          EE states while assisting with an inmate the inmate threw a rock striking her on the head.
## 4298                                                                                                                                                                                EE states while assisting with client the client struck her on the back of the head.
## 4299                                                                                                                                             EE states while assisting with controlling an aggressive inmate he was bumped in the mouth by another officer's helmet.
## 4300                                                                                                                                                                        EE states while assisting with decoration a stapler fell striking her on the lt side of face
## 4301                                                                                                                                                                                 EE states while assisting with inmate another officer elbow struck EE in the mouth.
## 4302                                                                                                                                                                    EE states while assisting with inmate he lost his balance and fell on his face injuring his nose
## 4303                                                                                                                                                                                       EE states while assisting with inmates an unknown object flew into his lt eye
## 4304                                                                                                                                                                                                EE states while assisting with inmates she felt something in her eye
## 4305                                                                                                                                                                                            EE states while assisting with road squad something flew into his lt eye
## 4306                                                                                                                                                                              EE states while assisting with two inmate he was accidently sprayed with pepper spray.
## 4307                                                                                                                                        EE states while assiting the dentist with a filling on an inmate the mist from the hand piece was sprayed entering EE lt eye
## 4308                                                                                                                                                                                                      EE states while at a firing range a moth flew into his lt ear.
## 4309                                                                                                                                                                                                     EE states while attempting to break up a fight with two inmates
## 4310                                                                                                                                             EE states while attempting to close the blinds in the dorm--the blinds fell down striking her on thert side of the head
## 4311                                                                                                                                              EE states while attempting to enter a car the doorclosed on her legs causing her to knock her head into the door frame
## 4312                                                                                                                                                                             EE states while attempting to handcuff an inmate the inmate struck EE in the face/cheek
## 4313                                                                                                                                                         EE states while attempting to loosen inmate handcuffs the inmate struck her on the lt side of head and neck
## 4314                                                                                                                                                          EE states while attempting to obtain a statement from an inmate the inmate threw some feces in her rt eye.
## 4315                                                                                                                                         EE states while attempting to place lid on top of cooler he slipped and struck his head on the corner of a metal window fan
## 4316                                                                                                                                 EE states while attempting to pull a sign from itsstand as he was lifting the sign it immediately released striking EE in the nose.
## 4317                                                                                                                                                EE states while attempting to put the binoculars back in the cabinet he struck his head on the latch of the cabinet.
## 4318                                                                                                                                               EE states while attempting to retrieve some cleaner to clean doors the broom handle fell striking her across the head
## 4319                                                                                                                                                    EE states while attempting to seperate two inmate from fighting one of the inmate head struck her under the chin
## 4320                                                                                                                                            EE states while attempting to seperate two inmate who was fighting she received at scratch to the lower side of her face
## 4321                                                                                                                                                                      EE states while attending a pepper spray training course some of the spray got into his lt eye
## 4322                                                                                                                                                                     EE states while attending a training contact she was struck on the rt side of head by a client.
## 4323                                                                                                                                                         EE states while bending down to pick up a piece ofpaper when he stood up he struck his head on a metal box.
## 4324                                                                                                                                                         EE states while bending over to pick up a canteen she raised upward and struck her head against the cabinet
## 4325                                                                                                                                                 EE states while bending over to pick up keys outside of his truck the wind blew causing the door to strike his head
## 4326                                                                                                                                                                 EE states while bending over to retrieve a folder from file cabinet he struck his head on the latch
## 4327                                                                                                                                                                                        EE states while blocking a door with a doorstop the door struck EE head/nose
## 4328                                                                                                                                                                                                     EE states while buffing the floor a bee stung him on the rt ear
## 4329                                                                                                                                                                                    EE states while changing the handles on a bush axehe accidently cut his forehead
## 4330                                                                                                                                                       EE states while checking food cart and trays a strap with a metal hook bounced back striking EE in the lt eye
## 4331                                                                                                                                            EE states while checking in the storage room he turned to exit when he slipped and struck his headagainst the door frame
## 4332                                                                                                                                                EE states while checking pt temperature some bed linens was shaken above her head causing lint to get into her eyes.
## 4333                                                                                                                                                                                   EE states while checking supply closet for supplies someting got into his lt eye.
## 4334                                                                                                                       EE states while checking weapon after assuring post the bolt on the rifle did not work properly while pulling the bolt back rifile discharged
## 4335                                                                                                                                                                                  EE states while cleaing wheelchair some of the cleaning fluid got into his rt eye.
## 4336                                                                                                                                                                    EE states while cleaning a blood spill some germicide chemical splashed and got into her lt eye.
## 4337                                                                                                                                   EE states while cleaning a light fixture during tower duty his mouth struck the end of the broom causing his front tooth to crack
## 4338                                                                                                                                                                                              EE states while cleaning office some disinfectant got into his lt eye.
## 4339                                                                                                                                                                        EE states while cleaning some light fixtures some of the cleaning solution got into his face
## 4340                                                                                                                                                                    EE states while cleaning spots on walls, quat- disinfectant was sprayed on rag and got in lt eye
## 4341                                                                                                                  EE states while cleaning the supply closet she reached for a trash bag when a mop fell down from top shelf striking EE nose & damaging her glasses
## 4342                                                                                                                                                                        EE states while conducting a count on inmates he was struck in the rt eye by a inmate elbow.
## 4343                                                                                                               EE states while conducting a drug test on inmate the inmate provided a urine sample in a bottle while handing bottle to him the bottle dropped to. ..
## 4344                                                                                                                                 EE states while conducting a shake down on h unit he bent over to pick a bottle of cleaning solutionand top busted splashed in eyes
## 4345                                                                                                                EE states while conducting routine office visits, an offender under EE supervision attacked him. EE shot the offender and came in contact with blood
## 4346                                                                                                                                                                    EE states while cooking peas in a kettle he openedthe lid and the steam burned his lip and nose.
## 4347                                                                                                                                                                                          EE states while cooking some hot grease splatter and went into his rt eye.
## 4348                                                                                                                                                      EE states while counseling a verbally aggressive student, the student struck EE in the face with closed fists.
## 4349                                                                                                                                                                    EE states while counseling an inmate the inmate became violent striking EE in the face with fist
## 4350                                                                                                                                                                                                 EE states while crawling under a building he was bitten by a spider
## 4351                                                                                                                                                           EE states while crossing the street a vehicle rode by and caused some dust particles to fly intoee lt eye
## 4352                                                                                                                                                                       EE states while cutting an air duct to install some insulation something blew into his rt eye
## 4353                                                                                                                                                                 EE states while cutting briars with a swinging blade a branch flew back and struck EE in the lt eye
## 4354                                                                                                                                                                                                 EE states while cutting steel a piece of steel went into his lt eye
## 4355                                                                                                                                                         EE states while demonstrating on how to castrate a calf's head the head of the calf struck him in the nose.
## 4356                                                                                                                                                                                                          EE states while distributing linen he was attackedby a pt.
## 4357                                                                                                                                     EE states while doing adl resident started kicking, punching, hitting very comsutive and staff was struck left side of check ()
## 4358                                                                                                                                                                                              EE states while doing paperwork in office his rt eye became irritated.
## 4359                                                                                                                        EE states while driving a bus transporting inmatesthe beam around the side mirror cracked causing the glass particle to enter into EE rt eye
## 4360                                                                                                                                                               EE states while driving a tractor with the mower attached a rock flew forward striking EE in the eye.
## 4361                                                                                                                                   EE states while driving around in the patrol vehicle he injured his head. EE stated he black out and do not remember what happen.
## 4362                                                                                                                                                                  EE states while driving from central prison something from the air condition blew into his rt eye.
## 4363                                                                                                                                                                   EE states while driving patient s ot park a foreign object flew into EE's eye through the window.
## 4364                                                                                                                                EE states while driving she leaned down to retrieve her bag when the rear view mirror came off the window and struck EE on the nose.
## 4365                                                                                                                                                                              EE states while driving the patrol vehicle he was bitten by a spider on the lower chin
## 4366                                                                                                                EE states while driving the state vehicle someone threw an object and hit windshield causing glass to shatter and the particles went into EE lt eye.
## 4367                                                                                                                                                    EE states while driving vehicle the hood flew up causing windshield to shatter and some glass went into his eye.
## 4368                                                                                                                                                                                  EE states while driving with the window down the wind blew something in his lt eye
## 4369                                                                                                                                                                                EE states while dumping peanuts in the back of trailer--she was struck in the rt eye
## 4370                                                                                                                                                                                        EE states while enrouted to a building the wind blew something in her rt eye
## 4371                                                                                                                                                                                             EE states while entering a cell gate something struck him in the rt eye
## 4372                                                                                                                            EE states while entering the cell to remove inmates property and inmate grabbed EE by the rt side of head and by hair and pulled it out.
## 4373                                                                                                                           EE states while escorting an inmate during a Dr Visit she become nausea and lost consciousness and felled striking her head on the floor.
## 4374                                                                                                                                                                         EE states while escorting an inmate to the medicaltx area--the inmate spit in his face/eyes
## 4375                                                                                                                                              EE states while escorting an inmate to the recreation area the inmate struck EE in the mouth with a pair of handcuffs.
## 4376                                                                                                                                                                                       EE states while escorting an inmate to unit the inmate struck EE in the face.
## 4377                                                                                                                                               EE states while escorting visitors she walked toward gatehouse when something from a lawn mower flew into her rt eye.
## 4378                                                                                                                                                                                            EE states while exiting a tower door she was struck in the head by a can
## 4379                                                                                                                                                                                                   EE states while fighting a fire, he got something in his left eye
## 4380                                                                                                                                             EE states while firing weapons during firearm training her ears began to ring. This ringing oc- curred in her left ear.
## 4381                                                                                                                                                                                                    EE states while fueling gas tank some debris got into his lt eye
## 4382                                                                                                                                                                                     EE states while getting in and out of mail van head struck the top of this head
## 4383                                                                                                                                                                   EE states while getting out of car in parking lot she slipped and fell on ice causing to the head
## 4384                                                                                                                                               EE states while getting out of vehicle she turned suddenly striking the rt side of the head on the corner of the door
## 4385                                                                                                               EE states while getting water from cooler, he had placed the padlock top of the cooler, tractor trail-er shook trailer, padlock fell & hit EE in head
## 4386                                                                                                                                                                    EE states while going down some stairs she missed a step and fell injuring her nose and rt thumb
## 4387                                                                                                                                                                                      EE states while going to a truck he slippped and fell on ice striking his head
## 4388                                                                                                                                                                                        EE states while grinding cast iron flange the carbon dust went into his eyes
## 4389                                                                                                                                                                                                      EE states while grinding metal he felt something in his rt eye
## 4390                                                                                                                                                                                             EE states while handcuffing an inmate the inmate struck him in the face
## 4391                                                                                                                                                                    EE states while handling an iv tube for a pt some of the intravenous fluid went into her rt eye.
## 4392                                                                                                               EE states while he was searching janitors closet picked up a broom and it slipped from his hand and the broom head hit bottom tooth and broke a piece
## 4393                                                                                                                                                                       EE states while heating cast iron burner it poppedcausing a piece to strike him in the lt eye
## 4394                                                                                                                                                                                            EE states while heating cast iron on boiler a piece got into his lt eye.
## 4395                                                                                                                                                                         EE states while holding a rifle for a staff memberthe loud sound caused pain in his lt ear.
## 4396                                                                                                                                                       EE states while holding a stack a paper she made a mistake and poked the corner of the rt eye with the paper.
## 4397                                                                                                                                                                EE states while inspecting the exhaust fan on the roof he was bitten by an unknown insect on the lip
## 4398                                                                                                                                                                                         EE states while investigating broken glass a pieceof glass got into rt eye.
## 4399                                                                                                                                                                 EE states while involved in a use of force on an inmate the inmate spit some blood into his rt eye.
## 4400                                                                                                                                                             EE states while laying some tracks for the dogs he ran into a tree limb which struck him in his rt eye.
## 4401                                                                                                                                        EE states while laying track for bloodhound training and while moving through the woods a tree limb struck him in the lt eye
## 4402                                                                                                                           EE states while leaning in a chair the chair fell from under him causing him to fall backward and striking his head on the concrete floor
## 4403                                                                                                                                       EE states while leaning over desk to obtain her clipboard when returning to upright position she struck her mouth on the desk
## 4404                                                                                                                                                                                        EE states while lifting an aluminum board he pulled a muscle in his lt elbow
## 4405                                                                                                                                                                   EE states while lighting a gas grill some flames blew up in his face--burning face, eyes, and arm
## 4406                                                                                                                                           EE states while loading boxes into pickup truck he lost his balance and fell backward striking his head on a water trough
## 4407                                                                                                                                                              EE states while loading dock the front gate flew back striking EE in the mouth injuring rt front tooth
## 4408                                                                                                                                      EE states while locking down inmates, an inmate became combative when he refused to go into his cell and had to be restrained.
## 4409                                                                                                                            EE states while making a curfew check at an offender's home the offender open the door and EE stepped back into a railing which gave way
## 4410                                                                                                                                                                              EE states while making resident's bed the corner of the pillow struck EE in the lt eye
## 4411                                                                                                                                                                                       EE states while making rounds in the dormitory something flew into his lt eye
## 4412                                                                                                                                         EE states while making sercuity rounds he bent down to look under a truck and when stood up he struck his head on the frame
## 4413                                                                                                                                                                    EE states while manning the post someone shined a laser beam pointer into both his lt and rt eye
## 4414                                                                                                                                                   EE states while moving medical charts a stack of charts slid striking EE on the nose and breaking her eyeglasses.
## 4415                                                                                                                                                                    EE states while mowing the grass some unknown object flew under his safety glass into his rt eye
## 4416                                                                                                                                                                            EE states while observing an inmate the inmate struck EE across the mouth with his hand.
## 4417                                                                                                                                                                               EE states while observing inmates playing basketball the ball struck EE in the rt eye
## 4418                                                                                                                                            EE states while observing student during a firearmclass another instructor threw a clay pigeon striking EE in the lt eye
## 4419                                                                                                                                                                    EE states while observing students throwing snowballs she was struck in the rt eye by a snowball
## 4420                                                                                                                                                                         EE states while on a flight from raleigh to california she started experiencing lt ear pain
## 4421                                                                                                                              EE states while on pst g&h, EE felt something hit his rt eye-EE tried to dislodge it but couldn't went to nurses' office for treatment
## 4422                                                                                                                                     EE states while on the ladder his leg slipped causing the ladder to fall causing EE to strike his head against a wall and floor
## 4423                                                                                                                                                                                     EE states while opening a diaper pad something from the pad went into his eyes.
## 4424                                                                                                                                                                                               EE states while opening a door a piece of trash went into his rt eye.
## 4425                                                                                               EE states while opening med drawer to count narcotics she opened med drawer when it hit the back of the cart and felt like dust or unknown object went into rt eye ()
## 4426                                                                                                                                                                                                   EE states while opening the door her head struck a metal cabinet.
## 4427                                                                                                                                                                  EE states while opening the door to a passenger van the door struck her on the lt side of the head
## 4428                                                                                                                                                                                                  EE states while operating a grinder something got into his rt eye.
## 4429                                                                                                                                                                                 EE states while operating a john deere mower a piece of debris flew into his lt eye
## 4430                                                                                                                                                                                       EE states while operating a machine he was stung by swarm of bees on the face
## 4431                                                                                                                                  EE states while operating a tractor under a tree the roll bar caught a limb and it came loose and struck EE in the lt eye and face
## 4432                                                                                                                                                                                            EE states while operating equipment some debris got lodged in his rt eye
## 4433                                                                                                                                                               EE states while participating in a practice on cell extraction he struck his head on a wooden cabinet
## 4434                                                                                                                                                                                             EE states while participating in a training coursehe injured his rt ear
## 4435                                                                                                                                                                                                       EE states while particpating in activity became light headed.
## 4436                                                                                                                                                                     EE states while passing by a cell an inmate threw a cup which contain human waste into his face
## 4437                                                                                                                                                                                    EE states while passing meds one of the inmates, suddenly threw feces on him. ()
## 4438                                                                                                                                                                                                EE states while patrolling dorms an inmate assault him with his fist
## 4439                                                                                                                                                                                  EE states while patrolling her area during yard duty something got into her lt eye
## 4440                                                                                                                                EE states while patrolling the yard he felt as if something was crawling in his lt ear and when he touched his ear it began to bleed
## 4441                                                                                                                                                                             EE states while patrolling the yard looking for aninmate an insect flew into his rt eye
## 4442                                                                                                                                                                     EE states while performing his normal duties at work some particle of steel got into his lt eye
## 4443                                                                                                                                                             EE states while picking up food trays an inmate threw urine from the cell and struck him in the rt eye.
## 4444                                                                                                                                                                        EE states while playing softball with inmates a ball was thrown striking EE above his lt eye
## 4445                                                                                                                                                                             EE states while pouring contaminated water into a drain the water splashed into her eye
## 4446                                                                                                                             EE states while pressure washing floors in an enclosed room the loud noise for the machine has caused loss of hearing and head ringing.
## 4447                                                                                                                                                     EE states while providing sercuity he passed out in the operating room striking his head on a fire extinguisher
## 4448                                                                                                                                                   EE states while pushing a cart some unknown solution got on his hand and when he rubbed his eye it began to burn.
## 4449                                                                                                                                                  EE states while pushing a food cart the coffee potcontainer flipped off the cart striking his head and lt shoulder
## 4450                                                                                                              EE states while pushing an office chair from desk the wheel locked up causing chair to flip out fromunder him falling backward striking head on cabine
## 4451                                                                                                                                                             EE states while putting inmate in shower after a use of force inmate spit in face hitting him in rt eye
## 4452                                                                                                                                                                           EE states while putting mop in mop bucket mop handle hit lt side of her face and glasses.
## 4453                                                                                                                                                                                           EE states while raising a trap door the door fell striking EE on the head
## 4454                                                                                                                                                  EE states while reaching for some paper towels to dry her hand some liquid soap fell and splashed into her rt eye.
## 4455                                                                                                                                          EE states while reaching into tool cabinet to retreive a band saw he stood up striking his head on the lock of the cabinet
## 4456                                                                                                                                                                               EE states while reading resident records the edge of paper brushed against his rt eye
## 4457                                                                                                                                           EE states while rearranging files in folders she pulled out a file and struck her rt eye on the corner of the file jacket
## 4458                                                                                                                                                                            EE states while receiving a TB shot she fainted and fell on the floor injuring her nose.
## 4459                                                                                                                                                  EE states while refilling tank on helicopter he got some soap on his hand and rubbed his lt eye causing irritation
## 4460                                                                                                                                                                                       EE states while relocating workstation, got sawdust in rt eye.. F18 filed. ..
## 4461                                                                                                                                                                                      EE states while removing a bracket the pipe came down striking EE in the face.
## 4462                                                                                                                                                                 EE states while removing lens cover from fixture some of the light bulb pieces got into his rt eye.
## 4463                                                                                                                                                                      EE states while removing ole light fixture from ceiling some of the debri fell into his lt eye
## 4464                                                                                                                                                                                      EE states while removing rust from pump some of the debris got into his lt eye
## 4465                                                                                                                                                                                   EE states while removing the axle from a tractor the axle struck him on the head.
## 4466                                                                                                                                                                              EE states while removing the dust cover from a fansome of the dust got into her rt eye
## 4467                                                                                                                                                                       EE states while removing tree limbs from property one of the limbs struck him on the forehead
## 4468                                                                                                                                                                             EE states while repairing a broken glass on a doorsome of the glass got into her rt eye
## 4469                                                                                                                                                                                                 EE states while restraining a pt the pt finger went into EE rt eye.
## 4470                                                                                                                                                                                          EE states while restraining an agressive inmate he was struck on the cheek
## 4471                                                                                                                                                                                                 EE states while restraining an inmate he injured his lt eye and lip
## 4472                                                                                                                                                                             EE states while restraining an inmate the inmate struck him in the upper right jaw area
## 4473                                                                                                                                                                           EE states while restraining an inmate the inmate struck him on the forehead with his fist
## 4474                                                                                                                                                              EE states while retrieving equipment he lean down and struck his forehead near lt eye on a metal door.
## 4475                                                                                                                       EE states while retrieving narcotics from the cabinet an envelope dropped and when she bent overto pick it up she struck her head on the door
## 4476                                                                                                                                                                   EE states while returning from making the bank depoist she was involved in an automobile accident
## 4477                                                                                                                                                   EE states while riding as a passenger in a vehiclethe hood came up causing glass to shatter and wentinto EE face.
## 4478                                                                                                                                      EE states while riding in the state vehicle he was struck in the rear of the vehicle by another vehicle injury rt side of head
## 4479                                                                                                                                    EE states while scraping paint from the ceiling ofgazebo some of the particles got into his lt eye causing redness and swelling.
## 4480                                                                                                                                             EE states while searching an inmate property the inmate start fighing him--EE recd scratches to the lt side of his nose
## 4481                                                                                                                                                    EE states while searching an inmate room the inmate grabbed her and struck her in the lt eye with a pepsi bottle
## 4482                                                                                                                                                                                                          EE states while searching inmates his eyes startedburning.
## 4483                                                                                                                                                                        EE states while searching seg. Cells, he took off rubber gloves, wiped above rt. Eye w/hand.
## 4484                                                                                                                                                                                                        EE states while securing the post a bug flew into her lt eye
## 4485                                                                                                                                                            EE states while serving an order to arrest a defendant the defendant struck EE in the face withhis fist.
## 4486                                                                                                                              EE states while she was assisiting a resident withher supper, another resident became upset & head butted her in the back of the head.
## 4487                                                                                                                                                                            EE states while shifting a stack of paper she received a cut to the cornea of the rt eye
## 4488                                                                                                                                                                                    EE states while sitting at desk a light fixture felled and stuck EE on the head.
## 4489                                                                                                                                  EE states while sitting at his computer in his office, something bit/stung him or got into his right eye. Eye started to swelling.
## 4490                                                                                                                                                                      EE states while sitting down on a couch he struck his head against the metal frame of a window
## 4491                                                                                                                                          EE states while sitting in a chair he began to cough which at that point he fainted falling to the floor striking his head
## 4492                                                                                                                                                    EE states while sitting in a chair the chair rolled from under him causing him to strike his head against a door
## 4493                                                                                                                                             EE states while sitting in a chair the chair went backward and broke causing EE to strike his head on the concrete wall
## 4494                                                                                                                                            EE states while sitting in a chair the seat came off causing EE to fall backward striking her head and elbow on the door
## 4495                                                                                                                                                                                                 EE states while speaking with an inmate the inmatespit into her eye
## 4496                                                                                                                                                    EE states while spraying pepper spray at an inmatewho had attacked him some of the pepper spray got into EE eyes
## 4497                                                                                                                                                       EE states while spraying some pepper spray on an aggressive inmate some of the pepper spray got into his eye.
## 4498                                                                                                                                                                     EE states while spraying window cleaner to clean window the wind blew the spray into her rt eye
## 4499                                                                                                                                                                                                          EE states while standing he collasped and struck his head.
## 4500                                                                                                                                                                                      EE states while standing outside the wind blew some dust/dirt into his rt eye.
## 4501                                                                                                                                   EE states while stepping down from ladder missed bottom step of ladder and lost balance falling down and hit back of head on rock
## 4502                                                                                                                                       EE states while supervising a student, was struck on the head and left shoulder by student er-910 997-9195; wanda crave hicks
## 4503                                                                                                                                                     EE states while supervising an inmate during community work he was stung by an insect on the ltside of his face
## 4504                                                                                                                                            EE states while supervising bathroom breaks an inmates pushed her into a wall causing her to strike her head on the wall
## 4505                                                                                                                                                                              EE states while supervising inmate during yard duty the wind blew something his rt eye
## 4506                                                                                                                                                                  EE states while supervising inmate playing basket ball the ball struck her on the lt side of head.
## 4507                                                                                                                                                             EE states while supervising inmates cleaning drainage ditch he was struck in the rt eye by a tree limb.
## 4508                                                                                                                                            EE states while supervising inmates during a road squad he entered the back door on a bus and struckhis head on the door
## 4509                                                                                                                                                                                 EE states while supervising inmates during road squad he noticed a knot on his head
## 4510                                                                                                                                                                                         EE states while supervising inmates he was struck in the face by an inmate.
## 4511                                                                                                                                                                                  EE states while supervising inmates in med. Bldg., a pc. Of dirt went into l. Eye.
## 4512                                                                                                                                                                EE states while supervising inmates in the recreation yard she was struck in the head by a softball.
## 4513                                                                                                                                                                EE states while supervising inmates unloading a truck she was stung by a bee on the rt side of face.
## 4514                                                                                                                  EE states while supervising juveniles during pe one juvenile got out of control, approached and punched EE, other juveniles joined in the assault.
## 4515                                                                                                                                                  EE states while supervising students during recreation in gym, he was hit in the face with a basketball. Left eye.
## 4516                                                                                                                                                         EE states while supervising the serving line he was struck in the head with a metal can thrown by an inmate
## 4517                                                                                                                                                                                        EE states while supervising work crew she got a piece of thorn in her lt eye
## 4518                                                                                                                                        EE states while sweeping floors and stairwell in the new science bldg, he accidentally bumped his forehead underneath stairs
## 4519                                                                                                                                                                      EE states while taking bolts off toilet a piece ofbrass came off the nut and went into his eye
## 4520                                                                                                                                                     EE states while taking boxes of paper towel off stack a box containing trash bags fell striking eein the rt eye
## 4521                                                                                                                                                                 EE states while taking inmates down a hall for a diagnostic appointment he struck his head on a fan
## 4522                                                                                                                                                                     EE states while taking off old insulated garage doors some of the particles got into his lt eye
## 4523                                                                                                                                                                      EE states while taking patient back to his room, resident turn around and hit me in my face ()
## 4524                                                                                                                                            EE states while taking pt to bathroom the pt became aggressive and struck EE in the rt eye causing her glasses to break.
## 4525                                                                                                                                                                 EE states while talking to an inmate some saliva came from inmate's mouth and went into his lt eye.
## 4526                                                                                                                                                                                   EE states while talking to an inmate the inmate saliva from spit enter her mouth.
## 4527                                                                                                                                                                                       EE states while talking to an inmate the inmate's saliva struck her lip area.
## 4528                                                                                                                         EE states while testing utensil for pot and pan detergent the utensil slipped from hand which caused water to splash irritating the lt eye.
## 4529                                                                                                                                                                     EE states while the room was being swept, wind blew in the door causing sawdust to blow in eye.
## 4530                                                                                                                                                                                                   EE states while threading a pipe a piece of metal entered his eye
## 4531                                                                                                                                                    EE states while tracting land he pushed a tree over and some bees swarmed out and stung him on his head and face
## 4532                                                                                                                                             EE states while transporting inmates in a van a rock struck the car causing glass to splatter and strike EE in the eye.
## 4533                                                                                                                                EE states while transporting inmates in a van a rock was thrown and splattered the window which caused the glass to get into EE eye.
## 4534                                                                                                                                                                                                    EE states while traveling in car he got something in his rt eye.
## 4535                                                                                                                                         EE states while traveling to another pharmacy sitehe was rear-ended by another vehicle striking head causing mouth to bleed
## 4536                                                                                                                            EE states while travelling on road squad bus the bus was struck by another vehicle. EE states some glass got into her face and eye area.
## 4537                                                                                                                                                           EE states while trying to confiscate a contraband from inmate the inmate struck EE in the face with fist.
## 4538                                                                                                                                                           EE states while trying to gives some keys to another sgt the door slipped and struck her on the forehead.
## 4539                                                                                                                                                                   EE states while trying to restrain a pt she struckher head on the door frame injurying her rt eye
## 4540                                                                                                                                                                           EE states while trying to restrain a student she was struck on the forehead with a brush.
## 4541                                                                                                                                                                               EE states while trying to restrain an aggressive inmate his head struck the cell bars
## 4542                                                                                                                                                              EE states while trying to restrain an agressive student he was struck in the chin/mouth by the student
## 4543                                                                                                                                       EE states while trying to retrieve something from the medication cart when she stood up she hit her head on the cabinet door.
## 4544                                                                                                                                                                            EE states while trying to stop 2 students from fighting she was struck above her rt eye.
## 4545                                                                                                                                                                                               EE states while turning water valve that some trash got into his eye.
## 4546                                                                                                                                                          EE states while under a car assisting a student during class a piece of metal fell and went into EE rt eye
## 4547                                                                                                                                                                         EE states while unloading a car she slipped and struck her upper jaw on the door of the car
## 4548                                                                                                                                                                          EE states while unloading a truck taking a lock off--the lock fell striking EE on the head
## 4549                                                                                                                                                                        EE states while unloading pt from an activity bus she struck her head on a rear view mirror.
## 4550                                                                                                                                              EE states while unlocking a door the bottom of thedoor was caught in a cord and flew back striking EE on the forehead.
## 4551                                                                                                                                                              EE states while unlocking a door to let a patient out for breakfast the patient struck him in the face
## 4552                                                                                                                                                               EE states while unlocking the back door of a bus the wind blew causing door to strike EE on the head.
## 4553                                                                                                                                                                EE states while using a hand held wire brush to clean gate some of the particle went into his lt eye
## 4554                                                                                                                                                                         EE states while using a portable grinder for tool repair some particle flew into his lt eye
## 4555                                                                                                                                                                                       EE states while visiting a home of an offender something blew into his lt eye
## 4556                                                                                                                                                                                                        EE states while walking a fan blew something into his rt eye
## 4557                                                                                                                                                                                                         EE states while walking across yard a bug flew into his ear
## 4558                                                                                                                                                                             EE states while walking around a camper she walkedinto unknown object striking her head
## 4559                                                                                                                           EE states while walking around checking work stations an inmate was grinding a piece of metal when some of the metal got into his lt eye.
## 4560                                                                                                                                                 EE states while walking around the stairwell he turned and struck the lt side of his head on the corner of the step
## 4561                                                                                                                                                          EE states while walking by a steam valve the valvereleased some steam causing it to strike EE on thelt ear
## 4562                                                                                                                                                                                EE states while walking by the control tower, she was hit in the head by the basket.
## 4563                                                                                                                                 EE states while walking down some steps her foot slipped out from under her causing her to fall landing on her face on the concrete
## 4564                                                                                                                                                                                              EE states while walking down the hall he felt something in his rt eye.
## 4565                                                                                                                                                  EE states while walking down the hall he struck his head on the bottom of the camera which was mounted on the wall
## 4566                                                                                                                                                                                                  EE states while walking he felt something strike him in his rt eye
## 4567                                                                                                                                                                                                        EE states while walking her felt she something in her lt eye
## 4568                                                                                                                                                                                             EE states while walking in parking lot she slippedand fell on the face.
## 4569                                                                                                                                                                                           EE states while walking in some woods he struck his eye on a tree branch.
## 4570                                                                                                                   EE states while walking in wood during a timber exam he reached to push back some branches and it slipped from his hand and struck him in the eye
## 4571                                                                                                                                                                                                      EE states while walking in yard something blew into his rt eye
## 4572                                                                                                                                                                       EE states while walking on sidewalk he slipped on ice and fell striking his head and tailbone
## 4573                                                                                                                                         EE states while walking she felt pain in abdomen causing her to be dizzy and fainted--EE struck head on floor when she fell
## 4574                                                                                                                                                                             EE states while walking she tripped over uneven sidewalk striking her head on the fence
## 4575                                                                                                                                                                                                  EE states while walking through woods a bee stung her on the nose.
## 4576                                                                                                                                                                                             EE states while walking thru woods a tree limb struck him in the lt eye
## 4577                                                                                                                                                                       EE states while walking to control room an inmate struck him on the head with a broom handle.
## 4578                                                                                                                                                  EE states while walking to the transfer bus he slipped and fell on ice falling backward causing injury to his head
## 4579                           EE states while walking to work from parking deck, she stumbled on the top step of stairs next to dobbs building on salisbury street. She stated she didn't fall all the way to the ground but caught herself before she hit her face. ()
## 4580                                                                                                                                                                       EE states while walking under water pipe in a basement he struck his head on the piper hanger
## 4581                                                                                                                                        EE states while walking upstairs to post the gun locker cabinet door was left open causing EE to strike his head against it.
## 4582                                                                                                                                                                                             EE states while washing a pot the pot slipped striking EE in the mouth.
## 4583                                                                                                                                                                EE states while washing hands in bathroom some of the soap splashed into her eyes causing irritation
## 4584                                                                                                                                                             EE states while washing his hands he pushed the soap dispenser causing the soap to splash in his rt eye
## 4585                                                                                                                                               EE states while washing out the boiler with a cleaning solution some of the water splashed into his face and eye area
## 4586                                                                                                                                                                                                       EE states while welding a piece of metal got into his rt eye.
## 4587                                                                                                                                                                                   EE states while welding a slag came off from undera hood and went into his lt eye
## 4588                                                                                                                                                                                   EE states while welding complained of eye irritation and blurred visionin lt eye.
## 4589                                                                                                                                                                                                        EE states while welding he received flash burns to both eyes
## 4590                                                                                                                     EE states while working a fire tension on a tree loosened causing the tree to strike his facial area with his teeth nearly penetrating his lip.
## 4591                                                                                                                                                                                                      EE states while working her crew some dust got into her rt eye
## 4592                                                                                                                                               EE states while working in the kitchen he slipped on a fan cord which was on a wet floor striking his face on the fan
## 4593                                                                                                                                                EE states while working on a light fixture the grill came loose and fell striking EE on the forehead and rt eye area
## 4594                                                                                                                                                                                    EE states while working on refrigeration the wind blew some dust into his rt eye
## 4595                                                                                                                                                                                                        EE states while working post he felt something in his rt eye
## 4596                                                                                                                                                                                                           EE states while working she noticed her lips were swollen
## 4597                                                                                                                                                                                          EE states while working the dorm she felt some dust or trash in her lt eye
## 4598                                                                                                                                                                                    EE states while working the switch board he bit his tongue while eating an apple
## 4599                                                                                                                                                                                                 EE states while working under a sink something went into his rt eye
## 4600                                                                                                                                                                                           EE states while working with a squad an unknown insect struck his rt eye.
## 4601                                                                                                                                                                                                EE states writer was struck in his right eye by a combative patient.
## 4602                                                                                                                          EE states, "resident came out of eto while upset and struck belva in nose and eyes with palm of hand causing her head to bounce off wall."
## 4603                                                                                                             EE states, patient attacked me, threw me on the bed and punched me in the face (left side close to eye), choked me, scratched me and broke necklace. ()
## 4604                                                                                                                 EE states, pouring expose into pint expose jug, dropped jug, splashed up in EE's face around eye and mouth. First degree burn to left upper eyelid.
## 4605                                                                                                                            EE states, while in process of doing cell extraction the lead man penning inmate w/ shield. Inmate pushed man. Shield hit EE on forehead
## 4606                                                                                                                                                                           EE states, while working need medicine cart, I hitmy head on a metal bracket on the wall.
## 4607                                                                                                                      EE states: "I was weighing myself on an upright scale, stepped back off scale & tripped over an eefoot causing me to hit my head against wall"
## 4608       EE states: I was in the ladies room when fire alarm sounded. Loud noise caused immediate sharp pain in right ear, ringing in ear and dull pain experienced the rest of the day. I woke up in the middle of the night in intense pain, with pink discharge. ()
## 4609                                                                                                                                             EE states: in supply room, an item fell or droppedin thomas right eye. This caused the eye to turn red and causing pain
## 4610                                                                                                                                                              EE states: medicine for a cat (used as therapy) was accidently squirted in mary catherine's right eye.
## 4611                                                                                                                                                                                     EE states: removing asbestos. He sustained an unspecified injury to his eye. ()
## 4612                                                                                                                        EE states: resident upset and was implementing behavior support program. Resident being held while matt secured and resident headbutted ron.
## 4613                                                                                                                       EE states: she was in laundry room drying clothingshe dropped a sock on the floor & while retreivingthe sock she hit upper eye on dryer door.
## 4614                                                                                                                                                                                                     EE states: stretching band popped. He sustained vision loss. ()
## 4615                                                                                                                                                                             EE steped into woods to use restroom on the way back to bus a limb hit him in the mouth
## 4616                                                                                                                                      EE stepped down on broken section of sidewalk & fell. EE injured arm, knee, finger and received a large contusion to her head.
## 4617                                                                                                                                  EE stepped down one step -stumbled 10 ft, fell face down on concrete walkway, scapped hands/chin **overpayment of ttd- $761. 60***
## 4618                                                                                                                     EE stepped from a chair to the tabletop to reset the clock on the wall. When he descended, he fell from the chair and hit his head on the table
## 4619                                                                                                                                                                              EE stepped in spilled food & fell, twisting rt ankle & hitting mouth on concrete floor
## 4620                                                                                                                                                                                EE stepped on a rock on sidewalk while coming to work and fell on head, lf/rt hands.
## 4621                                                                                                                                                                    EE stepped on chair and tried to jump over anotherand hit head on door frame. Tender top of head
## 4622                                                                                                                                                                                                                        EE stepped on leaning vertical fan and fell.
## 4623                                                                                                                                                                                     EE stepped on road squad bus from back door & hit her head on metal door frame.
## 4624                                                                                                                                                                         EE stepped up into van and steps were wet. EE slipped and fell out of van flat on her back.
## 4625                                                                                                                                  EE stepped up on chair to get to higher shelf and hit head on door jam; thought would be fine but felt nauseous and dizzy next day
## 4626                                                                                                                                                                                EE stepping int golf cart-shoe heel got caught on the side of the veh-fell hit head.
## 4627                                                                                                                               EE stocking supplies on shelf in closet, supplies slipped off shelf hitting employee in mouth and breaking tooth 2nd from front right
## 4628           EE stood and then saw that to her right a hutch was falling towards her. She caught the piece of furniture and tried to puch it upright but the hutch fell forward again. Everything inside and on tope of the the hutch fell onto her desk and floor. ()
## 4629            EE stood in a rolling chair with someone holding it so she could change the time on the wall clock. She decided to get down since the chair kept moving and while getting down, she caught her foot on the arm of the chair falling and hitting head. ()
## 4630                                                                                                                                                                                  EE stood up after examining a patient & struck hishead on the corner of a cabinet.
## 4631                                                                                                                                                                                             EE stood up and hit his head under the bookshelf in the nurse's office.
## 4632                                                                                                                                                                                                    EE stood up from chair, cabinet door above was open & stuck head
## 4633                                                                                                                                               EE stood up from working at desk, turned and hit his head on wall-mounted metal shelf. Contusion rt side of forehead.
## 4634                                                                                                                                                                      EE stood up to put food tray lid on tray, pt became aggressive, shoved tray in to EE's chin ()
## 4635                                                                                                                                   EE stopped to assist stranded motorist on I-77 near clanton rd. & some debris was blown in his right eye from traffic passing by.
## 4636                                                                                                                                                              EE stripping floor walked across floor towards supervisors office accidently slipped. Cut top of head.
## 4637                                                                                                                               EE stripping floor, backing out of room when EE foot slipped out from under him and EE fell hit head on floor. Bruise to back of head
## 4638                                                                                                                                                                                                             EE struck by client, redirecting client from gym lobby.
## 4639                                                                                                                                                                            EE struck face against corner of car door while placing shoppinf items in car for client
## 4640                                                                                                                                                                      EE struck front tooth with post hole digger handle while pulling post hole diggers out of hole
## 4641                                                                                                                                                                                                         EE struck head on a piece of steel while on a transfer bus.
## 4642                                                                                                                                                                          EE struck head on computer frame while obtaining a wet floor warning sign. Head contusions
## 4643                                                                                                                                                                                               EE struck head on corner of wooden cabinet, super- ficial laceration.
## 4644                                                                                                                                                                                  EE struck head on door while trying to restrain client who was striking another EE
## 4645                                                                                                                                                                                              EE struck head on dumb waiter while picking up food trays off of floor
## 4646                                                                                                                                                                                                                                           EE struck head on vehicle
## 4647                                                                                                                                                                                                                  EE struck her head on roof of van while getting in
## 4648                                                                                                                                                                                                              EE struck her right eye with corner of door in clinic.
## 4649                                                                                                                                                                                                                                          EE struck him in the mouth
## 4650                                                                                                                                                                                         EE struck in back of head w/small rocks thrown by unknown inmate or inmates
## 4651                                                                                                                                                                         EE struck in left eye by a student's closed fist while attempting to get him under control.
## 4652                                                                                                                                                                                                  EE struck in left eye by bungie cord end while releasing speakers.
## 4653                                                                                                                                                                                                             EE struck in mouth by agitated patient. Slight swelling
## 4654                                                                                                                                                                                         EE struck in mouth by patient when bent down to unlock wheels on wheelchair
## 4655                                                                                                                                           EE struck left side of head on protruding piece of ankle iron on rear of steam boiler while installing rear boiler doors.
## 4656                                                                                                                                                                                                                       EE struck lt eye with corner of cardboard box
## 4657                                                                                                                                                                                                        EE struck on lower lip by another EE, breaking skin interior
## 4658                                                                                                                                                                                                                            EE struck on the face by a flyaway ball.
## 4659                                                                                                                                                               EE struck on the right side of the head with a football while waiting to fire weapon on firing range.
## 4660                                                                                                                    EE struck the roof mounted shotgun rack while riding in the back seat of a patrol vehicle when the driver stopped abruptly. Laceration forehead.
## 4661                                                                                                                                                                                                   EE struck top of head while exiting boiler room thru low doorway.
## 4662                                                                                                                                                                                                                             EE struck under right eye by a resident
## 4663                                                                                                                                                                                    EE struck upper lip on instructor's forearm while being trained in pic restraint
## 4664                                                                                                                                                                                                                                               EE stuck in forehead.
## 4665                                                                                                                                                                               EE stumbled while leaving animal room and tripped and hit lip on side of animal rack.
## 4666                                                                                                                                                                                                           EE subdiving student hit in the face by bottle of lotion.
## 4667                                                                                                                                                                                                                      EE suffered a blow to the head during training
## 4668                                                                                                                                                                            EE suffered an allergic reaction with bronical spasm after eating food containing onions
## 4669                                                                                                                                                                                     EE suffered an infection in lt eye from coming in contact with infected student
## 4670                                                                                                                                                        EE supervising inmates on d-hall when inmate swung on inmate hall & missed him & struck the EE on left cheek
## 4671                                                                                                                                      EE supervising students playing basketball in the mpac, when a student kicked a basketball and it hit EE directly in the face.
## 4672                                                                                                                         EE sustained a chemical burn while checking instruments, wash solution sprayed in EE right eyewhile trouble shooting instrument. Right eye.
## 4673                                                                                                                    EE sustained a laceration to left upper eyelid and a bruise to left cheekbone when he was struck in face w/ baton by coworker while in training.
## 4674                                                                                                                                       EE sweeping floor when EE felt tingling sensation in eye. Rubbed eye and splashed with water, noticdsmall welt under left eye
## 4675                                                                                                                                     EE sweeping under couch were client was laying- client pulling a piece of plastice between teeth and saliva got into EE's eyes.
## 4676                                                                                                                                                                                                 EE sweeping up clients floor-unknown particle got into EE's rt eye.
## 4677                                                                                                                                    EE swimming with campers when a camper accidentalystepped on head of EE while under water. Resulted in front tooth being chipped
## 4678                                                                                                                              EE taking care of patient in bathroom & monitoring dayroom. Patient came from bathroom running & shouting, punched EE in face/head. ()
## 4679                                                                                                                                        EE taking client to clinic-client wanted to listento walkman-while checking battries to walkman acidwent into face and eyes.
## 4680                                                                                                                                                                            EE taking client's blood sugar when client hit EE under the chine jamming teeth together
## 4681                                                                                                                                                                                                        EE taking documents to another bldg-wind blew sand into eye.
## 4682                                                                                                                                                                                                    EE taking down christmas decorations and thumb tack hit left eye
## 4683                                                                                                                                                                                                                  EE taking down gutter when trash blew in right eye
## 4684                                                                                                                                                                                                         EE taking down old damaged ceiling-debris flew in right eye
## 4685                                                                                                                                                EE taking inmate to er after biting his tongue, when inmate talked he sprayed blood of of mouth & went into EE eyes.
## 4686                                                                                                                                                                                                                                  EE taking out trash and passed out
## 4687                                                                                                                 EE taking resident shirt off & resident stood up & fell forward. EE had to catch resident to prevent hard fall injured lt eye blood vessel bursted.
## 4688                                                                                                                                            EE talking on phone-client walked up and gave EE faxes-EE looking at faxes when client hit EE on rt side of face w/fist.
## 4689                                                                                                                                                                                            EE talking to inmate, when saliva from inmates mouth hit EE in left eye.
## 4690                                                                                                                                                EE talking w/ patient 1:1. Patient grabbed EE by throat, pulled EE's hair and punched EE in the face numerous times.
## 4691                                                                                                             EE talking with patient that was upset about prolonged hospitalization & no benefits, did not get to go on shopping trip. Patient struck EE on chin. ()
## 4692                                                                                                                                                EE teaching cabinet making class and instructin students on how to use wood planner has caused ringing in both ears.
## 4693                                                                                                                                                              EE threw an unknown substance liquid in EE's facial area while escorting another inmate to the shower.
## 4694                                                                                                                       EE tilted up to reach something on desk and as she lowered herself back into the chair-the chair rolled back and she fell-hitting head on tbl
## 4695                                                                                                                                                EE took consumer and several others to duck pond for fishing and consumer threw stick hitting EE inback of his head.
## 4696                                                                                                                           EE took cups from a pt room that wasn't surpose tohave them pt followed EE to nursing station & hit EE in the head, EE head hit the wall.
## 4697                                                                                                                                                      EE took patient down to the floor during an eri, EE uncertain if he hit his eye on the pt's knee or a chair ()
## 4698                                                                                                                                          EE took patient out to smoke and when patient was finished they took a step towards EE and swung and struck EE in the jaw.
## 4699                                                                                                                                 EE took pepper spray training, a a result of beingsprayed in face, EE is suffering from headaches. Was not having headaches before.
## 4700                                                                                                                         EE took state car to have oil changed, EE forgot she had to climb down steps to get out and fell on back on street in front of home office.
## 4701                                                                                                                                                  EE took the gloves off later he began to itch in the eye area. EE was scanning through inmate's personal property.
## 4702                                                                                                                       EE touched his lt eye lid and lid became swollen & irritated. EE feels he came in contact with unknown substance which transferred to eye lid
## 4703                                                                                                                                          EE training assisting dog handlers in laying trackfor bloodhounds exercise. A briar flung back & struck subject in rt eye.
## 4704                                                                                                                                                                                                        EE training exercises struck in mouth by elbow tooth chipped
## 4705                                                                                                                                     EE training in defensive tactics, wrestling to escape, when poked in eye. Right eye retinal injury, EE washed out & made report
## 4706                                                                                                                                                              EE training on bus, when he entered rear of bus he alleges he struck top of head on frame of the door.
## 4707                                                                                                                      EE transporting a 2 gallon sprayer with no brite chemical & water from one truck to another when the wand splashed chemical into his left eye.
## 4708                                                                                                                          EE traveling hwy 87 to transport prisoner - rock thrown from tire of on-coming vehicle bounced off windshild. Glass particles in both eyes
## 4709                                                                                                                EE traveling on woodleaf rd in rowan county, when he lost control of his vehicle, slid on guard rail& went over bridge, landed 24' in a creek. Head.
## 4710                                                                                                                   EE traveling south on us17 when another vehicle crossed into his lane of travel & struck his patrlvehicle in the passenger area. Cut on forehead.
## 4711                                                                                                              EE traveling west on east broad st in statesville. While making a right turn into a business place, EE was rear-ended by another vehicle. C/o headache
## 4712                                                                                                                                              EE treating calf for pink eye w/needle filled w/medicine, calf jumped, she dropped needle & medicine got into her eye.
## 4713                                                                                                                                                                                           EE tried to break up fight between 2 patients, EE got punched in l eye ()
## 4714                                                                                                            EE tried to get client to go to room, when client turned he slipped and fell. When EE tried to help client up client swung and hit EE in mouth split lip
## 4715                                                                                                                     EE tried to intercept between two students and students started toward teacher, putting foot under teachers foot. He fell and hit head on floor
## 4716                                                                                                                                                                      EE tried to mediate an altercation between two pts, pt grabbed EE throwing him to the floor ()
## 4717                                                                                                                                                  EE tried to re-direct aggressive pt, pt swung at co-worker, EE tried to block punch, pt punched EE in the r jaw ()
## 4718                                                                                                                                                                                    EE tried to redirect pt, pt jumped up and hit EE in left eye with closed fist ()
## 4719                                                                                                                                           EE tried to stop two students from fighting when one of the students grabbed EE's right arm knocking her into metal door.
## 4720                                                                                                                                                             EE tried to talk to 2 patients that were fighting. One moved near EE and other patint struck EE in head
## 4721                                                                                                                                                                                   EE triming trees---tree limb struck EE in face----knocking out second left tooth.
## 4722                                                                                                                                                                           EE tripped & fell against open drawer of file cabinet hitting mouth & breaking two teeth.
## 4723                                                                                                                                                     EE tripped & fell hitting head on door jam or doorhandle causing a laceration above lt eye that reqd16 stitches
## 4724                                                                                                                                                             EE tripped and fell hitting head on desk and whiletrying to recover fell back and hit arm on other desk
## 4725                                                                                                                                                                                                                          EE tripped and fell hitting head on floor.
## 4726                                                                                                                                                                                            EE tripped and fell on linoleum, as she fell head impacted doorway frame
## 4727                                                                                                                                                                          EE tripped and fell up the steps in courthouse building - bruised nose and muscle soreness
## 4728                                                                                                                                                      EE tripped and fell while participating in a dramaworkshop and struck her head and chin on the hardwood floor.
## 4729                                                                                                                                                                            EE tripped and fell, cutting the top of his head when attempting to step up into the van
## 4730                                                                                                                                                                                                                           EE tripped and hit head on door handle ()
## 4731                                                                                                                                                                                                                                        EE tripped going down stairs
## 4732                                                                                                                                                                                             EE tripped o edge of curb, fell into back of truckbruising right elbow.
## 4733                                                                                                                                                                                                                      EE tripped on a rug falling to the sidewalk ()
## 4734                                                                                                                                                                                                   EE tripped on cord and fell landing on back, head and rt shoulder
## 4735                                                                                                                                                                                               EE tripped on phone cord laying on floor and fell on hands and knees.
## 4736                                                                                                                                              EE tripped on sidewalk pavement walking to training site causing contusion to multiple body parts & strain neck & back
## 4737                                                                                                                                                                         EE tripped on step and fell on landing, hit her head, left side of body and right wrist. ()
## 4738                                                                                                                                                                                                EE tripped over a mop striking her knee and also falling on her face
## 4739                                                                                                                                                                         EE tripped over box in stockroom and stumbled to catch self and hit head on side of desk ()
## 4740                                                                                                                                                                                                   EE tripped over boxes in storage room and fell landing face down.
## 4741                                                                                                                                 EE tripped over brick at front entrance injury head, chest, face shoulder, knee cell 580 0763** ******* shirley poland ******* 7909
## 4742                                                                                                                                                                                    EE tripped over concrete barrier and fell on face taken to hospital by ambulance
## 4743                                                                                                                                                                                                                   EE tripped over curb; injured lower lip; stitches
## 4744                                                                                                                                                 EE tripped over flower tray & sustained cracked tooth, broken glasses, scrapes, facial abrasions andsprained thumb.
## 4745                                                                                                                                                                 EE tripped over foot rest of wheelchair and hit head on floor. Head contusion, possible concussion.
## 4746                                                                                                                                                                                                           EE tripped over metal piece at door and chipped her tooth
## 4747                                                                                                                                                                                                    EE tripped over planter. She fell, hitting her head on pavement.
## 4748                                                                                                                                                      EE tripped over something while walking by a couchthat was to be removed and fell face down hitting tile floor
## 4749                                                                                                                                                                                              EE tripped over the steps and fell down hitting his head on bricks. ()
## 4750                                                                                                                                       EE trnd off power and checked meter-got brush to clean breaker-when brush touched breaker an electrical arc burned EE's eyes.
## 4751                                                                                                                                                                          EE trying ro remove motor from pump when slipped and hit head on frame of feed water tank.
## 4752                                                                                                                                                                     EE trying to apprehend student. Student picked updirt & threw in EE face, getting sand in eyes.
## 4753                                                                                                                                                                                                     EE trying to assist client-client hit EE in the mouth and nose.
## 4754                                                                                                                                                                                           EE trying to calm client down-client became upset and hit EE in the face.
## 4755                                                                                                                                                                       EE trying to calm client from attacking another client, client then pushed EE in the face. ()
## 4756                                                                                                                                                                                EE trying to intervene with agitated patient & shehit patient in face. Poked lt eye.
## 4757                                                                                                                                                                                 EE trying to locate a book when metal pole againstwall fell and hit EE in the head.
## 4758                                                                                                                                                                                      EE trying to open a stuck door-when door suddenly open and hit EE in forehead.
## 4759                                                                                                                                                                                                    EE trying to open stripper bucket, stripped splashed in left eye
## 4760                                                                                                                                                                                       EE trying to place cleint in seclusion and restraint and was hit in the nose.
## 4761                                                                                                                                                  EE trying to prevent client from falling face first to floor & both fell to floor, EE struck her head against wall
## 4762                                                                                                                                                                                                 EE trying to redirect combative cleint who kicked EE in left tempal
## 4763                                                                                                                                                                                           EE trying to restrain client that was assaultive and was hit in the head.
## 4764                                                                                                                                                               EE trying to sit in chair-chair rolled from under EE causing EE to fall hitting head, neck and wrists
## 4765                                                                                                                                                                              EE trying to use pic on client when client hit EE in the face and kicked EE on rt leg.
## 4766                                                                                                                                                                                             EE turned around and bumped his head on coat rack; has bump on his head
## 4767                                                                                                                                                       EE turned around from getting a steel brace, his head struck corner of trailer. Laceration lt upper forehead.
## 4768                                                                                                                             EE turned around to pick papers off of cabinet, back of chair broke, EE fell to floor hitting the back of her head on the cabinet door.
## 4769                                                                                                                                                                                              EE turned aroundand walked into and sharp object cut EE on the rt ear.
## 4770                                                                                                                                                     EE turned down sunvisor on patrol vehicle. Metal paper clip struck EE in left eye. Corneal abrasion to left eye
## 4771                                                                                                                    EE turned from cash register, stepping into a basket. He fell against corner of table holding cash register. The rim of his glasses cut his eye.
## 4772                                                                                                                                                                                                      EE turned golf cart sharply which tipped over on right side ()
## 4773                                                                                                                                   EE turned head to r when walking into pt room w/ pt, EE turned around towards door adn hit forehead on corner of concrete doorway
## 4774                                                                                                                                                                                                                         EE turned on a/c trash blew in EE's lt eye.
## 4775                                                                                                                                                                                           EE turned on the air condition when some of the debris flew in his lt eye
## 4776                                                                                                                                                                                                     EE turned on vehicle air conditioning and particle blew in eyes
## 4777                                                                                                                                                 EE turned to talk to another officer and hit his head into the station wall hitting left side of head. Lump on head
## 4778                                                                                                                                                                                                                EE turning client over client grabbed EE in left eye
## 4779                                                                                                                                                                EE twirling stick in front of office unaware of eetip of stick hit her in face and put cut on cheek.
## 4780                                                                                                                                                                        EE unbuckling seat belt and client reached out and scratched EE left eye scratch to left eye
## 4781                                                                                                                                    EE uncovered a cell observation camera an inmate threw liquid substance stricking him in the facialarea particular the eye area.
## 4782                                                                                                                              EE under desk throwing something in trash can & upon rising up, hit forehead on bottom of wooden tray - forehead, sore, swollen, bumpy
## 4783                                                                                                                                                            EE unhooking boat trailer from vehicle and struck mouth on jack handle of boat breaking frtont toothcap.
## 4784                                                                                                                                                                                             EE unintentionally struck with spit in eye while speaking with attorney
## 4785                                                                                                                                                                                                                          EE unloading hay when it blew in both eyes
## 4786                                                                                                                    EE unloading lg fax mach. From box on loading dockee stepped on piece of cardboard & other end came up hit EE rt side face, pain in tooth & face
## 4787                                                                                                                                                                EE unloading patient from ambulance-as EE was going to step onto lift-hit forehead on top of vehicle
## 4788                                                                                                                                                                                                    EE unstopping sink with plunger and water splashedinto left eye.
## 4789                                                                                                                         EE used force on inmate to control, while inmate was being forced to the floor, there was a struggleee fell back hitting head against wall.
## 4790                                                                                                                                                                                  EE used the office telephone that had been used by a co-worker who had poison ivy.
## 4791                                                                                                                                  EE using a grinder on wall-window cord blown from inside windown sill into grinder causing grinder to jerk and hit EE in the face.
## 4792                                                                                                                       EE using bolt cutters on 6th floor to remove a malfunctioning padlock, on port window, when he cut lock flew off & hit him in head. Cut head.
## 4793                                                                                                                   EE using issued highway patrol flashlight to get road number from a sign while working a collision. EE struck self in front teeth with flashlight
## 4794                                                                                                                                                                                                 EE using microfilm and when getting up hit head on corner of table.
## 4795                                                                                                                           EE using participation on a use of force, he was accidently struck on top of his head with a baton a fellow officer. Injured top of head,
## 4796                                                                                                                                                   EE using phone when extremly loud noise caused excessive pain in lt ear. EE complained of ring- ing noise in ear.
## 4797                                                                                                                                        EE using saw to cut metal door-when turned off and removed safety glasses to brush metal off faceshavings went into left eye
## 4798                                                                                                                                 EE using tow motor to lift product, a bottle of tile cleaner fell out of box, fork lift split openbottle splashed into EE right EE.
## 4799                                                                                                                                                                                                                          EE veh didn't stop and hit ov in the side.
## 4800                                                                                                                                             EE visiting client home. When leaving accidently walked into a pine tree branch hanging over drive way. Scratched eyes.
## 4801                                                                                                                                                                                        EE w/1:1 pt, pt began swinging at another pt, hit EE on left side of face ()
## 4802                                                                                                                                    EE wa on post #19 & ppv #2. He stood up too fast out of truck #19 to do post duty and struck his head on top of the door jam. ()
## 4803                                                                                                                                                                                        EE wa putting chemical mixture onto press and got chemicals in eyes and face
## 4804                                                                                                                                                                                                                     EE wa shit in the head w/a chair by a juvenile.
## 4805                                                                                                                                                                                                                                        EE wacked head on guard rail
## 4806                                                                                                                                                                         EE wake up one morning with something in his eye. Object scratched eye, causing severe pain
## 4807                                                                                                                                                                                                EE waling on concrete sidewalk and slipped and fell hitting forhead.
## 4808                                                                                                                                                                                             EE walked across wet floor--slipped and fell on face injuring lt eyelid
## 4809                                                                                                                                                              EE walked by maintenance vehicle that had ladder protruding from rear of truck. EE hit head on ladder.
## 4810                                                                                                                                                                                                              EE walked by patient and patient slapped staff in face
## 4811                                                                                                                                                                                                          EE walked in front of fan and it blew something in his eye
## 4812                                                                                                                                                             EE walked into a cabinet lock hasp located in the wood cutting room and cut the center of his forehead.
## 4813                                                                                                                                                                       EE walked into a caution sign posted on a recentlyinstalled power pole in heavy traffic area.
## 4814                                                                                                                                                                                             EE walked into a ceiling suspended tv set strikingthe crown of his head
## 4815                                                                                                                                                                                     EE walked into a guidewire he was going to the homeless shelter to check curfew
## 4816                                                                                                                                                                                                     EE walked into a partially closed garage door cutting his head.
## 4817                                                                                                                                                                                                                                EE walked into a pole and cut rt eye
## 4818                                                                                                                                                                                                                                                 EE walked into door
## 4819                                                                                                                                                                          EE walked into doorframe leaving office 1 inche incision to forehead requiring 6 stitches.
## 4820                                                                                                                                                                                                     EE walked into foyer and slipped on wet floor hitting her head.
## 4821                                                                                                                                                 EE walked into gate house and eyes began tearing and became red and irritated. Floors were just cleaned with clorox
## 4822                                                                                                                                                                                                        EE walked into machine & cut her forehead on a coil of wire.
## 4823                                                                                                                                                          EE walked into office, fainted, fell in doorway, and hit head and shoulder. EE was knocked unconscious. ()
## 4824                                                                                                                                                                             EE walked into restroom and slipped in unknown substance and fell hitting head and knee
## 4825                                                                                                                                                                       EE walked into spider web and a brown spider bit him on crown of head. Injury to back of head
## 4826                                                                                                                   EE walked into storgae room to put supplies away stool was partially in doorway EE tripped over stool fell into wall hitting rt side of forehead.
## 4827                                                                                                                                                                                                  EE walked into the door of childrens schedule board and cut scalp.
## 4828                                                                                                                                            EE walked into the student ctr on lee campus and ran into a pole with my face, nose, and forehead, head. Fractured nose.
## 4829                                                                                                                                                          EE walked into to a student's room to remove a matress from obseration view and student spit in EE's face.
## 4830                                                                                                                                                           EE walked out of her office & ran into a concrete pillar & hit her head hard enough to leave a largeknot.
## 4831                                                                                                                                                                                   EE walked out of office and tripped down steps and hit face on door injuring nose
## 4832                                                                                                                                                                   EE walked out of the bathroom and turned the corner a black bug flew into rt eye. Burning occured
## 4833                                                                                                                                                                                                                        EE walked through fine dust from demolition.
## 4834                                                                                                                                         EE walked through front entrance, smelled strong odor immediateley. Eyes started itching immediatleand nose, blurred vision
## 4835                                                                                                                                                                    EE walked up to a Dr Who was lancing an abcess when blood and pus shot into her eye hiv exposure
## 4836                                                                                                                                                                                               EE walked up to consumer and EE was hit in the mouth by the consumer.
## 4837                                                                                                                                                                EE walking across bridge to park office, stepped on patch of ice, slipped and hit head on asphalt ()
## 4838                                                                                                                                                                                    EE walking across the floor and fell-hitting head on a table and back on a chair
## 4839                                                                                                                                                                                 EE walking around a ladder when light fixture fellon hit EE in the top of the head.
## 4840                                                                                                                                                                         EE walking around in control area when she passed out & fell back hitting her head on floor
## 4841                                                                                                                                                                                              EE walking around the bachoe to get in and bumped head on buck bucket.
## 4842                                                                                                                                                                                                                EE walking back to shop wind blew trash into his eye
## 4843                                                                                                                                                                                     EE walking backwards supervising inmates-balance was off-fell onto his back. ()
## 4844                                                                                                                     EE walking behind a vfd unit at night while responding to a wildfire, limb released and slapping in EE face, swelling and pain, l eye scratched
## 4845                                                                                                                                                               EE walking dog outside to treatment area and dog pulled on chain-EE fell on ice and hit back of head.
## 4846                                                                                                                                                                              EE walking down hall w/client-client turned very quickley and hit EE on head and neck.
## 4847                                                                                                                                                                        EE walking down hall when cleint came up behind eeand gave a krate chop to the back of head.
## 4848                                                                                                                                                        EE walking down hallway hit lt side of head on wall (light) sconce. ****iw elects monthly ttd benefits. ****
## 4849                                                                                                                                   EE walking down steep bank & fell during landslideinvestigation fall caused a rock boulder to fall striking EE in head caused cut
## 4850                                                                                                                                                                                          EE walking down steps and fell on last 6 steps; hit head on concrete floor
## 4851                                                                                                                                                                                   EE walking from car to work tripped at the curb on sidewalk injury over right eye
## 4852                                                                                                                                                                                                                 EE walking from meeting and debris went into rt eye
## 4853                                                                                                                                                             EE walking in camping area when something blew into right eye and EE unable to remove it independently.
## 4854                                                                                                                                                                           EE walking in front of lipinsky and fell hard on both knees, two hands & face (right eye)
## 4855                                                                                                                                                                                                                EE walking in plbg shop, something flew in right eye
## 4856                                                                                                                                 EE walking in the library looking at floor trying to avoid carpet equp. There was a metal bar hanging over head and walked into it.
## 4857                                                                                                                                                                                                        EE walking inside the unit when a bug flew inside my rt eye.
## 4858                                                                                                                                                                      EE walking into bathroom, staff reaching for screefingernail accidently poked EE in right eye.
## 4859                                                                                                                                                                                                                   EE walking into door & tripped & fell on concrete
## 4860                                                                                                                                                                                                                       EE walking into hospital tripped and hit head
## 4861                                                                                                                                                              EE walking into research area & hit head on lift device when climbing around it to get to area of work
## 4862                                                                                                                                                                        EE walking into steam plant to report to work & slipped on mud outside of bldg. Injuring ear
## 4863                                                                                                                                           EE walking on carpet to bathroom when fell hittinghead on wall & bruised hand during fall. Not evidence of safety issues.
## 4864                                                                                                                                  EE walking on the medium yard when a small bug flew into her left ear and she could not get it out. Pain & irritation in left ear.
## 4865                                                                                                                                                                               EE walking on the roof of brinkhouse bullett and the wind blew something int left eye
## 4866                                                                                                                                                                       EE walking out of bathroom and fell on back on wet floor hitting left elbow and back of head.
## 4867                                                                                                                                                      EE walking out of building from work - lost balance. Landed on lt eye, scraped face, eye swollen and blackend.
## 4868                                                                                                                                                                       EE walking out of front door he walked into construction tunnel & something flew into his eye
## 4869                                                                                                                                                                   EE walking the catwalk on post #2 & hit his head on speakerphone, cutting right side of forehead.
## 4870                                                                                                                                    EE walking through coliseum deck, EE ran into pipes hanging krom ceiling during routine enforce-ment. Laceration head on rt side
## 4871                                                                                                                                                           EE walking through dishroom & slipped on water in floor. Carrying jar - slipped fell - gash in rt temple.
## 4872                                                                                                                                                         EE walking through door entering kennel. Door waist high, struck top lt lateral of scalp causinglaceration.
## 4873                                                                                                                                                EE walking through first set of door and foot got caught on floor mat-tripped and fell into the doorhitting forehead
## 4874                                                                                                                                                                       EE walking through welding shop; other EE's cuttingsteel; piece of steel went into right eye.
## 4875                                                                                                                                                        EE walking to building and fell on sidewalk stricking head, injuring right hand, and scraping right knee. ()
## 4876                                                                                                                                                             EE walking to office bldg after delivering paperwork to another bldg. She was struck in eye by the pole
## 4877                                                                                                                                                                      EE walking to restroom when EE slipped and fell on left side of body bumping head, hip and arm
## 4878                                                                                                                                                                                          EE walking towards elevator and slipped and fell hitting head on something
## 4879                                                                                                                                            EE walking towards medical-stepped on edge of sidewalk-left foot turned & EE fell striking head on sidewalk & right knee
## 4880                                                                                                                                                                                 EE walking up staircase when she slipped & hit head on railing knot above rt temple
## 4881                                                                                                                                                                                                                  EE walking up stairs & hit head on piece metal rod
## 4882                                                                                                                   EE walking w/ patient who was 1:1 observation, EE turned for a quick second and before EE knew it the patient hit her on the side of her face. ()
## 4883                                                                                                            EE was 1:1 observations; standing there as normal & for no reason, without any warning patient slapped EE on the right side of face hitting EE's eye. ()
## 4884                                                                                                                                                                  EE was a passenger in truck when it was forced into ditch while passing a truck pulling a trailer.
## 4885                                                                                                                                                                                               EE was a passenger in veh which wrecked and EE hit head on windshield
## 4886                                                                                                                                   EE was a passenger on the garbage truck and got off the truck and walked around the front of the truck. Lacaeration to the scalp.
## 4887                                                                                            EE was a ump at an intramual softball game. Batter hit a foul ball, ball came back off the bat & struck just above left eye. No cuts or abrasions, but glasses broke. ()
## 4888                                                                                                                                                         EE was about to start working and chemical from stripper was to strong and EE became light headed and sick.
## 4889                                                                                                                                                                                  EE was accidently hit in the mouth w/ a clipboard held by another EE-tooth chipped
## 4890                                                                                                                                                                 EE was accidently poked in the eye by a student causing her hard contact lens to scratch her cornea
## 4891                                                                                                                                               EE was adding pro sure to mop bucket. Solution splashed in right eye. Eye became red and burning. Flushed with water.
## 4892                                                                                                                                                                          EE was adding water to the radiator when some of the hot fluid splashed into his face/eyes
## 4893                                                                                                               EE was adjusting a weight machine that required pulling out a metal pin for re serting the weights after EE pulled out the pin part of the lever fell
## 4894                                                                                                                                         EE was adjusting the projecting and turned and the projector banged EE in the eye causing severe pain and blackened the ey.
## 4895                                                                                                                                                                                        EE was administering crp and came in contact with the patients body fluid ()
## 4896                                                                                                                                                                                         EE was administering drug to animals and EE is severly allergic to animals.
## 4897                                                                                                                                                                                                                        EE was administering eye ointment to clients
## 4898                                                                                                                                                                                                      EE was administering med to delusional pt when pt attacked her
## 4899                                                                                                                                                                                 EE was administering medication to patient, patient hit EE's in the face with fist.
## 4900                                                                                                                                  EE was administeriny vaccinations to group of sowswhen unruly sow charged into him knocking him downand stricking him on head area
## 4901                                                                                                                          EE was admitting patient to room 2515 while inmatewas signing rules sheet, gust of wind blew, then window blinds fell on head, right side.
## 4902                                                                                                                                                                                                      EE was agitated, threw book down & something flew in EE's eye.
## 4903                                                                                                                                                             EE was aligning etalon in dye laser when the reflection from the front surface struck her in the lt eye
## 4904                                                                                                                                    EE was alking on the new criminal magistrates floor hallway into lobby carrying a box and looked to the left and hit a column ()
## 4905                                                                                                                                                               EE was answering phone when lightening struck and noise ran through wire, this noise injured EE l ear
## 4906                                                                                                                                          EE was answering the phone in one of the offices, door stop was kicked out from door and EE stepped into the closing door.
## 4907                                                                                                                                                                                              EE was applying brakes to gurney and hit head on shelf by patient bed.
## 4908                                                                                                                                                      EE was applying cream to patient's arm when patient snatched his arm away from EE and punched her in the chin.
## 4909                                                                                                                                               EE was approaching a team for pregame check-in andwas blindsided with a football. Ball hit her on right side of head.
## 4910                                                                                                                EE was arresting a suspect after a car chase and a struggle took place and the suspect began to back up knocking EE down and dragging her. Head/knee
## 4911                                                                                                                                         EE was arresting a suspect for dwi-suspect fled onfoot-EE went after suspect-in process tripped and fell injuring left eye.
## 4912                                                                                                                                                                                      EE was arresting probationer while he was resisting. EE was struck in left eye
## 4913                                                                                                                                EE was arresting suspect for dui-suspect resisted and a confrontation broke out-EE hit left side of lip and craceked left rear tooth
## 4914                                                                                                              EE was arresting suspect for dwi. The suspect ran into woods and EE gave foot pursuit. EE attempted to take suspect into custody & suspect bit & hit e
## 4915                                                                                                                                                             EE was arresting suspect in the woods and a briar struck and scratched right eye, face, hands, and arms
## 4916                                                                                                                                          EE was arresting the suspect and was taking him to the ground and the back of the suspect's head struck his right eyebrow.
## 4917                                                                                                                                         EE was asking client questions about activities and for no apparent reason client hit EE on the left side of face and nose.
## 4918                                                                                                                             EE was assaulted by a group of inmates, resulting in a broken eye socket, other injuries to face/ head area-possible internal injuries.
## 4919                                                                                                                                                           EE was assaulted by a group of inmates, which resulted in a broken jaw bone & possible internal injuries.
## 4920                                                                                                                                                                                               EE was assaulted by a student who struck her EE with his on the head.
## 4921                                                                                                                                                                                                                              EE was assaulted by a student. Cut lip
## 4922                                                                                                                                                                                                                         EE was assaulted by an imate-struck in face
## 4923                                                                                                                                                     EE was assaulted by an inmate - he was thrown to the floor and inmate began kicking him - last thatee remembers
## 4924                                                                                                                                                                                        EE was assaulted by an inmate who threw a basketball and hit EE in the face.
## 4925                                                                                                                                                                                                          EE was assaulted by an inmate's fist and with pepper spray
## 4926                                                                                                                                                                                               EE was assaulted by an inmate. Laceration on lt side of head and eye.
## 4927                                                                                                                                                                                     EE was assaulted by in inmate and was struck 3x in the face w/his closed fists.
## 4928                                                                                                                                                                                                   EE was assaulted by inmate as he was giving him a bathroom break.
## 4929                                                                                                                                                      EE was assaulted by inmate while attempting to counsel him by being struck in the jaw on the leftside of face.
## 4930                                                                                                                             EE was assaulted by inmate, with a closed fist to twice EE on job assignment in g hallway managing inmate going & coming. Lt jaw - sore
## 4931                                                                                                                                               EE was assaulted by inmate-struck on left side of head-EE fell to floor with inmate hitting her head and left forearm
## 4932                                                                                                                                                                                                 EE was assaulted by patient causing bruised nose and broken glasses
## 4933                                                                                                                                                                        EE was assaulted by patient while trying to assistanother patient. EE's glasses were broken.
## 4934                                                                                                                                                                                          EE was assaulted by student while teaching - cut face, broken eye glasses.
## 4935                                                                                                                              EE was assigned to go thru woods and to be able todo proper security. While walking through woods itappeared that limb struck his eye.
## 4936                                                                                                                                                                EE was assigned to kitchen yard and storm blew up and strong winds caused sand to blow into his eyes
## 4937                                                                                                                                          EE was assigned to medium yard, he walked past several inmates and was hit by flying object such as rock or piece of glass
## 4938                                                                                                                                                        EE was assigned to mm bay which was surrounded by unknown fumes in work area which caused both eyes to swell
## 4939                                                                                                                                                                       EE was assigning inmate to dorm when he was talking to her saliva struck inmate in the rt eye
## 4940                                                                                                                                                    EE was assisiting in an arrest when an unident lawenforcement officer struck EE above the lt eye w/a flashlight.
## 4941                                                                                                                                                                                          EE was assisiting in restarin a dellusional pt and was struck in the face.
## 4942                                                                                                                                                                            EE was assistance with removing pt table top when pt punch her in face on l side of jaw.
## 4943                                                                                                                                                                     EE was assistiing with an inmate when inmate pushed him to the floor causing injury to his head
## 4944                                                                                                                     EE was assisting a client when the client suddenlyknicked him with his foot in the face knocking offhis glasses; bruised lt eye; glasses broken
## 4945                                                                                                                                                EE was assisting a facility worker w/instructionalvideo when EE fell and he hit his chin and bit down hard on teeth.
## 4946                                                                                                                   EE was assisting a fellow officer who was being attacked by unknown person choking him. EE was struck in the face causing his glasses to be knock
## 4947                                                                                                                                                                                     EE was assisting a pt when pt dropped a drinking cup striking EE in the lt eye.
## 4948                                                                                                                                                                                               EE was assisting an agressive client when she was kicked in the face.
## 4949                                                                                                                            EE was assisting an iredell dententon officer restrain an intoxicated driver. The driver spit in the face of EE in the left eye area. ()
## 4950                                                                                                                                                                                           EE was assisting another officer when an inmate struck EE in the left eye
## 4951                                                                                                                       EE was assisting another patient in dressing himself when another patient picked up a book & threw it across the hallway striking EE in chin.
## 4952                                                                                                                                               EE was assisting another staff member to carry stage floor covering when a display bench fell striking EE on the head
## 4953                                                                                                                                                                                   EE was assisting client care, staff assisting pushed oj lift over bed & hit head.
## 4954                                                                                                                          EE was assisting client in bathroom, client stood up & his head struck under EE's chin causing EE's tooth to be chipped & abrasion to lip.
## 4955                                                                                                                                                                                        EE was assisting client into bed and client fingers struck EE in the rt eye.
## 4956                                                                                                                                     EE was assisting client out of chair into wheelchar when the client hit the lt side of EE's head with her head. Contusion head.
## 4957                                                                                                                                                                      EE was assisting client with bath when client starting hitting him--injured neck and head area
## 4958                                                                                                                                                             EE was assisting client with toileting. Client agitated and hit EE in right eye with back of right hand
## 4959                                                                                                                                                                   EE was assisting client with undressing. Cleint suddenly moved, his head struck EE under left eye
## 4960                                                                                                                                    EE was assisting client-band broke on bed causing client's hand to go out of control and hit EE in the face breaking eyeglasses.
## 4961                                                                                                                                        EE was assisting co-worker with aggressive client and client dropped to floor and client pulled EE'sfeet from underneath EE.
## 4962                          EE was assisting coworker with separating juveniles during an altercation. As the employee reached out to grab the students he instead grab the coworkers shirt and as she grabbed her shirt, her radio swung around& hit EE in the for ()
## 4963                                                                                                                                                          EE was assisting customer w/ starting a vehicle by cleaning the baterry. Battery acid got in EE's left eye
## 4964                                                                                                                    EE was assisting fellow officer arrest intoxicated& combative person. Subject kicked EE under right jaw bone, small abraison & swelling. Rt jaw.
## 4965                                                                                                                                                                                         EE was assisting in a restraint to control student. () injured lt shoulder.
## 4966                                                                                                                                                     EE was assisting in arrest. Subject assaulted him. EE was hit on right side of hand and ear. EE was also choked
## 4967                                                                                                                                                                                                       EE was assisting in breaking up a fight between two juveniles
## 4968                                                                                                                                                                                                   EE was assisting in changing client- client hit EE in the lt jaw.
## 4969                                                                                                                                                                           EE was assisting in pap smear for student and preparatory solution splashed into left eye
## 4970                                                                                                                                   EE was assisting in putting on truck step. Another EE was putting bolt in step inproperly andwhen EE stepped on the step to fall.
## 4971                                                                                                                                                                  EE was assisting in restraining a student and the student spit in EE's face with bloody secretion.
## 4972                                                                                                                 EE was assisting in the restraint of a student that ws out of control and student pick up a ink pen that had fallen to the floor, stabbed EE'rt eye
## 4973                                                                                                                                                   EE was assisting in wiping a resident face and wasstruck in the face/nose by a resident with their head nad fist.
## 4974                                                                                                                                                 EE was assisting lift a client-when the client threw back his head-hitting EE in the mouth and chipping EE's tooth.
## 4975                                                                                                                                                                                   EE was assisting lifting client and client threw head back hitting EE in the nose
## 4976                                                                                                                                                                               EE was assisting lifting client when client reached back and punched EE in the rt jaw
## 4977                                                                                                                                              EE was assisting on repair of an electric blind. EE was removing a ceiling tile when some debris went into his eye. ()
## 4978                                                                                                                                                            EE was assisting other staff with removing items from cell, when inmate became angry & spit in EE'sface.
## 4979                                                                                                                                                     EE was assisting patient and patient leaned back and the patient head hit EE in the mouth chipping front tooth.
## 4980                                                                                                                                                                                             EE was assisting patient in taking off shoes and was kicked in the face
## 4981                                                                                                                                                                                               EE was assisting patient outside and patient struck employee in face.
## 4982                                                                                                                                                                     EE was assisting patient to get him in shower, patient accidentally elbowed EE in right eye. ()
## 4983                                                                                                                                               EE was assisting patient with daily living activities. Patient grabbed EE's hair & hit EE in the back of the head. ()
## 4984                                                  EE was assisting patient with getting from the wheelchair to the exam table. As the EE was assisting the patient with moving his/her legs the patient swung left arm and hit EE in right eye with his/her fist. ()
## 4985                                                                                                   EE was assisting pt back on ward. Pt refused to come back on ward, pt grabs EE's face (right-side) & scratches, also scratches the inside of EE's right cheek. ()
## 4986                                                                                                                                                                                                    EE was assisting pt in getting adl pt headbutted EE in the r eye
## 4987                                                                                                                                                                                                   EE was assisting pt to treatment room when pt hit EE in the face.
## 4988                                                                                                                                                                           EE was assisting resident from dining room when patient hit hct under chin with his fist.
## 4989                                                                                                                                                                                            EE was assisting resident, changing when resident kicked EE in the head.
## 4990                                                                                                                                                                          EE was assisting residnet to bed, resident scratched. EE was scratched right side of face.
## 4991                                                                                                                                                           EE was assisting restraining student when student threw head back and hit EE in the face breaking glasses
## 4992                                                                                                                                                              EE was assisting serving inmates meal when one of the inmate threw a cup of urine splashing in EE face
## 4993                                                                                                                                                                     EE was assisting to change a client and client kicked EE in the back of the head on thelt side.
## 4994                                                                                                                                                                 EE was assisting to put a patient in therapeutic hold and another attacked employee from back side.
## 4995                                                                                                                                   EE was assisting w/a student who was attempting suicide when staff was intervening he was hit on side of head w/metal flashlight.
## 4996                                                                                                                                                                     EE was assisting with a client when client struck EE in the chin causing head to snap backward.
## 4997                                                                                                                                                                                     EE was assisting with a use of force when an inmate struck him above the lt eye
## 4998                                                                                                                                                                                       EE was assisting with an aggressive client when client struck EE in the chin.
## 4999                                                                                                                                                                    EE was assisting with an aggressive inmate when he received abrasion and contusion to his rt leg
## 5000                                                                                                                                                                                           EE was assisting with an aggressive inmate when he was struck in the face
## 5001                                                                                                                                                                        EE was assisting with an aggressive inmate when he was struck on the lt forehead and forearm
## 5002                                                                                                                                                                        EE was assisting with an agressive client when client struck EE in the lt eye with a helmet.
## 5003                                                                                                                                                                   EE was assisting with an agressive inmate when he fell to the floor striking his head on the desk
## 5004                                                                                                                 EE was assisting with an arrest of a combative suspect. EE was kicked in the face, his eye glasseshattered, glass fragments embedding in right eye.
## 5005                                                                                                                                                                                                       EE was assisting with an inmate when he was struckin the nose
## 5006                                                                                                                                                                                        EE was assisting with an inmate when he was struckon the head and lt forearm
## 5007                                                                                                                                                                          EE was assisting with an out of control student- student spit bloody saliva into EE's eyes
## 5008                                                                                                                                                                                                      EE was assisting with client when client struck EE on the head
## 5009                                                                                                                                                                                              EE was assisting with company picnic and was stung by bee on upper lip
## 5010                                                                                                                                                                         EE was assisting with inmate when inmate became disruptive striking EE on the lt cheek area
## 5011                                                                                                                                                                                                     EE was assisting with inmate when inmate kicker her in the face
## 5012                                                                                                                                                                                        EE was assisting with inmate when she was struck by a basketball in the face
## 5013                                                                                                                                                                                                 EE was assisting with inmate when the inmate struck him in the face
## 5014                                                                                                                                                                    EE was assisting with inmates feeding breakfast when the inmate threw some unknown liquid at him
## 5015                                                                                                                                                                                                            EE was assisting with inmates when his head strucka wall
## 5016                                                                                                                                                                                                   EE was assisting with lunch when an inmate struck him in the face
## 5017                                                                                                                                           EE was assisting with moving patient from dayroom. Patient was kicking. Pain in back, numb left leg and scratches on hand
## 5018                                                                                                                                         EE was assisting with opening slide chute on corn grinder when a metal fragment from the storage bin fell into left eye. ()
## 5019                                                                                                                                                                                        EE was assisting with patient when she was struck in the head by the patient
## 5020                                                                                                                                                                                                   EE was assisting with pt when pt struck EE with fist in the nose.
## 5021                                                                                                                                                                               EE was assisting with student when student struck EE in the face injuring lt eye/chin
## 5022                                                                                                                                                                  EE was assisting with the removal of an ac unit when he received a gash in left temple of his head
## 5023                                                                                                                                                                   EE was assisting with the restraint of a juvenile. Juvenile became aggressive toward employee. ()
## 5024                                                                                                                                                 EE was assiting co-worker replacing lights when a cover fell and hit eeon left side of head, jaw shoulder and thumb
## 5025                                                                                                                                                                              EE was asssisting pt when another pt took object off nightstand and threw at EE rt eye
## 5026                                                                                                                                                                              EE was assting client to get dressed & became aggitated and headbutted EE in the nose.
## 5027                                                                                                                                       EE was assulted by inmate. Multiple contusions to face, rt eye, neck pain, upper back, low back pain, dizzy spells, headaches
## 5028                                            EE was at beaufort hospital with a suspected impaired driver. EE was standing behind the suspect as the nurse was attempting to draw blood. The suspect jumped from his seat and headbutted the employee in his nose. ()
## 5029                                                                                                                                                                                      EE was at canteen with resident ordering snacks and was head butted on lt jaw.
## 5030                                                                                                                                               EE was at firing range waiting for someone to finish-when that person fired his rifle EE experienced pain in left ear
## 5031                                                                                                                  EE was at nursing station patient walked up, asked to go home, punched EE in right jaw, EE hit wall ** nurse cm - claudia roberts 252-221-8150 ***
## 5032                                                                                                                                                                 EE was at the gas pump pumping gas into state vehicle. Gas nozzle slipped out and gas sprayed on EE
## 5033                                                                                                                                                                                           EE was at the gate house and the wind blew some- thing into his left eye.
## 5034                                                                                                                                                                                 EE was at utility trailer, gust of wind blew lid open hitting him on middle of head
## 5035                                                                                                                                                                                                             EE was at work station when consumer hit EE in theface.
## 5036                                                                                                                                                               EE was attached by a inmate. Inmate struck EE in the lt side of face. Lt side of face, fractured jaw.
## 5037                                                                                                                                                                                                                                            EE was attached by pt ()
## 5038                                                                                                                                                                                                    EE was attacked by a patient hitting EE in the face, head. Neck.
## 5039                                                                                                                                                                           EE was attacked by a patient who hit him in the eye w/his fist. Pt tried to start a riot.
## 5040                                                                                                                          EE was attacked by a violate student & he slammed her head against a brick wall causing a cut to herhead & she passed out after a few min.
## 5041                                                                                                                                                                    EE was attacked by an inmate-was thrown to the floor twice and was repeatedly struck in the head
## 5042                                                                                                                                             EE was attacked by an out-of-control client. Client back handed EE in the face and then started beating EE on the back.
## 5043                                                                                                                                                                                    EE was attacked by client who pulled EE's hair, twisted neck and head butted EE.
## 5044                                                                                                                                                                                             EE was attacked by client with fist hitting on rt temple across glasses
## 5045                                                                                                                                                                                EE was attacked by inmate. EE was hit in the mouth after being thrown against a wall
## 5046                                                                                                                                                                                                EE was attacked by patient causing her to fall hitting head on floor
## 5047                                                                                                                                                                                                                   EE was attacked by patient causing nasal fracture
## 5048                                                                                                                                                                EE was attacked by patient-thrown to floor, struck in head several times by fists, choked by patient
## 5049                                                                                                                                                                           EE was attacked by patient; struck in left side ofhead in temporal area by patient's fist
## 5050                                                                                                                                                                       EE was attacked by pt fm the back, pt hit EE in face 3x, knocking glasses off and breaking ()
## 5051                                                                                                                                                          EE was attacked from behind by a resident while doing her housekeeping duties. Imjured knee and head, arm.
## 5052                                                                                                                                                                                                                              EE was attacked staff member w/o cause
## 5053                                                                                                                                                EE was attemping to enter cell block, when he blacked out causing him to fall to the floor possibly bumping his head
## 5054                                                                                                                                                    EE was attempting close a enterance gate to the back of dining hall, when the razor wire cut EE on the forehead.
## 5055                                                                                                                                EE was attempting firearms qulaification. While hewas attempting to put on safety glasses, the frameof glasses struck his right eye.
## 5056                                                                                                                   EE was attempting to adjust his walkie talkie w/ shoulder speaker attached when a loud noise frm speaker came unexpected-affecting hearing rt ear
## 5057                                                                                                                              EE was attempting to apprehend an escaped patient and the patient hit EE beside of head and then choked him. EE was found beside road.
## 5058                                                                                                                                      EE was attempting to arrest a suspect with warrentand a fight ensued. EE was kicked and bruised and received cut to right eye.
## 5059                                                                                                                  EE was attempting to arrest an individual for dwi. The suspect attented to flee in vehicle & a fight ensued. EE recieved a minor cut to lower lip.
## 5060                                                                                                                                                                         EE was attempting to arrest an offender when the offender struck him in the face four times
## 5061                                                                                                                                              EE was attempting to arrest and handcuff the suspect when the subject froke free striking EE inthe face and head area.
## 5062                                                                                                                                                                        EE was attempting to assist patient in hanging closthes when patient hit EE in the left eye.
## 5063                                                                                                              EE was attempting to begin teaching her class she had a seizure which caused her to fall to the floor and in doing so got a large bruise on her forehe
## 5064                                                                                                                                                    EE was attempting to break up a fight and the suspect grabbed the the EE's collar and spit blood in his face. ()
## 5065                                                                                                                                                                 EE was attempting to break up a fight between two patients... Fell... Struck head against the floor
## 5066                                                                                                                                                     EE was attempting to break up two inmates from fighting when one of the inmates swung and struck EE in the head
## 5067                                                                                                                       EE was attempting to carry child downstairs and child went lipm and EE tried to keep child from falling, fell over child. Injured face(nose).
## 5068                                                                                                                                                      EE was attempting to cat into cage; cat got away climbed up EE's body and scratched and bit her above left eye
## 5069                                                                                                                 EE was attempting to control a disturbance in the c-block when he approached inmate causing the disturbance, the inmate struck EE in the lip w/fist
## 5070                                                                                                                                                                                EE was attempting to de-escalate agitated patient. Patient struck EE in the face. ()
## 5071                                                                                                                                                        EE was attempting to deploy stop sticks to stop a fleeing vehicle when he was struck by the fleeing vehicle.
## 5072                                                                                                                                                                             EE was attempting to dislodge a marker when the marker struck his face right cheek area
## 5073                                                                                                                                                         EE was attempting to dislodge a stick in the centerboard of a sailboat-the stick broke and hit EE in mouth.
## 5074                                                                                                                                       EE was attempting to dispense scinti-sate scintillant into a scintillatian vial, chemical squirted onto the EE's face & body.
## 5075                                                                                                                         EE was attempting to drink a frozen bottle of water when the pressure from the ice struck her upper lip causing her front tooth to be loose
## 5076                                                                                                                      EE was attempting to enter his patrol vehicle whenhe slipped on edge of pavement. EE hit face on edge of door. Cut ot eye requiring 4 stitches
## 5077                                                                                                                                     EE was attempting to exit vehicle when the corner of calendar page struck him in the right eye. Scratch on cornea of right eye.
## 5078                                                                                                                                                           EE was attempting to fasten one side of a cord andit came loose striking EE in the top corner of the eye.
## 5079                                                                                                                                                                   EE was attempting to get into minivan and did not lower head enough and hit head on the van door.
## 5080                                                                                                                                                          EE was attempting to give inmate medication; inmate grabbed EE by hair and hit her in the head four times.
## 5081                                                                                                                                                                                        EE was attempting to give patient medicine and patient struck EE in the head
## 5082                                                                                                                                           EE was attempting to handcuff inmate when the EE was struck in the back of head by inmate. EE was pushed back into a bed.
## 5083                                                                                                                                                  EE was attempting to implement therapeutic walk w/student, student became aggressive and punched EE in the lt eye.
## 5084                                                                                                                                EE was attempting to keep his computer keyboard from hitting the floor & in the process broke the bottom front tooth #24 to the gum.
## 5085                                                                                                                                                                    EE was attempting to lift a unit off the wall and caught his shoulder wrong resulting in injury.
## 5086                                                                                                                   EE was attempting to locate a child's shoes in thedark when he hit his mouth on a bed frame causing a puncture wound in his lip & a broken tooth.
## 5087                                                                                                                                                                         EE was attempting to lower curtain from top of cooler door. Part of curtain struck left eye
## 5088                                                                                                                                            EE was attempting to make a u-turn to catch a violator-as EE made turn his veh was struck in the left frt by another veh
## 5089                                                                                                                            EE was attempting to make an arrest. Subject resisted and struggle occurred. EE's head struck subject's head causing injury to right eye
## 5090                                                                                                                        EE was attempting to move furniture back into previous position after floor had been waxed, whenshe fell & struck her head on the door knob.
## 5091                                                                                                                           EE was attempting to open a stopped up kitchen drain. When he opened the drain cleaner, the fan blew some of the dust into EE's left eye.
## 5092                                                                                                                                           EE was attempting to open door that had been pad locked in the belk gym loading dock. Bolt cutters slipped striking head.
## 5093                                                                                                                                     EE was attempting to pass vehicle when vehicle made left turn in front of him resulting in accident. EE has laceration to chin.
## 5094                                                                                                                            EE was attempting to physically restrain a client I along with other staff and student fell to the floor while falling head struck door.
## 5095                                                                                                                                                           EE was attempting to place an aggressive student in handcuffs and was struck in the mouth by his head. ()
## 5096                                                                                                                                             EE was attempting to pull buffing pad boxes from shelf when dispenser on top of box fell and struck employee in head ()
## 5097        EE was attempting to put an aggressive, out of control student in his room. Student freed his hand he then punched Mr. Olds in the face repeatedly hitting EE in the lower right jaw.. Student was restrained again then he bit Mr. Olds on his right wrist.
## 5098                                                                                                                                                            EE was attempting to re-enter the security vehiclewhe he hit his head on teh top edge of the door frame.
## 5099                                                                                                                                               EE was attempting to redress client and client became agitated and struck EE in the rt side of the face and the mouth
## 5100                                                                                                                              EE was attempting to reload 1000 lb. Weights into truck w/ hoist. Hook slipped from weight & swung around, hitting EE under right eye.
## 5101                                                                                                                EE was attempting to remove a battery cable on training vehicle, cap was blocked the bolt, removed the battery cap, acid form battery went into face
## 5102                                                                                                                                         EE was attempting to remove a chain binder under tension when the binder recoiled & struck EE in the face. Cut above rt eye
## 5103                                                                                                                                                       EE was attempting to remove inmate from the shower when inmate spit in her direction, hitting her in the eyes
## 5104                                                                                                                                    EE was attempting to remove strap ties that held a telfon tube in a coil. The tubing uncoiled and the end struck EE in left eye.
## 5105                                                                                                                 EE was attempting to resecure a roof hatch in the control room when the piston that holds the hatch up failed and the hatch came down and struck EE
## 5106                                                                                                                                                        EE was attempting to restrain an inmate during use of force, he slipped, fell hitting his head on the floor.
## 5107                                                                                                                                                                          EE was attempting to restrain inmate and she scratched left side of face and spit in face.
## 5108                                                                                                                                              EE was attempting to restrain two students engaged in a physical altercation. EE was hit in the mouth by a student. ()
## 5109                                                                                                                      EE was attempting to sit in chair when the bottom of the chair flipped and causing her to be thrown onto the floor and EE hit head on the wall
## 5110                                                                                                                                                 EE was attempting to sit in the chair and the chairrolled away and EE hit her head on the corner of the desk drawer
## 5111                                                                                                                                 EE was attempting to sit on the stool, and the stool moved away from the wall. Officer morrisey fell and hit her head on the floor.
## 5112                                                                                                                                                                                                             EE was attempting to stop fight when pt hit EE on cheek
## 5113                                                                                                                                                    EE was attempting to suture an injured patient when she was struck by patient in the head/face and fell to floor
## 5114                                                                                EE was attempting to theraputically communicate w/ patient. Patient also attempting self injurious behavior. Patient became agitated & hit EE on the left side of the nose/mouth. ()
## 5115                                                                                                                                                                EE was attempting to transfer resident from bed to lumex chair. Resident hit EE in face with fist ()
## 5116                                                                                                                                         EE was attempting training procedure involving falling off bike and drawing weapon. EE fell off bikeand hit head on ground.
## 5117                                                             EE was attending an on-duty training course on defensive tactics when the striking bag she was holding was struck by another officer and popped towards her mouth, knocking her dental bridge loose. ()
## 5118                                                                                                                                                                                                EE was attending cell extraction training and was kicked in the head
## 5119                                                                                                                                                 EE was attending conference for department. EE got out of bed and tripped on ???, hitting head on conference table.
## 5120                                                                                                                EE was attending firearms recertification; when EE got there, someone else was finishing up their rifle qualifying. Resulting fire cause ear injury.
## 5121                                                                                                                EE was attending to mule when she was kicked in the face by the animal. She suffered facial contu-sions, loss of consciousness and facial abrasions.
## 5122                                                                                                                            EE was avoiding a veh which pulled into her path which caused EE to swerve and sideswipe another veh causing glass to cut arms and face.
## 5123                                                                                                                      EE was back packing in the pisgah forest, slipped hiking down spencer ridge trail, fell forward hitting head on rock. Cut & contusions forhead
## 5124                                                                                                                                                EE was backing up and tripped over the doorway fell and hit her head on the sidewalk. Injured head, knee, arm, back.
## 5125                                                                                                                                                                         EE was bathing client & slipped on water & fell hitting head on sink then fell on concrete.
## 5126                                                                                                                                             EE was bathing client and client became upset and started swinging arms hitting self and accidently hit EE in left eye.
## 5127                                                                                                                                                                                     EE was bathing inmate, inmate became combative hitting EE, then spit in EE face
## 5128                                                                                                                                                      EE was bathing resident and resident swung her arm and struck EE in the mouth bruising lip nad loosening crown
## 5129                                                                                                                                EE was battling an engine fire, either the batteryor tires exploded and EE was 2-3 ftawaay from the car. Produced a very loud noise.
## 5130                                                                                                                                                                                  EE was beating drain screen to remove debris, piece of debris flew into EE eye. ()
## 5131                                                                                                                       EE was behing door getting cane and was bumped by an EE coming in the door causing him to fall and strike his head on the chair leg and floor
## 5132                                                                                                                        EE was being attacked by client when the EE grabbed the clients hands so client could not hit client lunged forward & headbutted EE in nose.
## 5133                                                                                                                                                                    EE was being decontaminated after being sprayed with oc pepper spray and EE scratched right eye.
## 5134                                                                                                                                                                                                               EE was being fought by patient and kicked in the chin
## 5135                                                                                                                   EE was being sprayed with an indirect hit of peppespray. The instuctor sprayed the pepper spray & some of it went into her left ear causing burns
## 5136                                                                                                                                                                            EE was bending down picking up a box when another EE opened door, door hit EE in head ()
## 5137                                                                                                                                                 EE was bending down to ask c/o edwards a question and key drawer lid fell and hit EE on the head cutting rt eyebrow
## 5138                                                                                                                                                                                   EE was bending down to clip resident's alarm, when resident hit EE in the chin ()
## 5139                                                                                                                                                                          EE was bending down to get a trashbag from janitor's closet, hit head on a protruding bolt
## 5140                                                                                                                                                                                                          EE was bending down to grab tarp when stick punctured eye.
## 5141                                                                                                                                                          EE was bending down to pick items from floor and when she raised up her head struck a wooden box container
## 5142                                                                                                                          EE was bending down to pick up trash near the display cases when she hit her head on the corner of the display case on the way back up. ()
## 5143                                                                                                                                                                EE was bending down to retreive a water bottle from a cooler when he struck his head on the car door
## 5144                                                                                                                                                                                 EE was bending down to tie, stepped on shoe string snd lost balance and struck eye.
## 5145                                                                                                                       EE was bending down trying to turn off the faucet in the housekeeping closet in belk hall and stood up and hit her head on a ceiling pipe. ()
## 5146                                                                                                                                                                                              EE was bending examining a cooker when his head struck the lift handle
## 5147                                                                                                                                                                               EE was bending over leaning, left eye began to hurt, noticed blood vessel had popped.
## 5148                                                                                                                                                            EE was bending over to assist a client and client began to kick EE in the face. Injury to the face/ jaw.
## 5149                                                                                                                                      EE was bending over to get a big box of bulbs, & parcel Dr Was open which EE was unaware. EE came up & hit head on parcel door
## 5150                                                                                                                                                                                  EE was bending over to pick up tool and bumped head on light fixture and cut head.
## 5151                                                                                         EE was bending over to remove a few serological pipettes from drawer to the left of the biosafety hood. When she got them, she stood up and hit head on outside of hood. ()
## 5152                                                                                                                                    EE was bending over to remove restraints from an inmate's ankles & accidently bumped his forehead on the latch of the cell door.
## 5153                                                                                                                                       EE was bending over to retrieve a pen and his head impacted with the head of a small nail sticking out of a bulletin board ()
## 5154                                                                                                                                                                                           EE was bending over when he lost his balance and hit his head on the wall
## 5155                                                                                                                                                                                 EE was bending to pick something up and hit head on sharp object as she was bending
## 5156                                                                                                                                                             EE was bending to retrieve supplies when she stoodup she struck the lt side of her face with the locker
## 5157                                                                                                                                        EE was bending under a vehicle to try to force a snake out from under it and struck his head on the mirror when he raised up
## 5158                                                                                                                                                                     EE was bent down putting papers in file cabinet, raised up hitting head on hanging bookshelf ()
## 5159                                                                                                                                                 EE was bent down to empty pan that patient was soaking feet in, when she came up her badge hit her in her right eye
## 5160                                                                                                                                                                   EE was bent over picking up horses leg and horse kicked EE into xray tube causing injury to head.
## 5161                                                                                                                                    EE was bent over to get dust pan from the storage area, cabinet door came open as she raised up she struck her head on the door.
## 5162                                                                                                                              EE was between wall & steam pipes feeding welding leads from basement of power plant up to outside, turned & hit head on valve handle.
## 5163                                                                                                                                                                                     EE was biking along trail with four clients and eegot stung by a yellow jacket.
## 5164                                                                                                                          EE was binding cedar siding to top of truck to transport to another work site when the straps came loose striking EE in the mouth/lip area
## 5165                                                                                                                                                                                                    EE was bit by a full container of silverware thrown by a client.
## 5166                                                                                                                                                    EE was bitten by tick while weeding and working with plant labels in herb garden. Lower rt side of back of head.
## 5167                                                                                                                                                                                                                  EE was bitten on the forehead by an unknown insect
## 5168                                                                                                                                    EE was bitten something he was on firing range. Face was swollen and place keeps getting bigger. Insect bite on rt side of face.
## 5169                                                                                                                                                                                                                                    EE was bitten/stung by insect ()
## 5170                                                                                                                                           EE was bleeding the fuel system on the tractor when the bleeder bolt sheered off, causing diesel to spray into EE's eyes.
## 5171                                                                                                               EE was blocking doorway entrance to alpha buildingafter confrontation between officers & inmate whensomeone threw basketball & struck her in head/jaw
## 5172                                                                                                                                                                                                             EE was blowing and trimming when ??? Right ear infected
## 5173                                                                                                                                                                                             EE was blowing dust off water tank when debris flew into EE's left eye.
## 5174                                                                                                                   EE was blowing leaves in a small tight area & the ac units were blowing the leaves all around. EE was working around units and dust got into eye.
## 5175                                                                                                                                                EE was blowing leaves w/a leaf blower the strap broke, EE tripped and fell and the blower hit the front of EE mouth.
## 5176                                                                                                                                                                EE was blowing leaves w/leaf blower and debris flew under EE's goggles causing irritation to rt eye.
## 5177                                                                                                                                                                                              EE was blowing leaves when wind swirled debris around and into eye. ()
## 5178                                                                                                                                                                                                              EE was blowing pinestraw when dust got into his eye ()
## 5179                                                                                                                                                                                       EE was blowing pinestraw when winds blew airborne debris into her left eye ()
## 5180                                                                                                                                         EE was breaking a fight and got hit in the eye and hurt shoulder. Clmt cell ph#828-776-0404 **salary continuance employee**
## 5181                                                                                                                                                  EE was breaking a piece of plastic into small pieces for the trash and a piece flew up and scratched EE in rt eye.
## 5182                                                                                                                                                     EE was breaking down boxes for recycling, was struck in eye by corner of box lid while lifting a stack of boxes
## 5183                                                                                                                                                                                                 EE was breaking off bush branches when a piece flew into her eye ()
## 5184                                                                                                                                       EE was breaking up a dispute between two clients and was hit in the eye by a grilled chicken sandwich by one of the patients.
## 5185                                                                                                                                                                                                 EE was breaking up a fight and was hit on the leftside of the head.
## 5186                                                                                                                                                                                  EE was breaking up a fight between student when he was struck in the face/rt cheek
## 5187                                                                                                                     EE was breaking up a fight between two inmates andwhile trying to handcuff one of the inmates EE washit in the eye by one of the inmates elbow.
## 5188                                                                                                                                                                                                       EE was breaking up fight and inmate struck him with his fist.
## 5189                                                                                                                                                 EE was breaking up fight between two students and EE fell to the floor and hit lt side of her face glass partition.
## 5190                                                                                                                           EE was breaking up fight when EE hit his head on the side of metal television stand cutting his lt side of head, temple area and eyebrow.
## 5191                                                                                                                        EE was bring equipment to recovery stall another EE was holding a door slat. When she picked up slat to place in door she hit me on the head
## 5192                                                                                                                                                                               EE was brushing EE's teeth and- client spit in EE's rt eye. Urgent care for lab work.
## 5193                                                                                                                                                                                                     EE was brushing boiler tubes and dust got behind safety glasses
## 5194                                                                                                                                                                                                             EE was brushing clients gums-saliva blew into EE'seyes.
## 5195                                                                                                                                     EE was brushing teeth when an employee's father broke in the door to EE's house and hit EE in the mouth for fireing his son. ()
## 5196                                                                                                                                                                                                      EE was brushing trash off of cabinet and got trash in left eye
## 5197                                                                                                                                                                          EE was buffing hallway floor and walked into a a stairwell metal beam and bumped his head.
## 5198                                                                                                                                EE was buffing racquetball floors and tripped overthe cord and the buffer hit him in the forehead between eyes cutting his forehead.
## 5199                                                                                                                                                                                       EE was bush hogging the field and got too close to tree limb-struck hi rt eye
## 5200                                                                                                                                                                EE was bushhogging on tractor when a limb came back and knocked goggles off and hit him in the l eye
## 5201                                                                                                               EE was called in to the campus to settle disruptivstudents & as he entered the dayroom, he was struckwith a wooden handle brush and chair by students
## 5202                                                                                                                       EE was calling a student teacher and just as he was about to hang up he heard someone answer the phone phone hit EE's tooth and broke it off.
## 5203                                                                                                                       EE was caring for female resident and asked her toclean out her locker and EE walked away and threwa lock and hit EE in the back of the head.
## 5204                                                                                                                                                                  EE was carring a bottle of vesphene spray the nozzle was struck and the spray went into EE lt eye.
## 5205                                                                                                                                                            EE was carring glass racks from the dish room and slipped on freshly mopped floor and was non responsive
## 5206                                                                                                                                                                             EE was carring materials from library to another building when she stung in the lt eye.
## 5207                                                                                                                                                                                                           EE was carrying ??? Down steps when he fell over a chair.
## 5208                                                                                                                                                                        EE was carrying a computer table to another room and hit another table that was in the hall.
## 5209                                                                                                                                                               EE was carrying a hand truck down the stairs and it got out-of control and it struck EE in the mouth.
## 5210                                                                                                                      EE was carrying a large box into office. As he pushed the door to the district office open it swung back striking him. The glass broke on arm.
## 5211                                                                                                                                                           EE was carrying ceiling grid down stairs, wiped his left eye, felt sharp feeling and now eye is sensitive
## 5212                                                                                                                                                                                   EE was carrying large box to recycling bin and corner of the box struck right eye
## 5213                                                                                                                                                                                   EE was carrying materials under pipes in a me roomlifted up and pipe busted head.
## 5214                                                                                                                                                         EE was carrying out a behaviour program on client when he was struck in the left eye with client's fingers.
## 5215                                                                                                                       EE was carrying picnic table to place on trailer and when EE bent down and stood back up he struck his head on the table and noted back pian.
## 5216                                                                                                                                                                                EE was catching student during trust fall and student accidently hit EE in the mouth
## 5217                                                                                                                                                                                                   EE was catherizing maile patient, when blood squirted in her eye.
## 5218                                                                                                                 EE was center punching tile preparing to drill. Piece of tile came in contact with his left eye. Eyeflushed with solution by object would not move.
## 5219                                                                                                                          EE was changing a neon light bulb when it broke, a small piece got in his eye glasses. Eye was irrit-taed and felt like glass still in it.
## 5220                                                                                                                                                       EE was changing ac filters in residence hall when ac unit fell & struck him in rt temple. Referred to glenda.
## 5221                                                                                                                                                                                               EE was changing air filters & cut rt ear on cotterpin on air handler.
## 5222                                                                                                                                                                            EE was changing air filters and transom over the door fell and hit Mr Dennis on the head
## 5223                                                                                                                                                                                                 EE was changing animal cages - possible sporklenz - exposure rt eye
## 5224                                                                                                                                                                        EE was changing bleach injector in pool when bleach splased in eyes. Chemical conjunctivitis
## 5225                                                                                                                                      EE was changing bottle of chemical and got new bottel in holder, some of the chemical splashed in eyes. Chemical burn in eyes.
## 5226                                                                                                                                                  EE was changing ceiling tile and when he removed his hat and glasses for lunch he got a piece of debris in his eye
## 5227                                                                                                                                                                 EE was changing chemical in despenser in potroom when the lid slipped causing it to splash in eyes.
## 5228                                                                                                                                                                        EE was changing client and client hit EE in the head 2x, EE has a history of recent strokes.
## 5229                                                                                                                                                  EE was changing client-client kicked EE under the jaw-jarring teeth together-chipped/loosened crown (frony teeth).
## 5230                                                                                                                                                                                                           EE was changing light bulb nad something fell intort eye.
## 5231                                                                                                                                                                              EE was changing light bulbs and fixture fell and hit him in top of head leaving a cut.
## 5232                                                                                                                                                                                                      EE was changing light bulbs when an object fell into left eye.
## 5233                                                                                                                                                                     EE was changing light tube and was putting tubes broken causing fragment to enter into left eye
## 5234                                                                                                                                               EE was changing light with metal grate cover, cover fell and tube broke cutting over right eye. Cut over right eyelid
## 5235                                                                                                                                                                                           EE was changing mouse cages when some of the sterilant splash in her eyes
## 5236                                                                                                                                              EE was changing patients soiled clothes when patient pulled away causing feces to spray in EE face, eyes, and clothes.
## 5237                                                                                                                                                                   EE was changing resident in bathroom when resident accidently hie her in the eye with a shoe hel.
## 5238                                                                                                                                                                                   EE was changing residents clothes when all of a sudden, he hit her on the lips ()
## 5239                                                                                                                                                                        EE was changing tire on lawn mower when tire iron slipped from hand striking EE in the mouth
## 5240                                                                                                                                                                     EE was chasing a juvenile that ran out of the hospital and fell striking her head and shoulder,
## 5241                                                                                                                                                                              EE was chasing a suspect through the woods when he was struck in rt eye by a tree limb
## 5242                                                                                                                  EE was chasing client with a warrant for arrest. A piece of left over clothes line wire struck his head just above right eye. Required 3 stitches.
## 5243                                                                                                                                                                     EE was chasing resident into bathroom and slipped and fell on the floor. Injured head and hand.
## 5244                                                                                                                                             EE was checking a brasing pan lifted the lid up tocheck on the sauce, sauce popped up and hit her inthe face and chest.
## 5245                                                                                                                                                                 EE was checking client to see if they needed changing, client struck EE on the rt side of the face.
## 5246                                                                                                                  EE was checking curfews in the eden area she was stopped at a stop light with vehicle in front of her she hit other vehicle causing injury to head
## 5247                                                                                                                                                                               EE was checking driver license the wind blew & a foreign object got into EE's rt eye.
## 5248                                                                                                                                                                                             EE was checking fire extinguisher and exploded in face irritating eyes.
## 5249                                                                                                                                                                                EE was checking for trash and vent fell and hit EE in the mouth and chipped a tooth.
## 5250                                                                                                                                                                                                               EE was checking heat valves and got dust in both eyes
## 5251                                                                                                                                                                                                    EE was checking lockers and one opened up and hit EE the rt eye.
## 5252                                                                                                                                                  EE was checking mileage log on transfer bus when he opened the door when the lock has struck him in the right eye.
## 5253                                                                                                                          EE was checking off inventory of items on truck, wind blew door striking EE on left side of head knocking glasses off, and grit his teeth.
## 5254                                                                                                               EE was checking on inmate, inmate jumped off bunk striking EE w/ closed fist to mouth, sustained 2 broken teeth and a laceration to upper & lower lip
## 5255                                                                                                                                                                                            EE was checking on tree planting job and some- thing flew into left ear.
## 5256                                                                                                                                                                                            EE was checking out circuit on gas and oven door fell and hit EE on head
## 5257                                                                                           EE was checking pt to get vital signs. EE asked the pt's mother to hold one leg while EE held the other. Pt's mom let go of leg and pt kicked EE in left side of face. ()
## 5258                                                                                                                     EE was checking road side duties for inmates an inmate fell trying to break his fall and hand hit the fire extinguisher and chemicals came out.
## 5259                                                                                                                                                                                                             EE was checking students for head lice and was infested
## 5260                                                                                                                               EE was checking the temperature gauge on steam ketshe was bending down and as she was raising up theinmate opened up the steamer door
## 5261                                                                                                                                                                      EE was checking to see if the client soiled and the client hit him the right eye with his fist
## 5262                                                                                                                                                                EE was checking to see whether the dam was draining properly and got hit in the eye with tree branch
## 5263                                                                                                                                                                               EE was checking trash when ac vent flap fell and struck EE in the face chipping tooth
## 5264                                                                                                                                             EE was checking under inmates mattress when inmate struck him in the jaw. Then hit several times when trying to get up.
## 5265                                                                                                                                                                                                            EE was checking wind speed and dirt blew into right eye.
## 5266                                                                                                                                                                                                                    EE was chipping plaster. Trash got in right eye.
## 5267                                                                                                                                                                    EE was cleaining a piece of mat & flipping it overto rinse it when it struck EE in the left eye.
## 5268                                                                                                                                                                                         EE was cleaning a cat pen-went to get liter box and cat clawed EE on rt lip
## 5269                                                                                                                                                                              EE was cleaning a coffin when the door from the coffin above fell and hit EE's head ()
## 5270                                                                                                                                                                                                  EE was cleaning a rack when dust ran down into hiseye... Right eye
## 5271                                                                                                                                                                                                             EE was cleaning a restroom and hit head on a stalldoor.
## 5272                                                                                                                                                                                                              EE was cleaning a school and exposure got into EE eye.
## 5273                                                                                                                                                                                                                    EE was cleaning a shed & debris fell in his eye.
## 5274                                                                                                                                 EE was cleaning a shower curtain using a brush andcleaning solution, curtain slipped out of hand spraying the solution in left eye.
## 5275                                                                                                                                          EE was cleaning a shower with a wet ceiling when wood and sheetrock debris fell on her head and shoulders. Minor contusion
## 5276                                                                                                                                                                          EE was cleaning a stain off of microscope when etoh got on face and rolled into his rt eye
## 5277                                                                                                                                                                           EE was cleaning a sutured area when the solution that she was using splashed into her eye
## 5278                                                                                                                                                         EE was cleaning a whiteboard, when she sprayed the cleaner the nozzle was backwards and it sprayed her eyes
## 5279                                                                                                                                                                      EE was cleaning an overhead light fixture when some to the dust particles flew into her lt eye
## 5280                                                                                                                                                                                EE was cleaning and feeding animals, touched rt. Eye and it began to itch and water.
## 5281                                                                                                                                                                                                                 EE was cleaning and some endust got into EE's eyes.
## 5282                                                                                                                                                                                                                  EE was cleaning and something splashed in EE's eye
## 5283                                                                                                                                       EE was cleaning bathroom stall-bent over to pick up paper when someone pushed the door causing EE head to hit metal dispenser
## 5284                                                                                                               EE was cleaning bathroom walls with all purpose cleaner, & over srpay, must have been on his shirt sleeve, when he wiped his face with his right.. ..
## 5285                                                                                                                                                                                                        EE was cleaning bathroom when chemical fell in her right eye
## 5286                                                                                                                                                                                                 EE was cleaning bathroom, when water w/chemicals splashed into eyes
## 5287                                                                                                                                                                                       EE was cleaning bathroom-chemical got on floor EE slipped and fell on rt side
## 5288                                                                                                                                                                                       EE was cleaning bathrooms with omega cleaner and spray mist got into her eyes
## 5289                                                                                                                                                                                                                 EE was cleaning bathrooms, chemicals got in eyes ()
## 5290                                                                                                                                       EE was cleaning bathtub using bleach and the top came off and the bleach splattered into eyes. The top was secured on bleach.
## 5291                                                                                                                                                EE was cleaning bldg after fire; pressure hose caused a particle of debris to fly into his eye scratching his cornea
## 5292                                                                                                                                                                                                      EE was cleaning blinds, dust/debris got into her right eye. ()
## 5293                                                                                                                                                                                                                  EE was cleaning brush when a stick got in left eye
## 5294                                                                                                                                                                       EE was cleaning cell when pt got up and when instructed to sit down struck EE w/ fist on chin
## 5295                                                                                                                                                                     EE was cleaning classroom and sprayed chemical on desk. Later, EE developed severe headache. ()
## 5296                                                                                                                                                                                    EE was cleaning classroom when she struck the left side of her head on a cabinet
## 5297                                                                                                                                    EE was cleaning classroom-emptied cardboard box of trash into a plastic bag corner (flap)on box hit in right eye cutting cornea.
## 5298                                                                                                                                                                                               EE was cleaning commode lid and cleaner splashed in both of her eyes.
## 5299                                                                                                                                     EE was cleaning commode with cleaning solution when she poured the solution into the commode some of it splashed into EE lt eye
## 5300                                                                                                                                                                                         EE was cleaning computer using pressurized air can, felt pain in right eye.
## 5301                                                                                                                         EE was cleaning cottage and wiped down drink mach-ine, someone left clorox and water sitting on top, EE spilled it in his eyes and clothes.
## 5302                                                                                                                                                   EE was cleaning debris behind feed mill. EE was waling under auger when he struck heat on clamp. Scalp laceration
## 5303                                                                                                                                                                                      EE was cleaning deep fryers when hose on filteringbroke causing burn to rt eye
## 5304                                                                                                                                                                                     EE was cleaning desk with bleach when some accidentally sprayed into his lt eye
## 5305                                                                                                                                                             EE was cleaning dorm with acid cleaner when some of the cleaner splashed on his face, neck, and glasses
## 5306                                                                                                                                EE was cleaning down near the pool, EE stood up suddenly and hit head on the overhanging roof of the pump-house, gashing top of head
## 5307                                                                                                                                                          EE was cleaning drink machine when someone left clorox on top. The clorox spilled on EE injurying his eyes
## 5308                                                                                                                                                             EE was cleaning dry easer board with liquid, bottle turned in wrong direction, spray directly into eyes
## 5309                                                                                                                                                                                                                                EE was cleaning dumpser and hit head
## 5310                                                                                                                               EE was cleaning entry door, when she came back around from outside, she ran into the door, hitting her head above the eye and r elbow
## 5311                                                                                                                                                                                                   EE was cleaning floor with chemicals and they got in her eyes. ()
## 5312                                                                                                                            EE was cleaning floors when he slipped on the wet floor and hit his chin on the buffer machine handlhe was operating to clean the floor.
## 5313                                                                                                                                                                      EE was cleaning heating wells on the serving line and some chemical splashed into EE's rt eye.
## 5314                                                                                                                                                                                                              EE was cleaning her area and got chemicals in left eye
## 5315                                                                                                                                                                           EE was cleaning her stairwells and stood up underneath a chase pipe, hitting her head. ()
## 5316                                                                                                                                                                                               EE was cleaning marker board and accidently sprayed cleaner in rt eye
## 5317                                                                                                                                                                   EE was cleaning mirror & toilet when eye began to itch. EE wiped eye w/hand he was cleaning with.
## 5318                                                                                     EE was cleaning out a backed up sewer line with a snake at single cell b. The cable of auger machine got stuck causing it to wrap up. This threw sewage on body and in eyes. ()
## 5319                                                                                                               EE was cleaning out advance floor machine (batterycompartment). Removed safety glasses. EE used rag used to clean machine and got liquid in right eye
## 5320                                                                                                                                                                                        EE was cleaning out brushes with paint thinner and splashed some in her eyes
## 5321                                                                                                                                                          EE was cleaning out from underneath tractor and drilling hole for wire placement, debri fell in right eye.
## 5322                                                                                                                                                                                       EE was cleaning out lint tray on dryer-fan blew lint back into EE's left eye.
## 5323                                                                                                                                                                                                    EE was cleaning out the bed of a truck and struck EE in the eye.
## 5324                                                                                                                                                                   EE was cleaning packing deck with back pack bloweron stairs of deck lost footing fell down steps.
## 5325                                                                                                                                EE was cleaning patient because diaper was wet. When patient struck EE in the left jaw causing a piece of tooth filling to come out.
## 5326                                                                                                                                                            EE was cleaning pig room when pig ran between EE'slegs & knocked EE into wall causing bruise to forehead
## 5327                                                                                                                                                                                               EE was cleaning restroom fixtures when eyes started to itch and burn.
## 5328                                                                                                                                                                         EE was cleaning restroom when EE turned around and head. Contusion of face, scalp, and neck
## 5329                                                                                                                                                                                  EE was cleaning restroom, bent down to pick up paper, hit head on paper towel rack
## 5330                                                                                              EE was cleaning room 207 in scott hall. She pulled the desk out of the way and the shelf fell towards her eye and put a cut and bump in the left corner of her eye. ()
## 5331                                                                                                                                                     EE was cleaning screen in window-closing the window to keep radio from falling when antenna hit EE the left eye
## 5332                                                                                                                                                                                            EE was cleaning shop removing old equpment and debris flew into left eye
## 5333                                                                                                                                                                                                               EE was cleaning shower and chemical fell in left eye.
## 5334                                                                                                                                                                                                      EE was cleaning shower and cleaning product got into EE's eye.
## 5335                                                                                                                                                                                     EE was cleaning shower and raised her head and hit shower handle. Back of head.
## 5336                                                                                                                                                                                                 EE was cleaning shower and slipped and fell and hurt her right jaw.
## 5337                                                                                                                                                                                                       EE was cleaning shower and slipped and fell hurt her lt side.
## 5338                                                                                                                                                                              EE was cleaning shower curtain, sprayed bleach cleaner on it and got bleach in her eye
## 5339                                                                                                                                                                                              EE was cleaning shower curtain-residue got into rt eye while cleaning.
## 5340                                                                                                                                                                                                                       EE was cleaning shower stall and bumped head.
## 5341                                                                                                                                                                                                EE was cleaning shower with brillo and stripper splashed in left eye
## 5342                                                                                                                                                                                   EE was cleaning shower; the chemical that she was spraying went into her left eye
## 5343                                                                                                                                                                             EE was cleaning sink and soap container fell off the wall hitting EE in eye and throat.
## 5344                                                                                                                             EE was cleaning sink lab with detergent & clorox clean-up with sponge & while scrubbing liquid, it splattered on her face. Used gloves.
## 5345                                                                                                                                                                                                          EE was cleaning sink when something splashed in her eye ()
## 5346                                                                                                                                                                                  EE was cleaning sink with chemicals and water splashed in right eye w/chemicals ()
## 5347                                                                                                                                      EE was cleaning sinks in rest room, when sitting bucket w/ solution on counter top it hit counter and splashed in EE left eye.
## 5348                                                                                                                                                                                                     EE was cleaning stall and accidently got disinfectant in lt eye
## 5349                                                                                                                                                                                     EE was cleaning swing for pt to get on, pt got upset, hitting EE in the head ()
## 5350                                                                                                                                                                       EE was cleaning tank and water that contained detergent splashed up into EE's eye's and face.
## 5351                                                                                                                        EE was cleaning telecommunications office carrying bottles of solution in pockets, bottle fell out and struck floor, solution splashed in fa
## 5352                                                                                                                              EE was cleaning the 1st fl bathroom and was trying to weing the mop out when lt hand slipped off handle causing head to hit mop bucket
## 5353                                                                                                                                              EE was cleaning the baseboard and as she moved along she struck her head on light fixture causin an injury to her head
## 5354                                                                                                                                                          EE was cleaning the bathroom and bumped the cleaner into the basin and the cleaner splattered into EE eye.
## 5355                                                                                                                                                                                               EE was cleaning the bathroom when 910 chemical splashed in her lt eye
## 5356                                                                                                                                                                              EE was cleaning the ceiling vents when particals fell into both eyes causing infection
## 5357                                                                                                                                 EE was cleaning the distilled water with her colleagues. They used 10% hydrochloric acid and the liquid flashed to her left eye. ()
## 5358                                                                                                                                                                                                 EE was cleaning the hot roller when a substance splashed in rt eye.
## 5359                                                                                                                                                       EE was cleaning the housing unit and whiped his right eye with the back of his hand causing injuryto his eye.
## 5360                                                                                                                                                                                       EE was cleaning the shop area and some type of foreign matter got in his eye.
## 5361                                                                                                                                                       EE was cleaning the shower walls the doodlebug flipped back, resulting in chemicals splashing into both eyes.
## 5362                                                                                                                                                                 EE was cleaning the shower when she slipped and fell on floor striking head, rt shoudler, and elbow
## 5363                                                                                                                                             EE was cleaning the tennis courts when she was struck in the left eye with a tennis ball, causinga facial/eye contusion
## 5364                                                                                                                                                   EE was cleaning the urinal and when she was getting the excess water out of the swap mop, it splashed in her eye.
## 5365                                                                                                              EE was cleaning the walls w/ expose 256 and glancewhen cleaning stairway she sprayed the expose 256 and it flew back in her face causing eye swelling.
## 5366                                                                                                                                                                                      EE was cleaning trophy case when she hit her head on the trophy case shelf. ()
## 5367                                                                                                                                                                                                      EE was cleaning tub and cleaning agent splashed into her eyes.
## 5368                                                                                                                                                                      EE was cleaning underneath the bleachers and walked into a steel beam hitting her forehead. ()
## 5369                                                                                                                                 EE was cleaning up after meals, when she opened a cabinet that a ladder was leaning on. Ladder fell and hit her on lt side of head.
## 5370                                                                                                                                                              EE was cleaning up bathroom when cleaning chemicalsplashed in left eye causing discomfort in left eye.
## 5371                                                                                                                                                              EE was cleaning up debris on grounds folliwng hurrican charley. EE picked up pine needles stuck in eye
## 5372                                                                                                                                                                                               EE was cleaning up stool and splashed cleaner in eye. Vision affected
## 5373                                                                                                                             EE was cleaning up the shop area outside, when he moved a table top a car bumper fell and hit him inthe nose causing a cut on his nose.
## 5374                                                                                                                              EE was cleaning urinal which had cleaning chemicals in the water; when urinal was flushed water and chemicals splashed in his left eye
## 5375                                                                                                                         EE was cleaning using chemical and hot water. EE took face mask off and lid on chemical fell off causing chemical to splash into EE's face.
## 5376                                                                                                                                                                                                      EE was cleaning uver head duct nad something fell into rt eye.
## 5377                                                                                                                                                                                                                   EE was cleaning wall and splashed chemical in eye
## 5378                                                                                                                         EE was cleaning wheelchair. When she went to pump hand sanitizer to wash hands a stream of alpet came out sideways and hit EE in both eyes.
## 5379                                                                                                                                                                                             EE was cleaning window with small brush and water splashed in right eye
## 5380                                                                                                              EE was cleaning with a disinfectant wipe and some of the liquid from the wipe plung off when trying to dispense and liquid got into EE's right eye. ()
## 5381                                                                                                                                                                           EE was cleaning with cleaning solutions when some of the solution splashed into EE rt eye
## 5382                                                                                                                                                                                              EE was cleaning with degreaer spray bottle and fluid got into EE's eye
## 5383                                                                                                                                                                                                        EE was cleaning yard and was bitten by and insect on the lip
## 5384                                                                                                                                   EE was cleaning--sweeping/dusting/blowing dirt outof machines--debris flew into right eye-- eye is red/irritated/feels discomfort
## 5385                                                                                                                                                                                  EE was cleaning/mopping the bottom floor and accidently hit his head on the stairs
## 5386                                                                                                                                                              EE was clearing debris and placing it in dumpster and was struck by loose piece of lumber in forehead.
## 5387                                                                                                                                               EE was clearing debris from an overhead glass drain line when an expected surge of water ran from the pipe soaking EE
## 5388                                                                                                                                                                                       EE was clearing off shelf and cookie tin fell off and struck EE in the mouth.
## 5389                                                                                                                                                                                          EE was clearing trees and came into contact with poison ivy. Eyes swollen.
## 5390                                                                                                                                                                                                 EE was climbing ladder in capital building and struck head on pipe.
## 5391                                                                                                                                                                  EE was climbing ladder on roof on kenan lab hit top of head on concrete overhang above the ladder.
## 5392                                                                                                                                                                     EE was climbing ladder with water hose, hose discharged and spray caused debris to enter eye ()
## 5393                                                                                                                                                                            EE was climbing onto a trailer and hit his head on the metal seat of the 4th row planter
## 5394                                                                                                                                                                                               EE was climbing river bank and was hit in the eye with vegetation. ()
## 5395                                                                                                                                                               EE was closing a locker when an air pack from the top of the locker fell and struck EE on top of head
## 5396                                                                                                                                          EE was closing blinds at the end of the school day when an object fell out of the blinds into lt eye scratching cutting it
## 5397                                                                                                                                                                                                         EE was closing locker (bottom) stood up head hit top locker
## 5398                                                                                                                                                                                     EE was closing perimeter gate. Struck edge of car door with left side of cheek.
## 5399                                                                                                                                                                 EE was closing south yard when he was struck in eye by rock thrown by an inmate. Injury to left eye
## 5400                                                                                                                                                                   EE was closing the house when he fell down the staircase, hurting his left arm, left knee, & head
## 5401                                                                                                                                                                                                             EE was closing up shop when something fell into rt eye.
## 5402                                                                                                                                                                                              EE was coducting fire drill, holding the door and was stung by a wasp.
## 5403                                                                                                                 EE was coming down hill with a client and fell on some ice hitting head on the bumper of a parked truck and getting rt shoulder stuck under bumper.
## 5404                                                                                                                                                                   EE was coming from lunch and slipped on floor on rt side and hit head in front of student lounge.
## 5405                                                                                                                                                                                    EE was coming from under air handler and struck head on valve laceration to head
## 5406                                                                                                                                                                                                     EE was coming in to work open the door and slip on the floor ()
## 5407                                                                                                                                EE was coming into work and slipped on ice coveredparking lot hitting her head on the pavement. Also caused injury to left eye area.
## 5408                                                                                                                                                                           EE was coming out of dining area when client ran into her and their heads hit each other.
## 5409                                                                                                                                           EE was coming out of door and student was on otherside. Student pushed door and door came back and struck EE in the face.
## 5410                                                                                                                             EE was coming out of dorm when inmate cleaning desk dropped bottle of bleach. It splashed in EE'seye. Sent to med where eye was washed.
## 5411                                                                                                                                                        EE was coming out of the break room and felt faintand reached for the wall and hit brick wall with forehead.
## 5412                                                                                                                                                                           EE was coming out of the restroom and walked head on into a student..... Injured her nose
## 5413                                                                                                                                       EE was coming out ot the bathroom when she trippedover some pipes on the floor falling hitting head on corner of cement door.
## 5414                                                                                                                                                          EE was coming out the doorway when he struck his head on the door. ***EE is a hemophiliac *******meds high
## 5415                                                                                                                                                                        EE was coming out with a client from bathroom another staff; open door and hit side at face.
## 5416                                                                                                                                                                     EE was coming through the door & the door was loose & swung back hitting the side of EE's head.
## 5417                                                                                                                                                                        EE was complaining of severe headache possibly caused from smoke inhaltion from earlier fire
## 5418                                                                       EE was conducting 1:1 supervision of phone call. Patient would not put phone (call) on speaker, became violent then started attacking EE. Scratching & punching EE in the face & (rt) eye. ()
## 5419                                                                                                                                                       EE was conducting a cell search while in training and bumped her head on the bunk. Injury to top side of head
## 5420                                                                                                                    EE was conducting a check on a inmate that was kicking her cell, when she approached the cell &told her not to kick cell inmate spat in EE's eye
## 5421                                                                                                                                                       EE was conducting a cvsa inspection and stood from a kneeling position and struck head on the door of vehicle
## 5422                                                                                                                                                     EE was conducting a home visit of an offender when he entered the offender home a parrott bit him on the rt ear
## 5423                                                                                                                            EE was conducting a locker search in dorm reaching down to search the bottom of the locker he stuck his rt temple against the shirt hook
## 5424                                                                                                              EE was conducting a read a roo prize patrol visit at a school in durham. EE received a chemical burn to both eyes while wearing costume as she sweated
## 5425                                                                                                               EE was conducting a routine office visit in his office. Close proximity to the offender for 30 minsand in the morning offender told EE he had pink ey
## 5426                                                                                                            EE was conducting a search of assailant's vehicle. EE discovered concealed handgun. Assailant attackedee by striking him with is hands and fists in face
## 5427                                                                                                              EE was conducting a shakedown left unit & stopped to use restroom, as EE walked off bus his foreheadhit the overhead of the bus. Injured top forehead.
## 5428                                                                                                                                                                                    EE was conducting a survey of lab on campus. Branch from a tree poked right eye.
## 5429                                                                                                                EE was conducting a timber exam in a wooded area in yancey county while walking uphill in a steep place. He got struck in the left ear by a branch..
## 5430                                                                                                                                                                                               EE was conducting a traffic stop and was struck from behind by a van.
## 5431                                                                                                                         EE was conducting a wildlife survey. EE was walking through woods & turned around to change direction, a tree limb stuck him in the eye. ()
## 5432                                                                                                                                                                                    EE was conducting an interview & picked up & drankfrom the wrong soft drink can.
## 5433                                                                                                                            EE was conducting canine search. While searching EE walked around suspect vehicle & was cut on headby rolled razor wire on top of fence.
## 5434                                                                                                                      EE was conducting count of inmates when he held up a piece of paper to shield his eyes from the light glare when the paper hit him in the eye.
## 5435                                                                                                                                                                               EE was conducting locker search. Inmate threw bar of soap and hit him in back of head
## 5436                                                                                                                                              EE was conducting pat search on a inmate at the gate when he bent down the inmate accidentally poked him in his rt eye
## 5437                                                                                                                                         EE was conducting search underneath sink, raised up from search hit top of head on bottom of sink. Injured rt side of head.
## 5438                                                                                                                                                                                         EE was conducting session and was hit in the eye from behind by a resident.
## 5439                                                                EE was conducting training on breeching doors with a battering ram when the ram struck the edge of the steel door frame, cart wheeling the ram out of control and into the right side of his head ()
## 5440                                                                                                                                                                     EE was confronted by patient about points and patient attacked EE striking EE twice in the head
## 5441                                                                                                                                                                    EE was controlling a fire and the heat & smoke wasso intense that his eyes dried out and pitted.
## 5442                                                                                                                                                                                                              EE was cooking on the grill and burned face and hands.
## 5443                                                                                                                                                               EE was counseling a pt, EE asked pt to sit up, pt stood up began hitting EE in head, neck and back ()
## 5444                                                                                                                                                                  EE was counseling a student and was assaulted by the student. Injury to left side of face near eye
## 5445                                                                                                                           EE was counseling inmate through the open trap door. Inmate became hostile, reached through the door and slapped EE in mouth, cutting lip
## 5446                                                                                                                                                                                EE was counseling inmate when inmate became upset & hit EE in mouth busting his lip.
## 5447                                                                                                                        EE was counseling juvenile and attempted to escortjuvenile assaulted staff- striking EE in mouth strained shoulder while restraining student
## 5448                                                                                                                                                                          EE was counseling out of control student when student struck EE in the nose with his fist.
## 5449                                                                                                              EE was counting pills, opened a new box of naproxyn and smoke, powder, and debris flew into her right eye. She washed it out with water, but it itched
## 5450                                                                                                                         EE was counting the inmates in the day room an inmate bumped into her and she directed inmate to their cell and inmate hit EE in the mouth.
## 5451                                                                                                                                                                  EE was covering a truck load of mulch with bungy cord, cord ripped hitting EE in upper right cheek
## 5452                                                                                                                                         EE was crawling through some vegetation to get into position for surveillance of a drug house. EE got something in his eye.
## 5453                                                                                                                                                                        EE was crossing canal when tractor broke overbeam and EE was thrown forward and struck head.
## 5454                                                                                                                EE was crossing in front elevators to parking deckand caught lt foot in rip carpeting, fall hitting lt side of head, face and knee on concrete floor
## 5455                                                                                                                                                                                         EE was crushing medication and the dust from medication went into both eyes
## 5456                                                                                                                                                                                                                     EE was cut on head while crawling in the attic.
## 5457                                                                                                                                            EE was cut on lt cheek area of his face by an inmate with homemade knife as he was conducting a routine cellblock check.
## 5458                                                                                                                                                                                                                                    EE was cut on the head by a vent
## 5459                                                                                                                                                                                                                            EE was cutting a bird feeder. Eye injury
## 5460                                                                                                                                                              EE was cutting a fiberglass cast off a patient when a piece of fiberglass flew into EE's right eye. ()
## 5461                                                                                                                                                             EE was cutting a metal band with a portable grinder, metal fragment flew under safety glasses in lt eye
## 5462                                                                                                                                                          EE was cutting a piece of aluminum block when he was struck; lacerations and bruising around left eye area
## 5463                                                                                                                                                                                                     EE was cutting a piece of metal when a piece got into EE's eye.
## 5464                                                                                                                                                                                              EE was cutting a piece of metal when a piece went into his eye; rt eye
## 5465                                                                                                                                                                                           EE was cutting a ppiece of pipe and a piece of foreign body got into eye.
## 5466                                                                                                                                                                  EE was cutting a tree limb, which had fallen and a limb came back and struck him and the left eye.
## 5467                                                                                                                                                       EE was cutting and fitting brick when he noticed something in his eye. Was wearing safety glasses. Right eye.
## 5468                                                                                                                                                                                               EE was cutting and grinding and got a small piece of debris in lt eye
## 5469                                                                                                                                                                               EE was cutting down tree when a wedge from the tree flew back & hit him in the mouth.
## 5470                                                                                                                                                                                 EE was cutting dss for resident to make swallow easy. Medication splashed in r eye.
## 5471                                                                                                                     EE was cutting filter down to appropriate size, even though he was wearing safety glasses a piece of filter flew into eye and scratched cornea.
## 5472                                                                                                                                                                                                          EE was cutting grass in the wind had on safety glasses on.
## 5473                                                                                                                                                                                               EE was cutting grass when his eyes began to water.. Red and irritated
## 5474                                                                                                                                                                                                       EE was cutting grass with lawn mower and grass blew into eyes
## 5475                                                                                                                                                                                                       EE was cutting into a foam when foreign body went into rt eye
## 5476                                                                                                                              EE was cutting keyes for customer, removed safety glasses and handed keyes to customer. He then rubbed his eye and scratched right eye
## 5477                                                                                                                                              EE was cutting metal on well drilling machine whenmetal shaving flew into eye. Did not have on safety glasses at time.
## 5478                                                                                                                                                                                                  EE was cutting metal pipes with saw when shavings went into rt eye
## 5479                                                                                                                                                                                 EE was cutting out metal plate to install electric box metal flew into EE's lt eye.
## 5480                                                                                                                                                                                     EE was cutting plastic trac with hacksaw at floor level. Metal got in right eye
## 5481                                                                                                                                                                                                                 EE was cutting sewer line and got something in eye.
## 5482                                                                                                                                                                                    EE was cutting tree limb with bush axe. Limb flew back and struck EE in left eye
## 5483                                                                                                                                     EE was cutting wood on a table saw when the scrap piece of wood was kicked back by the saw blade, striking him in the mouth. ()
## 5484                                                                                                                                                                    EE was dcoking research boat and stepped back and tripped over a bag that rolled in the transit.
## 5485                                                                                                                                                                              EE was decontaminating cubicle. Had sponge mop on ceiling and it dripped in right eye.
## 5486                                                                                                                                           EE was delivering mail, EE bent down to slid mail undr the door and when he raised up he hit his head on the door handle.
## 5487                                                                                                                      EE was delivering trays to 3rd floor when she got off elevator eniviromental services was dusting eewalked by something flew in her right eye.
## 5488                                                                                                               EE was demonstrating a sting of fire. Firing at a steel target 12 yds away. Copper jac. From bullet ricochet hitting EE just above lt eye on forhead.
## 5489                                                                                                                                                                                 EE was demonstrating steel cutting and a small piece went under glasses into rt eye
## 5490                                                                                                                              EE was demonstrating the inspection of the under- side of a vehicle when something fell into his left eye causing discomfort and pain.
## 5491                                                                                                                      EE was demonstrating use of foot resistance tube with handles around feet-handle slipped off feet and struck EE in the face-laceration to nose
## 5492                                                                                                                                                                    EE was demostrating a ground defense tactic when he strained and busted capillaries in left eye.
## 5493                                                                                                                                                                             EE was diagnosed with conjunctivitis and the cause being exposed to an allergic factor.
## 5494                                                                                                                                                          EE was digging a hole for a gate and hit hisself in the eye with the end of the pot hole diggers. Left eye
## 5495                                                                                                                                                                                                                             EE was digging holes to install sign ()
## 5496                                                                                                                                                                                           EE was directing resident and the resident head butted the EE in the face
## 5497                                                                                                                                                             EE was directing traffic around flood areas, a moving vec. Splashed water in her face dirt got into eye
## 5498                                                                                                                                                        EE was directing traffic at a mobile home crash. During the clean up floating debris lodged in his left eye.
## 5499                                                                                                                                    EE was directing traffic at scene of acciedent. Wrecker pulled vehicle, cable fell and struck EE in face. Eyeglasses were broken
## 5500                                                                                                                                                    EE was directing traffice at a college football game, while using his assigned whistle EE chipped a front tooth.
## 5501                                                                                                                         EE was discussing infraction done by the student and student became aggressive and threw things o the desk and a mug struck EE in the head.
## 5502                                                                                                                                      EE was disinfecting equipment outside of stall when canister attached to hose fell off and product splashed into EE's eyes. ()
## 5503                                                                                                                                                                                      EE was dismantling a booth at the fairgrounds when wind blew debris in his eye
## 5504                                                                                                                                                                                 EE was disposing of broken toilet in dumpster and piece of ceramic went in EE's eye
## 5505                                                                                                                                                                   EE was disposing of old furniture, a sofa caught on dumpster and fell out hitting him on forehead
## 5506                                                                                                                                                                  EE was dissecting a canine eyeball when some of the liquid in eyeball squirted into EE's right eye
## 5507                                                                                                                                          EE was diving and after experienced nausea and dizziness. EE had to go to duke medical ctr and they discoved blood in ear.
## 5508                                                                                                                                                                           EE was diving in animal pool causing ear pain and pressure. Dysfunctional eustachian tube
## 5509                                                                                                                                                                                                         EE was diving into gamefish tanks. Developed ear infection.
## 5510                                                                                                                                                                  EE was doing a protien quarntification she opened an epi tube and solution splashed into her eyes.
## 5511                                                                                                                                                                            EE was doing a tx on resident and the resident kneed in the jaw causing it to slam shut.
## 5512                                                                                                                        EE was doing monthly preventive maintenance of generator and went to start generator when the battery exploded. Hit above the rt eye and eye
## 5513                                                                                                                                                                                  EE was doing mop up reached down to pick up the hose and a tree limb punctured eye
## 5514                                                                                                                                 EE was doing paperwork and filing cases and something got into EE's eye- was unable to deternmine what it was- lt scratches on eye.
## 5515                                                                                                                                                                                       EE was doing recycling, got out of truck and rcvd bee sting to face; near eye
## 5516                                                                                                                                                                   EE was doing rounds and patient attacked EE. EE fell on the floor and head and landed on rt knee.
## 5517                                                                                                                                                                                                 EE was doing routine room changes and some sporklinsy got into eye.
## 5518                                                                                                                                                     EE was doing routine visual check bio-side chemical pump. Line came off fitting and splashed chemical into eyes
## 5519                                                                                                                                                                                                                EE was doing some testing ang chemicl fell into eye.
## 5520                                                                                                                                                                         EE was doing weapons retention training with a rifle and the rifle hit him in the mouth. ()
## 5521                                                                                                                                                                                     EE was doing work in her desk when she passed out and hit her head on the desk.
## 5522                                                                                                                                         EE was dong a controlled burn in a slash area, stick stuck in ear, EE could not hear. Stick poked small hole in eardrum. ()
## 5523                                                                                                                                                     EE was dressing client and client started to fall EE caught client and client accidently poked EE in the rt eye
## 5524                                                                                                                                                                  EE was dressing resident in the shower room when he turned into the cabinet door hitting left eye.
## 5525                                                                                                                                                            EE was driling hole & removed his safety glasses. He reports blowing dust and getting dust in both eyes.
## 5526                                                                                                                                                                       EE was drilling a cylinder hole in a cabinet door when a chip/sawdust got into her right eye.
## 5527                                                                                                                                                                              EE was drilling a hole in a desk for computer cables and sawdust scratched his cornea.
## 5528                                                                                                                                                                                               EE was drilling a hole in ceiling and a piece of metal got in EE eye.
## 5529                                                                                                                                                              EE was drilling a hole in metal for a bolt to go through and a small piece of metal went into left eye
## 5530                                                                                                                                                                                                  EE was drilling a hole ing a vehicle and debris flew into left eye
## 5531                                                                                                                                                                                                                  EE was drilling and a piece of metal flew into eye
## 5532                                                                                                                                                                                                EE was drilling hold with drill and metal shavingsgot into right eye
## 5533                                                                                                                                                                                      EE was drilling hole in cabinets to attach to wall, something flew in left eye
## 5534                                                                                                                                                                                 EE was drilling holes in a metal feed trough when a shaving flew into his right eye
## 5535                                                                                                                                  EE was drilling holes in stacks of paper, metal handle broke causing metal, paper and sawdust particle to fly up into face and eye
## 5536                                                                                                                                                                   EE was drilling metal and flake flew into his (l) eye/was wearing saftely glasses and face sheild
## 5537                                                                                                                                                 EE was drilling metal door and air from fan pickedup metal fragments and some blew into EE's eye under his glasses.
## 5538                                                                                                                                                                               EE was drinking water at fountain when the cover on thermostat fell and hit her head.
## 5539                                                                                                                                                                                                                EE was driving & was involved in a vehicle accident.
## 5540                                                                                                                                                                                                           EE was driving a golf cart when debris flew in his eye ()
## 5541                                                                                                                                               EE was driving a support post into lake bottom using a metal tamper. Tamper was lifted up, striking EE in the head ()
## 5542                                                                                                                                                        EE was driving a tractor and planting feed plots, when his right eye was poked by a small branch. Right eye.
## 5543                                                                                                                         EE was driving and another vehicle failed to stop and struck EE's car - flipped 2/3 times and had to be cut from vehicle- multiple injuries
## 5544                                                                                                                  EE was driving at night during heavy rain when he lost control of the car causing the air bag to deploy resulting in cuts ans bruises to the face.
## 5545                                                                                                                   EE was driving down a field path and a tree limb became lodged behind side mirror of vehicle. The limb became unlodged and struck EE in left eye.
## 5546                                                                                                                                                                                                   EE was driving down the road and something flew in EE's right eye
## 5547                                                                                                                                                                  EE was driving fence into stream bed and lost control causing impact to head and broke tooth crown
## 5548                                                                                                                                                                                      EE was driving fence posts into ground and struck head with back end of hammer
## 5549                                                                                                                                                                                                                EE was driving in parking lot and struck light pole.
## 5550                        EE was driving in traffic on johnston rd. & I-485 when a car in front of him stopped. EE stopped and another vehicle rear-ended his vehicle while sitting still. Impact caused him to slam front and back hitting his head on the head rest.
## 5551                                                                                                                   EE was driving inmates to worksite, when a wild turkey flew into the windshield, crashing through windshield. Glass fragments went into eye of EE
## 5552                                                                                                                     EE was driving john deere gator, another vehicle hit the front of gator, causing EE to hit his head on the celling of the gator/laceration head
## 5553                                                                                                                                                                       EE was driving mail van and was struck in rear by another automobile - strained neck and back
## 5554                                                                                                                                                                   EE was driving on road that merged from 2 lanes to 1-slowed down to merge and was hit from behind
## 5555                                                                                                                                                   EE was driving out of parking lot on premises and a car backed out of parking space without looking and struck EE
## 5556                                                                                                                          EE was driving state vehicle transporting inmates, rounded curve in road and was struck had on by oncoming vehicle which was in wrong lane
## 5557                                                                                                                                              EE was driving state vehicle when debris from the air conditioner/heater duct blew into EE's right eye, scratching it.
## 5558                                                                                                                                                               EE was driving state vehicle with window down. Safety glasses were on when debris came into left eye.
## 5559                                                                                                                                                                                EE was driving to job side, struck by another car. Bruises to the left side of head.
## 5560                                                                                                                                                                           EE was driving tractor from park to maintenance area-when a truck hit tractor from behind
## 5561                                                                                                                                                         EE was driving truck and had to brake suddenly to avoid a deer, EE slid forward striking head on right hand
## 5562                                                                                                                                                                                                                     EE was driving truck and trash flew into lt eye
## 5563                                                                             EE was driving vehicle f61 southbound toward 14th street beside tyler. Other vehicle was backing traveling east into the road. F61 struck the other vehicle while it was backing up. ()
## 5564                                                                                                                                  EE was driving vehicle when another car swerved into path causing EE to swerve to avoid hitting car going into a ditch and mailbox
## 5565                                                                                                                                                                           EE was driving when he was struck by another vehicle while trying to avoid hitting a deer
## 5566                                                                                                                                                                                       EE was driving with the window down when somethingblew into his eye; left eye
## 5567                                                                                                                                                  EE was drying resident. He was standing and started to fall. EE had to hold on and pull up the chair. Pain in back
## 5568                                                                                                                                                                                       EE was dumping soiled animal bedding. Bedding fellinto EE left eye. Infection
## 5569                                                                                                              EE was dumping the toilet on road squad #2 EE was putting pt-50 supreme portable toulet tank deodorizer in the toilet on the bus and it splased in eye
## 5570                                                                                                                                                                                         EE was during a routine search on inmate when inmate struck him in the face
## 5571                                                                                                                                                     EE was during paperwork when a deer collided thru her windshield causing glass to splatter on her arms and face
## 5572                                                                                                                                               EE was dusting a table when she lifted her head & bumped it against a shelf, causing a laceration over her right eye.
## 5573                                                                                                                                                               EE was dusting blinds in a dorm room & debris got got into her eyes causing eye to turn red and tear.
## 5574                                                                                                                                                                                                             EE was dusting blinds, dust partical fell into left eye
## 5575                                                                                                                                                                              EE was dusting dayroom and bees came in automatic door and stungg on the head and neck
## 5576                                                                                                                      EE was dusting off the ledge of the chalk board when it fell and hit her in the head on the right side causing a small cut in the forehead. ()
## 5577                                                                                                                                                            EE was dusting the rooms in hill hall and got dust in his eyes. He felt something underneath his eyelid.
## 5578                                                                                                                                                                         EE was dusting window and wall and when he stood up he hit his head on a wall mounted tv ()
## 5579                                                                                                                                                             EE was dusting window sill & ledge with wax dusterdust got on EE's face & a rash broke out of her face.
## 5580                                                                                                                                                                                                  EE was dwelling in wall to support piping. Metal flew into lt eye.
## 5581                                                                                                                                                      EE was eating a baked potato at employee appreciation luncheon and bit into a rock and felt pain in back tooth
## 5582                                                                                                                                                                                            EE was eating sandwich, when swallowed sandwich went down the wrong way.
## 5583                                                                                                                                                                   EE was eating when he suddenly bit down on a smallhard object causing his crown tooth to dislodge
## 5584                                                                                                                                                                                                            EE was either brushed by a stick or stung in his rt eye.
## 5585                                                                                                                                                                               EE was empting carts of shaving into dumpster and a piece of shaving got into her eye
## 5586                                                                                                                                                                        EE was emptying mop bucket, the handle snapped back and hit her in the left side of the head
## 5587                                                                                                                                                                                                EE was emptying out laundry basket and stood up and hit nose on door
## 5588                                                                                                                                                           EE was emptying trash can in workshop, reached down to pick up trash and hit head on metal arm on machine
## 5589                                                                                                                                                                                        EE was emptying trash out of can in med room, something got in to her eye ()
## 5590                                                                                                                                                                                      EE was emptying trays after feeding clients and splashed fruit puree in rt eye
## 5591                                                                                                                                                                           EE was engaged in her duties of night cleaning, and cleaner splasehed into her right eye.
## 5592                                                                                                                                                   EE was engaged in youth enrichment activity. Childthrew basketball and it hit her in mouth causing cracked tooth.
## 5593                                                                                                                         EE was enroute to assist deputy when another vehicle pulled out of driveway and struck patrol car-swollen lips facial abrasions from airbag
## 5594                                                                                                                         EE was entering a vehicle for a break, as he enter the back seat he hit his head with upper door hatch getting small laceration in forehead
## 5595                                                                                                                                                                     EE was entering chart room and was struck by a resident as resident was being escorted to room.
## 5596                                                                                                                                                                                                    EE was entering door of satellite truck awhile on site hit head.
## 5597                                                                                                                                                                                                           EE was entering door of shop and something flew inrt eye.
## 5598                                                                                                                           EE was entering esc parking lot when her vehicle was struck from behind by another vehicle. EE experiencing headache, neck and back pain.
## 5599                                                                                                                                                   EE was entering fenced area and alleges piece of pipe fell from top of fence hitting EE on the head and left arm.
## 5600                                                                                                                      EE was entering his patrol car intending to pursuea motorist who had avoided a checking station he hit his mouth on the drivers door and broke
## 5601                                                                                                                                               EE was entering into a vehicle when she struck her (l) forehead area just above her eye against the frame of the door
## 5602                                                                                                                                      EE was entering steel door to admin. Office. Door swung back and struck EE in right jaw, breaking bridge and dislodging crown.
## 5603                                                                                                                                                             EE was entering the administrative building and passed out and fell to floor. Contusion to nose bridge.
## 5604                                                                                                                                                          EE was entering the alley entrance of the labor bldg. When he bumped his head on a low clearance entrance.
## 5605                                                                                                                        EE was entering the driver side of a van when he struck his rt knee and back of head on the sideof the van-EE lost consciousness temporarily
## 5606                                                                                                                                                                                               EE was entering tower 10 and opened the trap door and it fell on head
## 5607                                                                                                                                                                           EE was entering vehicle and was struck in mouth by top corner of driver's door of vehicle
## 5608                                                                                                                                                           EE was escorting a juvenile to a secure location and the juvenile struck the EE in the head with his fist
## 5609                                                                                                                                     EE was escorting a student to her room when the student grabbed her and threw her on the bed striking her head against the wall
## 5610                                                                                                                                                        EE was escorting an inmate and the inmate came outof restraints and assaulted EE slamming face into concrete
## 5611                                                                                                                                                                                EE was escorting an inmate from cell when he struck the top of his head on an awning
## 5612                                                                                                                                                       EE was escorting an inmate when the inmate head-butted EE in the face causing a laceration above his left eye
## 5613                                                                                                                                                                          EE was escorting an out of control student to his room. The student struck EE in the face.
## 5614                                                                                                                                                                                        EE was escorting an out of control student when he was poked in the rt eye -
## 5615                                                                                                                                                                          EE was escorting an out of control student when the student hit EE in the mouth with fist.
## 5616                                                                                                                                           EE was escorting inmat out of assigned cell - two inmates were going to fight, stopped confrontationcut over rt eye brow.
## 5617                                                                                                                                                                    EE was escorting inmate from cell; inmate caused EE to hit the back of his head against the wall
## 5618                                                                                                                                           EE was escorting inmate from holding cell when theinmate struck EE 3x in the face w/fists before EE got him under control
## 5619                                                                                                                                                                                                   EE was escorting inmate to court when something flew into her eye
## 5620                                                                                                                                                                                           EE was escorting inmate to lock-up. Inmate struck EE on left side of face
## 5621                                                                                                                                                                                    EE was escorting inmate to s/o when she spit on the right side of face and shirt
## 5622                                                                                                                                                                     EE was escorting inmate to single cell in use of force inmate began spitting and struck in face
## 5623                                                                                                                    EE was escorting inmates outside. Inmate assaultedanother staff and EE was trying to help staff restrain inmate. EE was struck in head by inmate
## 5624                                                                                                                                                                                       EE was escorting patient and patient became agitated and scratched EE on face
## 5625                                                                                                                                                                                                                 EE was escorting patient and patient head butted EE
## 5626                                                                                                                                                                                                         EE was escorting patient and patient hit EE in the left eye
## 5627                                                                                                                                              EE was escorting patient back to room and patient pulled away elbow striking eye, breaking glasses, and breaking skin.
## 5628                                                                                                                 EE was escorting patient to her room and student elbowed EE in the mouth EE states that it busted her upper lip and herad toothe crack pushed up ..
## 5629                                                                                                                                                             EE was escorting patient to quiet rooma and patient ran up behind EE nd hit EE behind the ear and head.
## 5630                                                                                                                                                                                                       EE was escorting patient to room grab glasses from EE's face.
## 5631                                                                                                                                                                                     EE was escorting patient; patient hit EE on the (left side) head, several times
## 5632                                                                                                                                                               EE was escorting pt when pt started hitting EE in the face injuring her eyes and breaking her glasses
## 5633                                                                                                                               EE was escorting student to his room for time out when student turned and hit EE in the eye w/a closed fist and scratched EE's elbow.
## 5634                                                                                                                                                                                          EE was escorting student to the room and the student struck EE in the head
## 5635                                                                                                                                                           EE was escorting students from cafeteria back to madison when a student threw a rock & hit EE in the eye.
## 5636                                                                                                                           EE was escorting students to cafeteria. Asked a student to pull up his pants. Student ran up to eepunched EE in mouth and knocked EE down
## 5637                                                                                                                                                                                                              EE was esposed to mold in swann hall causing head-ache
## 5638                                                                                                                                                                                        EE was eval in consumer's residence when she was exposed to cigarette smoke.
## 5639                                                                                                                                                                                                    EE was excersing horse, hose kicked out and hit her in the face.
## 5640                                                                                                                                                                                  EE was excising bands from a gel on the uv-light box and uv light burned his eyes.
## 5641                                                                                                                                                                                            EE was excorting inmate and she began spitting and EE was struck in face
## 5642                                                                                                                                EE was excorting inmate from wharhouse to kitchen, inmate was carring bleach, bleach slipped from theinmates hand, breaking on floor
## 5643                                                                                                                     EE was exiting a rest area in davie county on a field trip to hickory when she fell face down on the sidewalk breaking a tooth and bruising her
## 5644                                                                                                                                                                               EE was exiting bathroom stall when end of peg hit EE slightly above the right temple.
## 5645                                                                                                                                EE was exiting bathroom stall, and hit top of rt eyelid on coat hook attached to back of the door. Pain and discomfort in right eye.
## 5646                                                                                                                                     EE was exiting bathroom when ankle twisted causingher to fall on her lt knee and hit forehead against the door of the bathroom.
## 5647                                                                                                                                                                  EE was exiting hallway and slipped on wet floor and fell breaking front teeth and bruising rt side
## 5648                                                                                                                                           EE was exiting his vehicle in parking lot when he fell on his back due to icy conditions hitting hishead on the pavement.
## 5649                                                                                                                                                 EE was exiting inside of dumpster compartment through narrow entrance, head struck garbage retainer prong cut scalp
## 5650                                                                                                                 EE was exiting police car to doa building check, when cardoor failed to catch in the open position. Door recoiled back and hit EE in bridge of nose
## 5651                                                                                                                                                                                                 EE was exiting the bus when his head struck against the metal frame
## 5652                                                                                                                                                                                      EE was exiting the front door when a bee/wasp stung her on the rt side of face
## 5653                                                                                                                                                          EE was exiting the holshouser housing unit throughthe back door when a bee stung him on the right eye lid.
## 5654                                                                                                                                                                             EE was exiting the recreation trailer slipped & fell on an icy step, injury to rt elbow
## 5655                                                                                                                                                                        EE was exiting the road work bus for duty when he hit his head on the door overhead the bus.
## 5656                                                                                                                                                                                             EE was exiting the state vehicle when the door struck her in the rt eye
## 5657                                                                                                                       EE was explaining to an inmate that he was going to use other means besides laundry basket to move his proporty the inmate stuck EE with book
## 5658                                                                                                                                                                                    EE was exposed to an unknown pollutant in work area causing acute asthma attack.
## 5659                                                                                                                                                                                                                         EE was exposed to gas leak in the building.
## 5660                                                                                                                                                                                                        EE was exposed to head lice and subsequently became infected
## 5661                                                                                                                                                                                       EE was exposed to paint fumes which caused allergic reaction - ulcers in nose
## 5662                                                                                                                                                                                                                            EE was exposed to patient with pink eye.
## 5663                                                                                                                                                               EE was exposed to pepper gas no adverse affects until the next day she woke up with a swollen rt eye.
## 5664                                                                                                                                                                                                  EE was exposed to pepper spray--causing burning eyes and headaches
## 5665                                                                                                                                                                                                                      EE was exposed to resident with conjunctivitis
## 5666                                                                                                                                                                                     EE was exposed to some dry ice vapors while trying to fill styrofoam container.
## 5667                                                                                                                                                                                          EE was exposed to students with head lice and subsequently became infected
## 5668                                                                                                                                                                            EE was fastening wheelchair belt of resident, resident threw hand up and hit EE in l eye
## 5669                                                                                                                                                                    EE was feeding c-block and an inmate threw a substance like on her in her facial and chest area.
## 5670                                                                                                                                                                                                                    EE was feeding cows when wind blew feed into eye
## 5671                                                                                                                            EE was filing and when she pushed one down the other end popped up and went across her eye. The file actually cut her cornea on her eye.
## 5672                                                                                                                                             EE was filing files in cabinet and thought she hadclosed the drawer. EE hit corner of drawer on lefteye cutting eyelid.
## 5673                                                                                                                                                                                                                            EE was filing paper and scratched rt eye
## 5674                                                                                                                                                                                                            EE was filing paperwork and something flew into left eye
## 5675                                                                                                                                                            EE was filing pvc pipe. Took off safety glasses and rubbed arm against face. Particles fell in left eye.
## 5676                                                                                                                                                                               EE was filling a 5-gal container with cleaner whenchemical splashed in EE's left eye.
## 5677                                                                                                                                                                          EE was filling a bird feeder in the gardens on a windy day. Debris flew into her left eye.
## 5678                                                                                                                                      EE was filling a bottle with chemicals and dropped the bottle on the floor and some got into eye when she tried picking it up.
## 5679                                                                                                                                                   EE was filling a chemical bottle when the liquid splashed back onto her face. Facical contact to liquid chemical.
## 5680                                                                                                                                                                        EE was filling up hoq bottle with more solution when resulting pressure splashed in left eye
## 5681                                                                                                                                           EE was finishing medical rounds on inmate, when the inmate lunged from his bed, out the door and hit EE in the right eye.
## 5682                                                                                                                                                 EE was finishing up cleaning of restrooms and putting bucket away when bucket fell and chemical got into right eye.
## 5683                                                                                                                                                        EE was firing a weapon in prone position when the bolt of the weapon struck EE on his forehead leaving a cut
## 5684                                                                                                                                                EE was firing pistol at target. Debris from his pistol or another one near him was thrown out and entered right eye.
## 5685                                                                                                                             EE was firing shotgun for in-service training, the recoil caused the shotgun to strike EE in the noseand mouth causing tooth to loosen.
## 5686                                                                                                                                                EE was fitting pvc pipe and when pulling back apart, it suddenly came loose and struck EE in themouth breaking tooth
## 5687                                                                                                                                                                                           EE was fixing air handling unit and a piece of metal flew into right eye.
## 5688                                                                                                                                                    EE was flushing a g-tube & when she put the cap onto flush line, stomach contents splashed on her face and neck.
## 5689                                                                                                                                                                                                 EE was folding bags when one of the bag corners hit her in the eye.
## 5690                                                                                                                                               EE was forcing acetone throught tubing with a syringe-the syringe separated and the acetone splashed into EE's rt eye
## 5691                                                                                                                   EE was found by immediate supervisor in an upset uncontrollable state. Due to EE's condition an ambulance was called & was transported for treat.
## 5692                                                                                                                                                                                                EE was found lying underneath a storage cabinet that had fallen over
## 5693                                                                                                                                                                                     EE was getting a tape from a shelf and another tape fell and hit EE in the lip.
## 5694                                                                                                                     EE was getting certified as a red cross lifeguard and EE was diving in 10 ft depth multiple x's anddon't know exactly when the injury occurred.
## 5695                                                                                                                                       EE was getting cleaning rags out of storage cabinet the cabinet turned over causing EE to fall on concrete floor and hit head
## 5696                                                                                                                               EE was getting client upmoff mat to put in chair client kicked or kneed in the jaw causing EE to bite down causing breakage to teeth.
## 5697                                                                                                                                                            EE was getting handcuffs out of podium and anotheree was holding lid and let go-lid struck EE in thehead
## 5698                                                                                                                                                                                      EE was getting ice and hit his mouth with the scooper causing a tooth to chip.
## 5699                                                                                                                                                      EE was getting into a air plane and head hit the brim of a hat he had on which struck the window of the plane.
## 5700                                                                                                                                                                           EE was getting into car when she bent down she hit her head on the car door above lt eye.
## 5701                                                                                                                                                                                         EE was getting into car. Right corner of head hit door causing severe pain.
## 5702                                                                                                                                                                                                     EE was getting into trk and hit top rt side of head on door jam
## 5703                                                                                                                                                                                  EE was getting into van and had papers in hand and the papers poked EE in the eye.
## 5704                                                                                                                                                                                                   EE was getting into van and hit head causing EE to fall backwards
## 5705                                                                                                                                                                                                      EE was getting into work van and hit his head on door frame ()
## 5706                                                                                                                                                    EE was getting items from work cabinet when clientpushed EE into cabinet causing her to hit her head on cabinet.
## 5707                                                                                                                                                                             EE was getting mail out of box & a piece of paper fell down & scratched her lt eyeball.
## 5708                                                                                                                   EE was getting mail out of box same time another EE was getting her mail and the other EE pulled her mail and a piece of paper struck EE's rt eye
## 5709                                                                                                                                                   EE was getting mop heads when he knocked over a bottle of bleach that broke open, splashing bleach into his eyes.
## 5710                                                                                                                                     EE was getting musical instrument out of case, pt fm across room threw a full bottle of drink at EE hitting her in the mouth ()
## 5711                                                                                                                                           EE was getting off bus, she forgot to lower her head & hit her head on the steel beam. EE hit her forehead near hairline.
## 5712                                                                                                                      EE was getting off elevator with patient and elevator doors started to close-EE reached for thepatient-walker came up striking EE in the teeth
## 5713                                                                                                                                                                     EE was getting off ladder after replacing light. Light standard fell struck EE head cutting it.
## 5714                                           EE was getting out extra hanging file folders for the office and some started to fall she tried to catch them and one got caught in her right eye lid and had to pull it out of the eye and caused the cut on the eye. ()
## 5715                                                                                                                                      EE was getting out of car to put mail in the drop-box across the street from the vr bldg and an envelope struck EE in the eye.
## 5716                                                                                                                                                                    EE was getting out of chair at work station, tripped, hit chin on desk and fell to the floor. ()
## 5717                                                                                                                                                       EE was getting out of dws state truck (c-100) fall out onto cement boat ramp. Hitting head & injuring foot ()
## 5718                                                                                                                  EE was getting out of the back of the truck and hebumped his mouth on the side of the truck when he jumped down. Chipped teeth & abrasions to lip.
## 5719                                                                                                                                        EE was getting out of veh to check out suspect- when a cloud of dust surrounded his veh and a piece of dirt went into rt eye
## 5720                                                                                                                                                                                                 EE was getting out the convalescent van and hit top of head on van.
## 5721                                                                                                                                                         EE was getting ready to help change client, she bent over to put lap tray back on and client hit EE on nose
## 5722                                                                                                            EE was getting ready to sit in a chair that has roller wheels on it. When she went to sit down, the chair moved backwards and EE fell onto the floor. ()
## 5723                                                                                                                                                         EE was getting ready to sit in chair-when chair came out from underneath EE-causing EE to fall hitting head
## 5724                                                                                                                            EE was getting ready to unload linen he went to unfasten belt on restraining strap when laundry cart rolled back and hit him in the head
## 5725                                                                                                                                                       EE was getting ready to wash out mop, the handle accidentially hit her in the mouth/lip. Lip started swelling
## 5726                                                                                                                                                                             EE was getting rounds board fm co-worker, pt sucker punched EE to right side of face ()
## 5727                                                                                                                                                          EE was getting something from a resident and hit her head on cement wall causing bruised area and headache
## 5728                                                                                                                                                                      EE was getting something from box under shelf and struck head on shelf when she went to get up
## 5729                                                                                                                                                                  EE was getting spoons out of box in cabinet and another employee opened box hitting EE in the eye.
## 5730                                                                                                                                     EE was getting supplies out of storage area when a box of clothes fell and struck him in the face knocking cap off front tooth.
## 5731                                                                                                                  EE was getting supplies out of storage closet, bent over loading boxes on truck, the handle of the truck came forward and struck upper lt eyebrow.
## 5732                                                                                                                                                                                     EE was getting up from a sitting position and felland struck his head on a tree
## 5733                                                                                                                                                       EE was getting up from her chair she struck her head on shelf. Which is loacted above her desk. Injured head.
## 5734                                                                                                                                                   EE was getting up out of her chair and hit her head on door of metal cabinet which was open. Knotlt side of head.
## 5735                                                                                                                                                                     EE was getting up when he struck his head on the bottom of the drill press table; cut his scalp
## 5736                                                                                                               EE was getting wash cloth out of top cabinet and accidently knocked another towel out. EE bent over to pick up towel and hit head on cabinet door. ()
## 5737                                                                                                                                                                 EE was gettingon elevator & knee gave out and EE feel injuring her face, knee, eye, mouth, and lip.
## 5738                                                                                                                                                                                         EE was given adl care to a pt he was fighting swing and hit EE in the l eye
## 5739                                                                                                                                                                                          EE was giving client a bath-client throw hands back in struck EE in mouth.
## 5740                                                                                                                                                                            EE was giving client medication adnclient became aggitaated and scratched EE in the eye.
## 5741                                                                                                                                                                                   EE was giving inmate his food tray when inmate hitee in the lt ear with his fist.
## 5742                                                                                                                                          EE was giving meds, pt had book in hand adn hit EE in the head. EE tried to block with left hand, hand was also injured ()
## 5743                                                                                                                                                                                                    EE was giving popcorn to residents and felt something in her eye
## 5744                                                                                                                                                 EE was giving pt adl care with assistance from twoother EE's when pt crumped me on the r side of head. Pain to head
## 5745                                                                               EE was giving resident patient care, when resident became very verbal abusive, and combative, and hit me in my mouth with her right fist and bust the EE top lip under the bottom. ()
## 5746                                                                                                                             EE was giving students instructions, students became upset, grabbing the phone, when the staff interveined the student assaulted the EE
## 5747                                                                                                                                                                                     EE was going down steps and fell hitting right face cheek on the cement wall ()
## 5748                                                                                                                  EE was going down steps, step tread was loose, enough to cause EE to loose balance and fall the rest of the way down sidewalk, skinning nose &knee
## 5749                                                                                                                                                                   EE was going from office building to parking lot and tripped and fell on outside concrete stairs.
## 5750                                                                               EE was going into boiler plant thru bir roll up door, boiler operator had the door partially up EE guess about 5 foot or so, EE hit his head as he was entering thru roll up door. ()
## 5751                                                                                                                                                                                        EE was going on the wards to clean, opened door, something fell in left eye.
## 5752                                                                                                                                                         EE was going through the door to the elevator and a patient trhew her tennis shoe and hit left side of face
## 5753                                                                                                                                                                                                  EE was going to bathrooma nd fell on wet floor. Injured head/back.
## 5754                                                                                                                                                           EE was going to check on plumbing problem, he turned to exit the room and hit his head on the door frame.
## 5755                                                                                                                                                                                    EE was going to release pt fm restraints, pt jumed up fm bed, punched EE in face
## 5756                                                                                                                                                                                            EE was going up stairs from hallway entrance when pole fell on her head.
## 5757                                                                                                                                        EE was going up stairs. She turned to speak to inmate, missed the top step and fell. EE cut her nose and middle of forehead.
## 5758                                                                                                                                        EE was going up stairway while some workers was working on the jlg on the roof. The jlg came down and hit EE in the head. ()
## 5759                                                                                                                                                               EE was going up the stairs to post 2 hatch door. EE bumped head on concrete flooring around the hatch
## 5760                                                                                                                                                                 EE was grabbed by an inmate who pulled and then pushed her to the floor causing her to hit her head
## 5761                                                                                                                                        EE was griding down an old solder & weld joint. Hestarted noticing the lt side of vision was gettingfuzzy.. Eyes & head hurt
## 5762                                                                                                                                                                                      EE was grinding a piece of metal when a piece of metal went into his right eye
## 5763                                                                                                                                                                         EE was grinding a piece of metal when one of the pieces flew under safety glasses into eye.
## 5764                                                                                                                                                                                                                    EE was grinding and got a piece of metal in eye.
## 5765                                                                                                                                                                                                                       EE was grinding and metal flew into right eye
## 5766                                                                                                                                                                                       EE was grinding and sharpening lawnmower blades when he injured his right eye
## 5767                                                                                                                                                                                                                  EE was grinding metal and steel shaving struck eye
## 5768                                                                                                                                                                                EE was grinding metal bar when sparks entered side of face mask and went into rt eye
## 5769                                                                                                                                                                                                 EE was grinding metal on a wheelchair and got piece of metal in eye
## 5770                                                                                                                                                                          EE was grinding off the bottom of a metal door whnthe debris hit him in the face/right eye
## 5771                                                                                                                                                                    EE was grinding piece of metal when a piece of the metal was thrown into his eye bt the grinder.
## 5772                                                                                                                                                                          EE was grinding some metal whenm a piece flew under safety glassesa nd flew into EE's eye.
## 5773                                                                                                                                                                                          EE was grinding with safety glasses on and piece of metal flew into lt eye
## 5774                                                                                                                                                                                                 EE was gringing on a pipe and metal popped burning EE's left eye ()
## 5775                                                                                                                                                                   EE was hammer drilling ceiling which produced dust& dust irritated right eye. Referred to glenda.
## 5776                                                                                                                                    EE was hammer drilling overhead on a concrete beamwhen he got multiple fragments in his left eye. EE was wearing safety glasses.
## 5777                                                                                                                                                                                           EE was hammering on bunkbeds and hammer slipped hitting EE in the rt eye.
## 5778                                                                                                                                                                                           EE was hand staining slides and something unknown went into her left eye.
## 5779                                                                                                                   EE was handing another officer bottle of cleaning fluid when he turned to go back up stairs hit headon upper part of stairwell - injured forehead
## 5780                                                                                                                                                                                     EE was handing out cigarettes to patients. Patient hit EE on the cheek/face. ()
## 5781                                                                                                                     EE was handing the box fan to the control, when she fell back off the third step. Caught self beforfalling to ground but as she got up hit head
## 5782                                                                                                                                                                                                        EE was handling a cardboard when he was struck in the lt eye
## 5783                                                                                                                                                                       EE was handling an object which splattered glass which later caused irritation to her rt eye.
## 5784                                                                                                                                                                                                  EE was handling tobacco when a piece of it blew into her right eye
## 5785                                                                                                                                    EE was hanging a banner using t-posts. In the process the t-post driver tool hit EE in the head causing a laceration on head. ()
## 5786                                                                                                                                                                                 EE was hanging a flower arrangement on wall when something hit EE in the right eye.
## 5787                                                                                                                                                       EE was hanging curtain in dairy parlor when rust fell into his eye he was also using lubricant to loosen rust
## 5788                                                                                                                                                                               EE was hanging lights, stood up too soon did not see piece of steel and hit his head/
## 5789                                                                                                                                                                                                   EE was hanging sheetrock and turned his head into the angle iron.
## 5790                                                                                                                                                               EE was hanging up a towbar to the rear of a pick-up truck. The tailgate came loose and hit EE in head
## 5791                                                                                                                                                                         EE was having a conversation with pencil in hand while moving hands pencil went into rt eye
## 5792                                                                                                                                                                                                EE was having tantrum and hit EE on the face with a hard platic toy.
## 5793                                                                                                                                                 EE was havngs discussions with supervisor that wasdisturbing & upsetting and has been on going since the last year.
## 5794                                                                                                                                                                                                 EE was head butted by a resident and nose bleed and began to swell.
## 5795                                                                                                                                                                                                                                      EE was head butted by juvenile
## 5796                                                                                                                                                                                                EE was head butted in face by a client who was waiting for services.
## 5797                                                                                                                                                                                                                  EE was head-butted by a goat in the lt side of jaw
## 5798                                                                                                                                                                                                                             EE was head-butted by another employee.
## 5799                                                                                                                                                                                                             EE was head-butted in nose while doing nci on resident.
## 5800                                                                                                                                                                                              EE was head-butted in the left eye while trying to restrain a juvenile
## 5801                                                                                                                                                                                                                  EE was headbutted by a clienton right side of face
## 5802                                                                                                                                                                         EE was headbutted by patient - sustained loss of consciousness and laceration over left eye
## 5803                                                                                                                                                                                      EE was helping a staff member substain a student when student hit EE in rt eye
## 5804                                                                                                                       EE was helping a stranded motorist. Officer was checking engine compartment when radiator hose burst and sprayed steam and fluid on EE's face
## 5805                                                                                                                             EE was helping another EE change a pt. The pt wasbucking back & forth sitting in bed. Pt came back & hit employee in the r side of head
## 5806                                                                                                                             EE was helping another EE with changing a residentwhen resident startedto buck. Hit EE on the side of head and ear. Pain in ear and h/a
## 5807                                                                                                                                  EE was helping boaters load boat onto trailer. Wench cable broke causing handle to hit right handdamaging middle and third finger.
## 5808                                                                                                                                                                                                               EE was helping client and was hit in rt eye by helmet
## 5809                                                                                                                    EE was helping client out to courtyard-closed doorand turned to go down steps and lost balance and fell - injuring left upper arm, head, stomach
## 5810                                                                                                                                                     EE was helping client with a doctor's appointment removed her glasses and accidently rubbed eye, eyebecame red.
## 5811                                                                                                                                                         EE was helping clients in activities; client was running and ran into EE with his shoulder hitting his nose
## 5812                                                                                                                                       EE was helping co-worker replace light. EE was standing near ladder as cover was being removed. Light cover fell and hit head
## 5813                                                                                                                                               EE was helping consumer with diaper, started to pulpants up and consumer's knee hit right side of EE face. Right ear.
## 5814                                                                                                                                                        EE was helping control an aggressive inmate in thedining hall, she was hit in the head with the watercooler.
## 5815                                                                                                                                                                               EE was helping cook, she lifted the pot lid and spaghetti sauce got in her right eye.
## 5816                                                                                                                    EE was helping coworker start his car. EE was getting jumper cables out of trunk. Coworker did not know trunk would close and it hit EE in head.
## 5817                                                                                                                         EE was helping cut a downed tree into firewood, when he cut a top limb, a bottom limb came up and struck EE in the mouth cutting both lips.
## 5818                                                                                                                                             EE was helping escot inmate, inmate came out of his handcuffs with his right hand and swung at EE, hitting his left ear
## 5819                                                                                                                                                  EE was helping inmate with table in dining room when table slipped from hand striking EE between the eyes and nose
## 5820                                                                                                                                                      EE was helping load laundry baskets into truck when the truck backfired twice. Hearing is muffled in both ears
## 5821                                                                                                                                                             EE was helping move a buffer down stairs when she slipped and fell hitting head and ear on window sill.
## 5822                                                                                                                                                                                                      EE was helping patient eat and patient scratched EE right eye.
## 5823                                                                                                                                                                                              EE was helping patient to chair patient hit EE in the right upper jaw.
## 5824                                                                                                                                     EE was helping pt with putting on clothes, pt bent down to pick coat up fm floor, hitting EE in the mouth, knocking out filling
## 5825                                                                                                                                                      EE was helping remove a fallen tree at a campsite and debris got in eye. Eye became irritated and infected. ()
## 5826                                                                                                                           EE was helping remove a fence-when pulling on the fence it gave way and a piece of steel hit EE in the mouth cutting upper lip on rt side
## 5827                                                                                                                                                                                              EE was helping reposition pt, pt scratched EE on right side of face ()
## 5828                                                                                                                                                                                  EE was helping restrain out of control student and student struck EE in the throat
## 5829                                                                                                                  EE was helping rising landing gear as driver back tractor under trailer, the crank handle drop a litt-le causing the handle to turn out of control
## 5830                                                                                                                                                                        EE was helping run a chipper chipping up tree brush some wood chip flew under safety glasses
## 5831                                                                                                                                  EE was helping take a metal cabinet out of trailerand helping lift cabinet over railing. Cabinet rolled over and hit side of head.
## 5832                                                                                                                                                 EE was helping take the dish machine and putting up trays, dish fell out andhit EE in the mouth loosening her tooth
## 5833                                                                                                                                                           EE was helping to control a patient and the patient hit the EE in the back of the head, a couple of times
## 5834                                                                                     EE was helping to giave a patient shots. Patient was in a hold for shots to be administered & pt had calmed down. After shots, then began attacking med nurse, then this EE. ()
## 5835                                                                                                                                                 EE was helping to put back the chairs/desks into clasrrom 142 whens she felt dizzy from the smell in minges gym. ()
## 5836                                                                                                                                                                                                              EE was hit by a batted softball in the lower left chin
## 5837                                                                                                                                                                                                                           EE was hit by a door while it was closing
## 5838                                                                                                                                                                                                                  EE was hit by a patient on the rt side of the face
## 5839                                                                                                                                                                                                                     EE was hit by a patient. Contusion of forehead.
## 5840                                                                                                                                   EE was hit by a resident falling backwards and hitting back of head on paper towel holder, l side ofhead, back side of head, neck
## 5841                                                                                                                                                                EE was hit by a student when the student became upset. EE and student was involved in a altercation.
## 5842                                                                                                                                                                                       EE was hit by client in right eye. EE was wearing contacts. Corneal abrasions
## 5843                                                                                                                                                                                                            EE was hit by client on face, top of head and chest area
## 5844                                                                                                                                                                                                                                      EE was hit by consumer in face
## 5845                                                                                                                                                                                        EE was hit by patient causing an open cut to his right eye. Required sutures
## 5846                                                                                                                                                  EE was hit by pt when he became angry about not getting his meds & threw a cup of water hit EE in the side of head
## 5847                                                                                                                                                                                                                                        EE was hit in eye by client.
## 5848                                                                                                                                                                                                                                      EE was hit in face by consumer
## 5849                                                                                                                                                                                     EE was hit in head by razor wire hangs down besidegates. Injured scalp of head.
## 5850                                                                                                                                                                                                             EE was hit in head with extreme force by patient'shead.
## 5851                                                                                                                                                                                                                      EE was hit in head with softball while playing
## 5852                                                                                                                                                                                                        EE was hit in head with softball while playing with patients
## 5853                                                                                                                                                                                                EE was hit in head with table that slid off shelf in storage unit ()
## 5854                                                                                                                                                                                          EE was hit in her nose by a patient when she was trying to leave the ward.
## 5855                                                                                                                                                                                                              EE was hit in jaw by pt by fist causing trauma to chin
## 5856                                                                                                                                                                                                                       EE was hit in left side of mouth by a patient
## 5857                                                                                                                                                                                                    EE was hit in mouth by a hostile patient. Minor injury to mouth.
## 5858                                                                                                                                                                                                       EE was hit in mouth by volleyball while playing with patients
## 5859                                                                                                                                                                                                                      EE was hit in the back of the head by resident
## 5860                                                                                                                                                                                             EE was hit in the back of the head several times by a pt w/a que stick.
## 5861                                                                                                                                                                                                                    EE was hit in the eye by a patient with a brush.
## 5862                                                                                                                                                                                                             EE was hit in the eye with a rubberband by a co-worker.
## 5863                                                                                                                                                                                                                                 EE was hit in the face by a patient
## 5864                                                                                                                                                                                                    EE was hit in the face while attempting to redirect a patient ()
## 5865                                                                                                                                                                                                                      EE was hit in the head and chest by a patient.
## 5866                                                                                                                                                                                                         EE was hit in the head by a 200lb bag of laundry. F18 filed
## 5867                                                                                                                                                                                EE was hit in the head by a concrete truck chute when the driver released the chute.
## 5868                                                                                                                                                                                                                EE was hit in the head by a stanchion.... Laceration
## 5869                                                                                                                                                                                                                                   EE was hit in the head by patient
## 5870                                                                                                                                                                                                                      EE was hit in the head with a box by an inmate
## 5871                                                                                                                                                                                                         EE was hit in the head with a mattress that was being moved
## 5872                                                                                                                                                                                                        EE was hit in the lip by a facemask during football practice
## 5873                                                                                                                                                                                                                               EE was hit in the lt eye by a patient
## 5874                                                                                                                                                                                                                         EE was hit in the mouth and nose by client.
## 5875                                                                                                                                                                                                                                EE was hit in the mouth by a patient
## 5876                                                                                                                                                        EE was hit in the mouth by a patient when EE went to remove some pants that were stolen from another patient
## 5877                                                                                                                                                                                                                               EE was hit in the mouth by a patient.
## 5878                                                                                                                                                                                                                EE was hit in the mouth by a sheet pan; broken tooth
## 5879                                                                                                                                                                         EE was hit in the nose bt a patient because they did not want to come back in from outside.
## 5880                                                                                                                                                                                                                                EE was hit in the nose by a patient.
## 5881                                                                                                                                                                                                       EE was hit in the nose by a student who was swinging his arm.
## 5882                                                                                                                                                                                                          EE was hit in the nose by an inmate that was fighting him.
## 5883                                                                                                                                                                                                                               EE was hit in the nose by softball ()
## 5884                                                                                                                                                                                                                                   EE was hit in the rt ear by a pt.
## 5885                                                                                                                                                                                                                                   EE was hit in the rt eye by a pt.
## 5886                                                                                                                                                                       EE was hit in the side of the mouth by a wheelbarrow. Obtaining a lawn mower for observation.
## 5887                                                                                                                                                                                      EE was hit on her head by a client. She was seen by lmh er and rtw 18 June 09.
## 5888                                                                                                                                                                                                                  EE was hit on the head with a hammer by a student.
## 5889                                                                                                                                                                            EE was hit on the r side of the face by inmate during strip search and being restrained.
## 5890                                                                                                                                                                                                                           EE was hit the nose and lip by a patient.
## 5891                                                                                                                                                                EE was hit while driving mail van; caused van to flip several times; EE was transported to wake med.
## 5892                                                                                                                                                       EE was hit with cuffs that were handcuffed to inmate striking him on his lt side of his face. Lt side of face
## 5893                                                                                                                                                                                                               EE was hit, kicked & scratched by an agitated patient
## 5894                                                                                                                                                                                       EE was hold stack of papers and inadvertantly stuck corner of paper in rt eye
## 5895                                                                                                                             EE was holding a box of supplies-when another EE placed boxes on dolley, graham released handle andthe dolley struck EE in the forehead
## 5896                                                                                                                                                                                                EE was holding a ladder and a cinderblock and was struck in the head
## 5897                                                                                                                                              EE was holding a ladder as a co-worker drilled a hhole in cement overhead and dust fell down and fell into EE glasses.
## 5898                                                                                                                   EE was holding a medal piece of angle iron, he looked to see if the other officer had completed welding. EE received a welders flash on right eye
## 5899                                                                                                                                                                                              EE was holding board while another EE sawed and got saw dust in lt eye
## 5900                                                                                                                                                                 EE was holding flashlight of another EE who was using a lathe and a piece of steel fell into rt eye
## 5901                                                                                                                                                           EE was holding paper while getting into truck; when he turned around the paper struck him in the left eye
## 5902                                                                                                                                                                            EE was holding patient and trying to calm patient down EE was struck in head by patient.
## 5903                                                                                                                                                EE was holding pipe for a welder 2 repair. His eyeswere burned by looking at the arc flash of the welding machinery.
## 5904                                                                                                                                                                                                              EE was holding plate too close to head and struck head
## 5905                                                                                                                                         EE was holding torch to hold pin, hammer slipped out of other ees hand and struck EE in the fore- head. Contusion/abrasion.
## 5906                                                                                                                              EE was holding up a fence while another mainten- ance man was trying to bolt the fence to post. Wind was blowing blew trash in lt eye.
## 5907                                                                                                                                                                                                       EE was ht with open hand on "corner" of right eye by resident
## 5908                                                                                                                                                                              EE was implementing behavior support plan and was kicked in the back on the head 3x's.
## 5909                                                                                                                                                                         EE was in a golf cart delivering drinks to golf players & was hit with a golf ball on head.
## 5910                                                                                                                                                                                              EE was in a old cotton mill that was being renovated for office space.
## 5911                                                                                                                                                 EE was in bathroom folding clothes, a few minutes later she passed out and struck her head on the shower room wall.
## 5912                                                                                                                                                                                                        EE was in bathroom w/pt, another pt attacked EE fm behind ()
## 5913                                                                                                                                                      EE was in bed of truck, oil had spilled. EE slipped off top of tool box and fell to the concrete about 10 feet
## 5914                                                                                                                                                                                     EE was in boxing training and was punched directly in the nose causing fracture
## 5915                                                                                                                                                                            EE was in car with driver side window open when some dust or debris blew into his lt eye
## 5916                                                                                                                                                            EE was in cell extraction training & was pushed upagainst a wall hitting her head. Has neck & head pain.
## 5917                                                                                                                                                               EE was in cell extraction training when he rec'd a scratch on his face and leg. Also a chipped tooth.
## 5918                                                                                                                                                             EE was in clients room when another client across his room slapped EE, scratching and bruising righteye
## 5919                                                                                                                                                                             EE was in close proximity to a fire alarm when an unscheduled fire drill was conducted.
## 5920                                                                                                               EE was in co-workers off. Where color printer is. EE backing out of off. To lock Dr, Ankle turned & EE fell back hitting head on round edge baseboard
## 5921                                                                                                                                                            EE was in concession stand, basketball ricocheted off the wall, came into stand and hit her in the face.
## 5922                                                                                                                              EE was in control office bathroom attempting to sit on commode, hit l side of forehead on towel holder on wall causing lac to forehead
## 5923                                                                                                                                     EE was in dayroom watching patient for safety. EE was standing in front of the patient when patient hit EE on his right jaw. ()
## 5924                                                                                                                                                                                                       EE was in dayroom, pt confronted EE, struck EE in left jaw ()
## 5925                                                                                                                                                   EE was in dayroom, pt unprovoked jumped up & threw a plastic chair @ other pt's, EE redirected pt, pt attacked EE
## 5926                                                                                                                                                              EE was in discussion with his client. Client became enraged and punched EE in left eye. Broken glasses
## 5927                                                                                                               EE was in endoscopy unit assisting w/ exam of stomach when fluid from patient & endoscope hit EE face & into eyes. Scratch cornia during rinsing eyes
## 5928                                                                                                                       EE was in g-11 dormitory & went out the back door & at that time the gas furnace kicked on & a foreign matter from exhaust got in his lt eye.
## 5929                                                                                                                                        EE was in hte freezer getting something she needed and some ice fell from the top shelf and struck EE in the top of the eye.
## 5930                                                  EE was in ladies bathroom stall, went to walk out, slipped on floor from residue of lysol spray and fell backward, hitting head on wall, landed backwards on back, legs went up, tried to break fall with hands ()
## 5931                                                                                                                                                           EE was in leo training and was boxing with gloves and protective headgear. Received a mild concussion. ()
## 5932                                                                                                                                                            EE was in leo traning and was boxing with gloves and headgear protection. Received a mild concussion. ()
## 5933                                                                                                                                                                                            EE was in linen room and bent down and hit lt sideof cheek on the shelf.
## 5934                                                                                                                                                   EE was in locker room & a large metal mail box file fell & struck EE on his head; lacertation to scalp, neck pain
## 5935                                                                                                                        EE was in meeting in g'boro, EE been standing and talking for about 20 minutes. Felt hot/ took off jacket/scarf- felt light headed & fainted
## 5936                                                                                                                                                   EE was in nursing office with patient came in office with cigarette butt. Patient put cigarette butt to EE's lips
## 5937                                                                                                                                                           EE was in office doing paperwork with juvenile came in to office and struck EE in the head with his fists
## 5938                                                                                                                                                                                                                   EE was in orientation training oc pepper spray ()
## 5939                                                                                                                                                                     EE was in parole hearing and the defendant got upset and struck EE in the left side of the head
## 5940                                                                                                                                                                  EE was in patients room, patient walked up and pushed EE into wall causing EE to hit head on wall.
## 5941                                                                                                                                                                                                      EE was in pepper spray training and got pepper spray in rt eye
## 5942                                                                                                                          EE was in personal vehicle on state business. EE was going throught a green light when someone ran red light and hit right passenger side.
## 5943                                                                                                                                                                                                                    EE was in pottery class and got debris in rt eye
## 5944                                                                                                                                     EE was in process of cleaning medication cart out EE turned and hit her head on an open cabinet doorwas not aware door was open
## 5945                                                                                                                                           EE was in process of escorting an inmate from the kitchen area when he suddenly struck her in the face with closed fists.
## 5946                                                                                                                                 EE was in process of issusing citation-suspect ranee went after suspect and bolded him on ground hitting chin against suspect head.
## 5947                                                                                                                           EE was in process of placing an instant cold compress ice bag on student, when bag ruptured and chemical flew in eyes and side of face ()
## 5948                                                                                                                                                      EE was in process of removing articles from the podium the lid slipped and struck her in head. Scalp contusion
## 5949                                                                                                                                                         EE was in process of taking inmate to floor that had just assaulted him. EE hit wall with left sideof face.
## 5950                                                                                                                                                                                             EE was in pursuit of student run-aways. Tree branch hit him in the eye.
## 5951                                                                                                                                      EE was in recreation area; thought insect was in eye. Escorted to medical where eye was flushed. Both eyes then became swollen
## 5952                                                                                                                                          EE was in route to dot shed and a bolt flew up from another vehicle and hit the driver's side of the window and cracked it
## 5953                                                                                                                                                                            EE was in route to work riding past a construction area and some debris got into EE eyes
## 5954                                                                                                                                                                                        EE was in state vehicle when the car struck a deer causing lt ear laceration
## 5955                                                                                                                                                                  EE was in supply room getting box of copier paper, box fell, causing handtruck to strike EE's head
## 5956                                                                                                                                   EE was in texas helping with the columbia shuttle recovery when his rt eye began to itch and redden was diagnosised with pink eye
## 5957                                                                   EE was in the bathroom when a maintenance man came in and started cleaning the sink next to him with a cloth. As soon as he started to wipe the fixtures EE felt something blown into his eye. ()
## 5958                                                                                                                                                                                                    EE was in the chapel when she became unable to breathe... Throat
## 5959                                                                                                                                    EE was in the chemical closet getting some latex gloves out when I leaned down to pick them up I hit my left check on the latch.
## 5960                                                                                                                                                                    EE was in the clean linen closet picking up the trash hit her head on the corner of the shelf ()
## 5961                                                                                                                                                                               EE was in the face by a client and glasses wasbroken. Along w/a contusion to the eye.
## 5962                                                                                                                           EE was in the housekeeping closet getting ready for job assignments when he turned around and walked into a cement beam in the closet. ()
## 5963                                                                                                                  EE was in the office doing charts and face starteditching and she felt sick. Chatrs were clened w/ orange blossom and leaving strong citrus smell.
## 5964                                                                                                                                                                          EE was in the process of opening up a students bedroom door, when the student spit in eyes
## 5965                                                                                                                  EE was in the process of removing the tailgate from a dumptruck, he was using a crowbar to pull the pins out when crowbar slipped hitting ees head
## 5966                                                 EE was in the radio repair shop in the same bay as an ale patrol vehicle. EE was standing directly in front of the patrol vehicle when the air horn was accidentally engaged in close proximity to his left ear. ()
## 5967                                                                                                                                                                            EE was in the restroom when she bent over and when standing up she hit her head on shelf
## 5968                                                                                                                                                                                 EE was in training class when a classmate accidentally hit EE on the lt cheek bone.
## 5969                                                                                                                                                        EE was in training when he was taken to the mat with a wrist out release he got a foreign object in his eyes
## 5970                                                                                                                                       EE was in visiting rm. W/ other staff waiting for treatment team-a pt. Dashed into the room amd began beating EE on the head.
## 5971                                                                                                                                                                       EE was in welding area and client was grinding on metal and piece of metal hit EE in left eye
## 5972                                                                                                                                         EE was inadvertantly sprayed with oc pepper spray during confrontation which occured in housing unit4. Burning facial area.
## 5973                                                                                                                                 EE was inadvertently struck in the mouth by a student when staff was trying to restarin the student from fighting w/another student
## 5974                                                                                                                                           EE was injecting raw sample with chemicals. The syringe exploded spraying the EE in the face & upper body with chemicals.
## 5975                                                                                                                                                                                                                   EE was injured by student during sparring drills.
## 5976                                                                                                                             EE was injured doing a practical demonstration of a respiratory neck restraint and was injured during fall-soft tissue damage-esophagus
## 5977                                                                                                                                                                                                   EE was injured in eye with weedeater/blower- injury not specified
## 5978                                                                                                                                                                                                   EE was injured in rt eye while seperating 2 inmates from fighting
## 5979                                                                                                                                                       EE was injured while attempting to take a suspect in custody. Suspect struck EE on rt side of head. Rt temple
## 5980                                                                                                                                                                                      EE was injured while engaging in physical confrontation with antoher employee.
## 5981                                                                                                                                                                 EE was inserting catheter into neck of horse-horsenervous and crashed head down and hit EE in face.
## 5982                                                                                                                                                     EE was inspecting a playground at a daycare and sun was in her eyes and she walked into a pole striking her eye
## 5983                                                                                                                                                         EE was inspecting a propane dispenser and proped open a door and the rod slipped and struck EE in the head.
## 5984                                                                                                                                                 EE was inspecting a rattle in patrol car and once doing so closed the trunk lid and struck his head with the trunk.
## 5985                                                                                                                                                          EE was inspecting day care and became allergic to something causing severe headache, sneezing, raspyvoice.
## 5986                                                                                                                                                                               EE was inspecting electrical transformer when a fan blew a piece of metal into lt eye
## 5987                                                                                                                                                                               EE was inspecting stop sign on soundside access and a wasp stung EE between the eyes.
## 5988                                                                                                                                                        EE was installing a security system when he fell backward from a counter top, striking his head on the floor
## 5989                                                                                                                 EE was installing a trailer hitch on dul wheel truck he was holding a piece of metal while inmate was drilling a hole a small piece of metal lt eye
## 5990                                                                                                                                                                                     EE was installing an exhaust gasket on bus and rust particles flew into EE eyes
## 5991                                                                                                                                                                                               EE was installing ceciling tile when EE felt pieceof trash in lt eye.
## 5992                                                                                                                                                                                            EE was installing conduit for electrical power, trash blew in right eye.
## 5993                                                                                                                                                                                                    EE was installing copper water line and material fell in rt eye.
## 5994                                                                                                                                                             EE was installing g on the telephone board and when he cut the cable it bounced back and hit his rt eye
## 5995                                                                                                                                                               EE was installing gps on r/v cape fear and hit his head on upper deck exiting vessel during low tide.
## 5996                                                                                                                                                            EE was installing handicap shower bench when it fell forward hitting his face and breaking his tooth. ()
## 5997                                                                                                                                                                                             EE was installing lock cylinders in doors & something got into his eye.
## 5998                                                                                                                                                              EE was installing new railing and wind blew a metal particle under his safety glasses and intohis eye.
## 5999                                                                                                                                                                                                    EE was installing pipe and noticed something scratchy in his eye
## 6000                                                                                                                                               EE was installing tile in the diagnostic area and was biting a piece of clothe and it caught onto tooth and broke it.
## 6001                                                                                                                                                                    EE was instructing class on survival-one cadet accidently kicked EE in the nose during training.
## 6002                                                                                                                                                                                       EE was instructing driver training and wind blew debris into his left eye. ()
## 6003                                                                                                                                          EE was instructing inmate to report to med window when inmate struck EE several times with fist in the head and face area.
## 6004                                                                                                                                           EE was instructing pe and 2 juveniles began horseplaying and turned to run and struck EE in the mouth-chipped front tooth
## 6005                                                                                                                                         EE was instructing students on use of tft fog nozzle attached to a hose when the hose burst and struck lt side of his face.
## 6006                                                                                                                                                          EE was instructing swim class and while waiting for child to jump in the water the child and EE bumpheads.
## 6007                                                                                                                            EE was instructiong class on modified sporing with a student-student made a strike at EE's face and EE moved was was struck in upper lip
## 6008                                                                                                                                              EE was interacting with pt in courtyard, pt accidentially elbowed EE in left jow/chin area, teeth hit hard together ()
## 6009                                                                                                                                                                                                     EE was intervening a fight, a student punched staff in the jaw.
## 6010                                                                                                                                                                              EE was intervening during patient altercation and was kicked in the face and scratched
## 6011                                                                                                                                                      EE was intervening in a patient fight and a patient slammed EE against the wall and EE struck head on the wall
## 6012                                                                                                                                                                                EE was intervening in an altercation between 2 pts, and was poked in his left eye ()
## 6013                                                                                                                                                                     EE was intervening w/a group and when a resident threw a 1lb bag weigth and hit EE in the head.
## 6014                                                                                                                                                                                        EE was interviewing a suspect inadvertley drank from a cup that suspect had.
## 6015                                                                                                                       EE was interviewing new patient. Patient was angry and slammed door 2ft from EE, resulting in fullnessand discomfort in lft ear. Not resolved
## 6016                                                                                                                                                                          EE was investigating a carsh and another vehicle lost control and struck the EE's vehicle.
## 6017                                                                                                         EE was investigating a collision on I-85 while parked on the shoulder of the roadway. A tractor trailer lost control and struck the EE's patrol vehicle. ()
## 6018                                                                                                                                                               EE was investigating a crime scene and became dehydrated, hot and overheated, and passed out briefly.
## 6019                                                                                                                  EE was investigating a motor veh accident-he dropped his pen and bent down to get it-could not see due to darkness and struck in left eye by weed.
## 6020                                                                                                                                                                                                               EE was investigating a mva and debris got in left eye
## 6021                                                                                                                                     EE was invilved in use of force incident that involved use of pepper spray, EE was sprayed in face twice at same time as inmate
## 6022                                                                                                                                           EE was involced in a use of force-peppr spray and inmate responded by stricking her with his fist on the rt side of face.
## 6023                                                                                                                                                                                                               EE was involved in a car accident face/nasal fracture
## 6024                                                                                                                                                                                        EE was involved in a cell extraction when inmate punched c/o in the forehead
## 6025                                                                                                                         EE was involved in a domestic violence role play- another trainee came in to assist when instructor swung his elbow and hit EE in the mouth
## 6026                                                                                                                                                                                                                         EE was involved in a motor vehicle accident
## 6027                                                                                                                                                                                         EE was involved in a motor vehicle accident suffers facial wounds and burns
## 6028                                                                                                                                                                 EE was involved in a motor vehicle accident when his head struck something hard injuring his rt eye
## 6029                                                                                                                                                                                                                        EE was involved in a motor vehicle accident.
## 6030                                                                                                                                                                                                                   EE was involved in a motor vehicle collinsion. ()
## 6031                                                                                                                                                                                 EE was involved in a patrol car collision causing the airbag to deploy in his face.
## 6032                                                                                                                                                                                  EE was involved in a pit with a patient and glasses were broken and rt eye bruised
## 6033                                                                                                             EE was involved in a pursuit with a violator when his patrol car travelled off the road & collided with a tree causing concussion, inj to sternum, lung
## 6034                                                                                                                                   EE was involved in a use of force incident where he was accidently struck in the head w/ a baton, during a struggle w/ an inmate.
## 6035                                                                                                                                           EE was involved in a work related training sessionshe was preparing to get into shower, she fell while stepping into tub.
## 6036                                                                                                                                                                                                    EE was involved in an accident... Bruise to the side of his head
## 6037                                                                                                                                                                           EE was involved in an altercation with inmate whenhe was struck under the lt eye and head
## 6038                                                                                                                                                          EE was involved in an insuing struggle with an inmate, EE was hit in the head, not knowin by whom or what.
## 6039                                                                                                                                                                                                                                    EE was involved in auto accident
## 6040                                                                                                                                                         EE was involved in horseplay, Ms Vick hit EE in thehead with her bible which resulted in a severe headache.
## 6041                                                                                                                                        EE was involved in use of force and got blood on latex gloves he was wearing. He touched his head getting blood on forehead.
## 6042                                                                                                                                                                     EE was involved in use of force and in process I was scratched behind the back of head and ear.
## 6043                                                                                                                                                                                     EE was invovled in a segregationa seperation and got some pepper spray in face.
## 6044                                                                                                                                                     EE was issuing a high powered drilla nd stuffed intissue to absorb the noise and pushed in too far for removal.
## 6045                                                                                                                                                             EE was jacking up motor gradon to grease a pin when the bar in the jack slipped and hit him on the lip.
## 6046                                                                                                                                                                                                                        EE was kicked by client on left side of head
## 6047                                                                                                                                                                                                                                   EE was kicked by male transporter
## 6048                                                                                                                                                              EE was kicked in face by a patient during a struggle. Right eye contusion and possible orbitalfracture
## 6049                                                                                                                                                                                                                                   EE was kicked in jaw by a patient
## 6050                                                                                                                                                                                                                              EE was kicked in the eye by a resident
## 6051                                                                                                                                                                                  EE was kicked in the face on the left side by a foal.... Laceration on left eyelid
## 6052                                                                                                                                                                                                                             EE was kicked in the head by a patient.
## 6053                                                                                                                                                                                                                             EE was kicked in the head by a resident
## 6054                                                                                                                                                                                                                                 EE was kicked in the mouth by a pt.
## 6055                                                                                                                                                                                                    EE was kicked in the mouth by an aggresive client. Cut lower lip
## 6056                                                                                                                                                                                              EE was kicked in the nose and scratched by resident as she bathed them
## 6057                                                                                                                                                                                                                EE was kicked on the bridge of his nose by a patient
## 6058                                                                                                                                                                                                                       EE was kneed in jaw by an aggressive patient.
## 6059                                                                                                                                                                                                      EE was kneed in the mouth by a horse while trying to inject it
## 6060                                                                                                                                                                         EE was kneeling in shower stall cleaning the floorstood up and hit head on cold water knob.
## 6061                                                                                                                                                                                                                   EE was knocked from chair by an agrvated patient.
## 6062                                                                                                                                                                  EE was knocked up against a television cart when the person broke free and brushed up against EE .
## 6063                                                                                                                                                                                                EE was laying on back, dismantling desk, desk piece fell on his face
## 6064                                                                                                                      EE was laying on lt side under bulldozer burning out a broken bolt with an oxygen/acetate torch when some molten metal fell into his right ear
## 6065                                                                                                                                                      EE was laying under tractor cutting on belly pan and metal slag went under safety glasses and got in left eye.
## 6066                                                                                                                                               EE was leading a backpacking trip when she slipped& fell on an icy patch, causing a bloody- possiblefractured - nose.
## 6067                                                                                                                                                                                    EE was leaning against elevator door and door struck EE on the side of the head.
## 6068                                                                                                                                                                                              EE was leaning against wall; steel plate fell fromoverhead head injury
## 6069                                                                                                                                                                                                         EE was leaning back in his chair and the chair tipped over.
## 6070                                                                                                            EE was leaning on desk, the cochlear implant plate served as a magnetic, which caused her head to bangagainst the metal shelf. She had to take plate out
## 6071                                                                                                                                                                                                  EE was leaning out of chair when she fell and struck her lower lip
## 6072                                                                                                                               EE was leaning over a rack of plastic test tubes of nitrogen and the pressure became too great and exploded hitting EE in the lt eye.
## 6073                                                                                                                                               EE was leaning over the back of printer picking upcomputer paper. When he stood up he hit head on monitor mount rack.
## 6074                                                                                                                                          EE was leaning over to help a client, when she stood back up she hit the edge of the client lift machine, injuring her eye
## 6075                                                                                                                    EE was leaning over to help move a printer on the floor, when a approx. Ten foot long 8" diam card board tube was knocked over & hit EE on head.
## 6076                                                                                                                  EE was leaving a residence, when she stepped off the curb, upon entering the drivers side she hit the right side of her forehead on the upper door
## 6077                                                                                                     EE was leaving building & tripped on rug causing EE to fall backwards. EE hit back of head causing laceration from sunglasses that were on top of EE's head. ()
## 6078                                                                                                                                                                          EE was leaving building and struck head against glass panel, felt dizzy and dimmed vision.
## 6079                                                                                                                                                                                                   EE was leaving building roll up/down door came down on EE's head.
## 6080                                                                                                                                                                             EE was leaving classroom with consumer. Consumer started to fall and EE caught consumer
## 6081                                                                                                                                                                                      EE was leaving for the day, tripped over a food wagon that was on the porch ()
## 6082                                                                                                               EE was leaving luncheon to catch elevator. There was something on floor and EE fell hitting head onconcrete floor, lt leg & lt side chin (contusions)
## 6083                                                                                                                                                            EE was leaving office to go into the field to do supervision and she fell down a fight of cement stairs.
## 6084                                                                                                                                     EE was leaving office-slipping under counter instead of lifting it at hinge. EE hit her head on the corner of the wood counter.
## 6085                                                                                                               EE was leaving restaurant @ 11pm & fell outside onsteps forward causing mult. Severe injuries to headfx ribs, lacerations hands, head, knees & elbows
## 6086                                                                                                                                                                                          EE was leaving room and patient got up and hit EE in the head, rt nostril.
## 6087                                                                                                                           EE was leaving the building and set in a chair that is placed at the exit. EE lost conciousness and struck her head against the building.
## 6088                                                                                                                            EE was leaving the djj holiday party at the sheratand fell while walking up the steps. Face scrathced and lip busted requiring stitches.
## 6089                                                                                                                                                                                         EE was leaving the office and fell backwards striking head aginst the floor
## 6090                                                                                                                                                                           EE was leaving work & stepped into an 8 inch hole in sidewalk, lost her balance and fell.
## 6091                                                                                                                                                                                            EE was letting dog into cage. Dog and EE were faceto face and dog bit EE
## 6092                                                                                                                                                                                      EE was lidocaining patients foot when some of the lidocaine splashed into eyes
## 6093                                                                                                                                                                                       EE was lifting a ceiling tile to repair lights when grit fell in his eyes. ()
## 6094                                                                                                                                      EE was lifting a client to place onto the changingtable. Client's head came back and hit EE in the mouth, chipping left tooth.
## 6095                                                                                                                                                                 EE was lifting a heavy bedspring when it slipped and struck him upon the left side of his forehead.
## 6096                                                                                                                        EE was lifting a tile to install an exhaust line into plenum. Dust and debris was moved about by differential pressure causing debris in eye
## 6097                                                                                                                                                                                                                EE was lifting ceiling tile when debris fell in eye.
## 6098                                                                                                                                                                                EE was lifting pt leg out of bed and pt kicked EE under the chin bitting her tongue.
## 6099                                                                                                                                                                                                   EE was lifting tv into dumpster when cord struck him in right eye
## 6100                                                                                                                                                                     EE was lifting weights and felt and build up of pressure in ear with a high pitched ringing. ()
## 6101                                                                                                                                    EE was lighting the furnace's oil burner when the burner back flashed which sent flames out of the glass burning EE on the face.
## 6102                                                                                                                EE was loading & moving supplies secured to a rolling cart with a bungee cord, the cord snapped back and hit her in the left eye, cheek and forehead
## 6103                                                                                                                      EE was loading a 50lb bag of clay onto a handtruck when the handtruck shifted forward and hit her in the face bruising her right cheek and eye
## 6104                                                                                                                                                                           EE was loading brush & something from the load went into EE lt eye & could not remove itt
## 6105                                                                                                                                                           EE was loading cardboard in to bailer, EE was looking thru hole feeding wire, wire scratched right eye ()
## 6106                                                                                                                                                                             EE was loading equipment into vehicle, when closing van rear door-----struck EE in head
## 6107                                                                                                                                                          EE was loading her vehicle for training and struck head with jeep hatch while closing it contusion to head
## 6108                                                                                                                                                                                              EE was loading lambs on trailer when he struck hishead on the top deck
## 6109                                                                                                                                                  EE was loading lift into back of pickup, lift shifted causing plastic hosing to break apart, piece struck his eye.
## 6110                                                                                                                                                                                 EE was loading mail truck and wind blew door and the door struck EE in the forehead
## 6111                                                                                                                                                     EE was loading material onto loading dock and levelor went down suddenly and EE was thrown into back of bumper.
## 6112                                                                                                                                                                                                         EE was loading open bin, door failed and fell on EE's head.
## 6113                                                                                                                                                                                               EE was loading open bin, lift door failed and collasped on EE's head.
## 6114                                                                                                                                                                                                               EE was loading paper in printer and paper cut eyeball
## 6115                                                                                                                                                                                              EE was loading residents up for a trip and something flew in EE's eye.
## 6116                                                                                                                                                                                                          EE was loading silage, wind blew foreign body intoleft eye
## 6117                                                                                                                                                                                               EE was loading trays onto cart-stopped and fell hitting back of head.
## 6118                                                                                                                                                                                                     EE was loading truck when some kind of insect flewinto his eye.
## 6119                                                                                                                                                                                                 EE was loading wahsing machine and splashed detergent into left eye
## 6120                                                                                                             EE was loading window air condition units into the back of a van, wind blew dust from the unit into the EE's eyes causing a scratch to his left cornea.
## 6121                                                                                                                                    EE was locking down south wing, EE was hit in the forehead with a bar of soap. Soap was thrown from the upper level of the room.
## 6122                                                                                                                                                          EE was looking at wall while another co-worker was welding and the glare from the welder burned EE's eyes.
## 6123                                                                                                                                               EE was looking for a site to establish a iv when resident hit her in the left eye. Eye painful to touch and movement.
## 6124                                                                                                                                                       EE was looking for lights that were not working properly and as she was looking up, a bug fell into her mouth
## 6125                                                                                                                                                               EE was looking for something in the custodian closet. When he looked up he hit his forehead on shelf.
## 6126                                                                                                               EE was looking thru crack in double doors to determine status of musical performance, someone opened the door from the other side, hit EE in the head
## 6127                                                                                                                                                               EE was looking to see if railroad coal car was empty, when a piece of flake of rusty trash got in eye
## 6128                                                                                                                                                                            EE was looking up at newly installed fan guard andsome material fell into his right eye.
## 6129                                                                                                                                                                                      EE was loosening a bolt the wrench slipped & hit EE's front tooth breaking it.
## 6130                                                                                                                                              EE was lowering goal posts on football stadium when safety pole in the middle slipped off and struck EE in the head ()
## 6131                                                                                                                                                                                           EE was lowering truck lift bed tailgate, and struck his nose on tailgate.
## 6132                                                                                                                                         EE was making a sds-page gel. When EE wasw trying to push a comb into the gel, unpolymerized gel solution went into eye. ()
## 6133                                                                                                                                                                         EE was making a search on farm horses when the horse began bucking throwing officer forward
## 6134                                                                                                                                                                                          EE was making a water/sanitizer solution when sanitizer into her right eye
## 6135                                                                                                                                                                                  EE was making an arrest on a suspect, when the suspect spit in the officer's eyes.
## 6136                                                                                                                                                                     EE was making an ice pencil attached to a co tank and it exploded causing deafness and weakness
## 6137                                                                                                                                                       EE was making copies, she grabbed a piece of paper off the copier and it floated up and scratched her eye. ()
## 6138                                                                                                                                                          EE was making parts on a metal lathe when metal chips hit him in the lt eye causing irritation & swelling.
## 6139                                                                                                                                   EE was making posters, asked a coworker to toss hermarker pen. EE failed to catch pen and it hit her in the mouth, chipping tooth
## 6140                                                                                                                                                                   EE was making regular rounds and hit his head on anew feedwater regulator on #2 feedwater heater.
## 6141                                                                                                                                                                                                EE was making rounds in yard when foreign object got in her left eye
## 6142                                                                                                                                                                    EE was making rounds when a pt attacked him knocking his head against a door and scratching him.
## 6143                                                                                                                                                          EE was making roungs and a tempting to gain an inmate compliance. A inmate struck him in the face and head
## 6144                                                                                                                                                                     EE was making security rounds, questioned inmate about paper, inmate struck EE in mouth w/ fist
## 6145                                                                                                                                         EE was manually moving pulley to raise entrance gate because power was off-power came back on and pulley hit EE in the head
## 6146                                                                                                                            EE was marking samples in palletizing area when a plant EE threw a box of turkeys ontp pallet to fall off of pallet and hit mary in head
## 6147                                                                                                                                                                                  EE was meeting with a recycling customer when it felt like something was in EE eye
## 6148                                                                                                                                                                                        EE was milking a cow when some of the test dip sprayed into both of his eyes
## 6149                                                                                                                                                            EE was mixing chemicals and got a faint whiff of acidic fumes and felt slight burning sensation in nose.
## 6150                                                                                                                                                                                                      EE was mixing chemicals together and some splashedint left eye
## 6151                                                                                                                                         EE was mixing minerals for cattle feed. As he poured the minerals into the feed mixer, some blew back and got into his eye.
## 6152                                                                                                                                                                         EE was mixing texphene into bucket with water. Thebucket hit the sink and splashed into eye
## 6153                                                                                                                                                                                            EE was monitoring patients 1:1, pt struck EE on the (rt) side of face ()
## 6154                                                                                                                                                                 EE was monitoring student who became upset and threw basketball at student striking her in the head
## 6155                                                                                                                                                                EE was monitoring students in hallway when a student struck her on the left side of head by her ear.
## 6156                                                                                                                                                                                                                  EE was mopping floor when chemical got in left eye
## 6157                                                                                                                                                                                  EE was moving a 5 gallon floor stripper and it splashed into eyes, face, and neck.
## 6158                                                                                                                                                                            EE was moving a box on the cart and the cart tilted and the back hit EE on the forehead.
## 6159                                                                                                                                                    EE was moving a computer monitor-tripped over the cord and fell forward hitting nose and mouth on top of monitor
## 6160                                                                                                                                                                                                   EE was moving a desk and struck his head on the corner of a wall.
## 6161                                                                                                                                                        EE was moving a desk with a coworker when the hutch to the desk slid and struck EE on right side of head. ()
## 6162        EE was moving a dolly loaded w/ tables. When the tables tilted forward, she reached forward to catch them. In doing so, she lost her balance and was struck in the face by one of the tables. She injured her face, mouth, right jaw, nose, & front tooth. (
## 6163                                                                                                                    EE was moving a ladder that had a conduit box on top of it. The conduit box fell off ladder when she moved it & it hit her around left eye area.
## 6164                                                                                                           EE was moving a phone cord that was behind an empty roll of plastic laminate film. The film roll leaned over and its plastic end struck his right eye. ()
## 6165                                                                                                                  EE was moving and trucks filled with used meal trays from the back of a food service vehicle. Oneof the elastic straps used to secure trays on. ..
## 6166                                                                                                                                                                                           EE was moving box form cavinet. Pulled it out and it caught his left eye.
## 6167                                                                                                                                                                                                                  EE was moving boxes and somthing went into rt eye.
## 6168                                                                                                                                                                    EE was moving boxes on a hand cart and handle of of hand cart flew back hitting her in the face.
## 6169                                                                                                                                                                                        EE was moving cabinet at lenoir high school and struck his head a tv cabinet
## 6170                                                                                                                                                                                                         EE was moving drop ceiling when fan blew into EE'sleft eye.
## 6171                                                                                                                       EE was moving equipment from one vehicle into anther state vehicle. Both vehicle doors open. Wind partially closed door, EE hit head on door.
## 6172                                                                                                                                                     EE was moving equipment out of cubicle area. Door to cubicle had been rolled up, but fell back down on EE head.
## 6173                                                                                                                       EE was moving flower cart when dayroom door openedfor food cart to come out, inmate ran around food cart into hallway & hit EE on left cheek.
## 6174                                                                                                                                                                                                        EE was moving incline bench and a bar hit him in the nose ()
## 6175                                                                                                                                                                                       EE was moving insulation from water system when particles blew into left eye.
## 6176                                                                                                                              EE was moving items from old meat locker-turned around and walkined into light fixture hanging frmceiling hitting rt side of forehead.
## 6177                                                                                                                                                             EE was moving items that had been in storage. Dust got in eyes. Right eye became puffy, red and swollen
## 6178                                                                                                                      EE was moving junction box cover, a unprotected 110volt wire came into contact with cover causing flash metal fragments to fly in EE right eye
## 6179                                                                                                                                                     EE was moving lab equipment on a rolling cart and the equipment toppled over onto EE causing multiple abrasions
## 6180                                                                                                                                                                                                               EE was moving limbs when limbs struck EE in the face.
## 6181                                                                                                                                                EE was moving panex to inmate dormitory. She turned around and someone threw bar of soap and hit her in back of head
## 6182                                                                                                                                              EE was moving printing equipment- EE pulled handle & it fell down & hit EE on rt side of forehead, knocking unconsious
## 6183                                                                                                                                                                       EE was moving projection screen and bumped a ceiling tile causing dust/debris to fall in eye.
## 6184                                                                                                                                                                 EE was moving resident from shower to vanderlift, when lift tilted and lift rod hit EE in the face.
## 6185                                                                                                                                                                                                                         EE was moving scenery and unsafe load fell.
## 6186                                                                                                                                           EE was moving some file cabinets and on e started to fall and EE was thrown up against wal jab tight hitting top of head.
## 6187                                                                                                                                                                EE was moving some furniture around and a board w/nails came down across head nad cut EE's ear lobe.
## 6188                                                                                                                                                                             EE was moving something in the office and computer speaker fell hitting EE on the nose.
## 6189                                                                                                                                                             EE was moving something on the wall and the mirror hanging on the wall fell and hit her on the head. ()
## 6190                                                                                                                                                    EE was moving sow with livestock panel when animalpushed panel into EE's mouth, causing injury to jaw and teeth.
## 6191                                                                                                                                                                          EE was moving table when fire extinguisher fell off discharging, and getting into his eyes
## 6192                                                                                                                                                                        EE was moving tree limbs when one poped up and hit him in teh face on the lt side at his eye
## 6193                                                                                                                      EE was moving tv. One of the wheels on the tv cartgot caught in uneven bricks causing the cart to become unblanaced. Tv hit EE under left eye,
## 6194                                                                                                                            EE was moving ventilated back when it rolled down towards EE, ran to stop it, hose came loose, a piece hit EE in the face, slipped, fell
## 6195                                                                                                                                                                 EE was moving wire & cleaning electrial shop when a piece of wire flew up & hit EE in the left eye.
## 6196                                                                                                                                                                                     EE was movinghay when a flying insect entered his eye and attempted to get out.
## 6197                                                                                                                 EE was mowin grass when a bug flew in her ear. EE attempted to remove bug without success. 14 days later EE started having severe pain in left ear.
## 6198                                                                                                                                                                                                           EE was mowing grass & debris got behind his safetyglasses
## 6199                                                                                                                                                                                                            EE was mowing grass and felt something in his right eye.
## 6200                                                                                                                                                                                                       EE was mowing grass and the grass flew and hit EE in the eye.
## 6201                                                                                                                                                                                                                    EE was mowing grass and trash flew into left eye
## 6202                                                                                                                                                                                             EE was mowing grass at mckimmon center when something flew itno his eye
## 6203                                                                                                                                      EE was mowing the grass with a tractor on the market grounds a pine limb hit his face and a pine needle went under his glasses
## 6204                                                                                                                                 EE was mowing the grounds when the wind started blowing and blew some grass, dust under eye goggles causing serious eye irritation.
## 6205                                                                                                                                                                                         EE was mowing with the push mower and a piece of wood struck EE in the eye.
## 6206                                                                                                                                                                                                   EE was not feeling well, fainted and hit her head and right knee.
## 6207                                                                                                                                                                                      EE was oading her car w/supplies and stabbed herself in the eye w/ fingernail.
## 6208                                                                                                                                               EE was observing a player about 30ft away when thebat slipped hitting EE in the mouth cracking two of her front teeth
## 6209                                                                                                                                                                             EE was observing inmates wind began to blow harder and blew dust into her face and eyes
## 6210                                                                                                                                EE was observing law enforcement inspection of shrimp trawler. EE was hit in eye by twawler net. Large corneal abrasion to right eye
## 6211                                                                                       EE was observing patients in dayroom. Patient accused EE of taking patients money. Patient stepped to side of EE, swung, hitting EE on left upper face with a closed fist. ()
## 6212                                                                                                                           EE was on a field trip supervising group of kids outside courthouse and large equipment truck backfired causing pain and ringing in ears.
## 6213                                                                                                                                      EE was on a field trip, when she exited the bldg she hit her head on the top of the ac unit. Puncture head----sutures required
## 6214                                                                                          EE was on a hallway bending down to get something off his cart and when he stood back up he hit the corner of the cabinet in the hallway and cut his left eye lid/brow. ()
## 6215                                                                                                                                                                                 EE was on an outing with patients and fell outsideresturant hitting head around eye
## 6216                                                                                                                                                                                    EE was on bed trying to strap patient down nad patient struck EE across the eye.
## 6217                                                                                                                                                                      EE was on break sitting outside-the new weather siren sounded loudly-EE's rt ear was affected.
## 6218                                                                                                                                                                                          EE was on faculty retreat and was thrown a ball and it hit her in the eye.
## 6219                                                                                                                                                                                         EE was on fireline when smoke from burning woods and poison ivy got on skin
## 6220                                                                                                                 EE was on foot checking a violation report. Came to a fence & started to cross through it & hit hishead on tree limb. Swelling & memory loss--head.
## 6221                                                                                                                                                               EE was on foot patrol in woods. He tripped and fell on a log scratching his face and fracturing nose.
## 6222                                                                                                                                              EE was on foot pursuit of subject when he struck his right hand on a steel fence post causing cut to top of right hand
## 6223                                                                                                                                                            EE was on front lawn & stood up, stepped back. On drain pipe, fell on bottom and bit head on a parkdcar.
## 6224                                                                                                                                                                            EE was on hall walking to the nurses ofc, pt ran up to EE and hit him 2x in right eye ()
## 6225                                                                                                                                                            EE was on hands and knees raking straw off of seedlings when the wind blew straw into face and into eyes
## 6226                                                                                                                                                    EE was on his way to work, foot sliped off the brakes & hit the gas, which cause him to hit the back of the van.
## 6227                                                                                                                                                                      EE was on kitchen supervising duty and the inmate mixed chemicals together which caused fumes.
## 6228                                                                                                                                                        EE was on ladder w/boss and boss lost balance and the box of gloves fell and struck EE in the head and neck.
## 6229                                                                                                                                                                      EE was on ladder, came down, another employee had plant and leaf on plant stuck EE in the eye.
## 6230                                                                                                                        EE was on loading dock opening the trash compactor door as he went to pick something up the trash compactor door hit in the back of the head
## 6231                                                                                                                                                                                 EE was on patrol in wooded area when limb struck right eye leaving splinter in eye.
## 6232                                                                                                                        EE was on patrol on his bike and approaching suspicious incident when front tire made contact with brick steps which flipped him bars. Teeth
## 6233         EE was on preventative patrol on nc-211. A vehicle was in front of him slowed to make a right turn and the EE's vehicle struck the other vehicle in the rear. EE was hit by air bag causing him to have a headache and the seat belt hurt his right hip. ()
## 6234                                                                                                                                                                                                           EE was on sampler dumping peanuts when object blew in eye
## 6235                                                                                                                  EE was on shoulder stuck in mud. Tractor trailer went to apply brakes, did not have sufficient braketo stop and ran off road hitting EE's vehicle.
## 6236                                                                                                                                                                    EE was on the ladder when it slipped out from under him and he fell hitting rt ear and rt elbow.
## 6237                                                                                                                                          EE was on the loading dock and as the roll up door was coming down he walked through it and was struck on the forehead. ()
## 6238                                                                                                                                                                                                  EE was on the tractor blower & was hit in the eye with a tree limb
## 6239                                                                                                                                  EE was on the way to work, parked in state parkinglot, walking on side walk was slippery and fell injured elbow, head, back, hnad.
## 6240                                                                                                                                                                                         EE was on the yard when he slipped and fell on ice that was on the sidewalk
## 6241                                                                                                                                                                          EE was on top of boiler #3 checking the steam valve when something flew into his left eye.
## 6242                                                                                                                                      EE was on training mission, and he was struck in the chin by unknown object from the target when sort team fired there weapons
## 6243                                                                                                                                           EE was on way to truck EE enter into truck and hithead on upper door frame while doing sanitation injuring center of head
## 6244                                                                EE was one on one with client walking to kitchen. Client was in behavior with handbangs. EE redirected client and client headbutted EE in the mouth and shoulder breaking partial plate in mouth. ()
## 6245                                                                                                                                                                                     EE was opening a bottle of bleach and contents exploded into EE's face and eyes
## 6246                                                                                                                                                                                                            EE was opening a bottle of chemicals, fumes got into eye
## 6247                                                                                                                                                                                 EE was opening a crate in the library, a wooden board broke and hit EE in left ear.
## 6248                                                                                                                                                                           EE was opening a door to give inmate medications &the inmate spit in her mouth & face. ..
## 6249                                                                                                                                                                      EE was opening a wardrobe to clean inside of it and a bed loft fell and hit EE in the face. ()
## 6250                                                                                                                                                                                                         EE was opening alcohol bottle then some got into EE (r) eye
## 6251                                                                                                                                                           EE was opening boxes, and the corner of the box came in contact with her eye. The eye appeared to be cut.
## 6252                                                                                                                                                                                         EE was opening door of truck to retreive safety glasses and struck forehead
## 6253                                                                                                                            EE was opening door to capture a juvenile that wasrunning from her and hit selt in the mouth with the door of veh chipping rt frt tooth.
## 6254                                                                                                                                                                                      EE was opening door to enter vehicle when some- thing got into EE's right eye.
## 6255                                                                                                                                                                             EE was opening file cabinet door and was struck onthe bridge of her nose with the door.
## 6256                                                                                                                             EE was opening gate and wasp stung her at least twice near left eye. The next morning the eye and area around eye was severely swollen.
## 6257                                                                                                                                                                           EE was opening iodine pack to put on finger, when open pack iodine splashed into left eye
## 6258                                                                                                                                                                                         EE was opening refrigerator and top part came open and struck EE in the eye
## 6259                                                                                                               EE was opening soda bottle & it exploded the cap up causing soda to spill out. He was trying to takesoda outside & slipped & fell hit head - bleeding
## 6260                                                                                                                                                   EE was opening the door of the van when the box with acid came out and hit the ground, acid came up into his eyes
## 6261                                                                                                                                               EE was opening the door to observe road squad bus leave the bolt fell out of the door closer & struck EE in the head.
## 6262                                                                                                                                                                                          EE was opening the gate, it swung towards her and hit her lip and tooth ()
## 6263                                                                                                                                      EE was opening trap doors to remove food trays in I-c block when her right eye started to water and swell as well as turn red.
## 6264                                                                                                                                    EE was opening trunk of van and had trouble getting and keeping it open, the trunk fell and struck EE in the rt side of the head
## 6265                                                                                                                                              EE was opening up boxes of supplies when the flap of one of the boxes struck her across the face injuring her left eye
## 6266                                                                                                                 EE was opening/closing metal cell of high pressuresorptiou apparatus to put some sample inside. Tubeslided from the end of wrench and hit left ear.
## 6267                                                                                                                                    EE was operating a battery charger when the battery exploded causing acid to splash on the upper half of body including left eye
## 6268                                                                                                                                                                                    EE was operating a motor boat when a grain of sandblew up and went into left eye
## 6269                                                                                                                                               EE was operating a pump contain clorox when some of the clorox splashed into EE rt eye--EE was wearing safety glasses
## 6270                                                                                                                                                                                                      EE was operating an assigned vehicle when bug flew into lt eye
## 6271                                                                                                                                                                                      EE was operating an experiment and flask exploded cut hands, face, neck, arms.
## 6272                                                                                                                             EE was operating data ranger. EE was in process ofopening door, handle slipped out and struck her inforehead just above right eye brow.
## 6273                                                                                                                                                                                                                EE was operating pipe saw and got debris in left eye
## 6274                                                                                                                                                                                                           EE was operating pole drive and debris flew into her eye.
## 6275                                                                                                                                                           EE was operating soot blower on front of #3 boilerhand slipped off balance and EE fell, hurting his head.
## 6276                                                                                                                                                EE was operating state vehicle on west henderson street when rear-ended by another vehicle. Officerhad seat belt on.
## 6277                                                                                                              EE was operating the ncshp rollback on I-40 when the left front tire blew out. EE lost control and traveled across I-40 and struck the median wall. ()
## 6278                                                                                                                  EE was operatoring his patrol vehicle and when he was pursuing a violator who would not stop and he turned into a private driveway and hit a tree.
## 6279                                                                                                                         EE was opertating lathe, turning (cutting) a graphite part, some grains hit EE in face getting between safety glasses and entering left eye
## 6280                                                                                                                      EE was out of his patrol car assisting a stranded motorist when several trucks passed by throwing rocks and debris. Debris got into EE's eye..
## 6281                                                                                                                          EE was out the community work squad getting up thesigns, when a gust of wind blew the sign, sign struck him on left side of face near eye.
## 6282                                                                                                                                                               EE was overhead drilling with unibit through supply air duct-blew dirt and metal slivers in left eye.
## 6283                                                                                                                                EE was packaging a verizon air card to mail to field staff. When folding bubble lined envelope itflipped open & struck EE in rt eye.
## 6284                                                                                                                                                                                           EE was packing when he felt dizzy--fell on the stairway striking his head
## 6285                                                                                                                                                EE was painting clay pots for a project and the wind blew the paint into EE's face causing EE to inhale paint fumes.
## 6286                                                                                                                EE was painting on bottom of chiller while sitting on floor unde rpiping entering chiller, EE got up and bumped head on valve protruding from piping
## 6287                                                                                                                                       EE was painting pipes in hallway ceiling when he hit himself in eye with handle of brush. Abrasion and irritation to left eye
## 6288                                                                                                                                       EE was parked on the shoulder of the road when another vehicle lost control of their car and struck EE's vehicle in the rear.
## 6289                                                                                                                                                             EE was parking car when a fireman's jeep rolled down the hill and slammed into rear end of EE's vehicle
## 6290                                                                                                                                                                                         EE was parking his bike behind the horse complex when he was stung by a bee
## 6291                                                                                                                                                                                          EE was parking van and hit gas instead of brake. EE's head hit windshield.
## 6292                                                                                                                                         EE was participaing in lunchtime activity providedby housing department. Collided with another EE while playing basketball.
## 6293                                                                                                                                                             EE was participating in a 21 gun salute and a blank round from the ceremony was blown back into her eye
## 6294                                                                                                                                                         EE was participating in a mandatory boxing match when he was hit in the face causing bottom teeth to loosen
## 6295                                                                                                                      EE was participating in a swimming exercises, jump into the swimming pool from starting position, stri-king the water injuring his rt eardrum.
## 6296                                                      EE was participating in advanced defensive tacticts training with the 131st basic school when he was struck in the chin area of the face by an instructor. EE lost consciousness and fell to the floor mat. ()
## 6297                                                                                                                                                                  EE was participating in an activity and students fell on top of EE causing EE to hit head on floor
## 6298                                                                                                                EE was participating in boxing practical defense tactic and was struck in the lt eye and was eval by Dr Griggs who referred him to unc hospital x-ry
## 6299                                                                                                               EE was participating in cell extraction training he stated that when he was attempting to control the left arm of the mock inmate a staff member fell
## 6300                                                                                                                                                       EE was participating in defensive tactic attempting to sedue a combative violator and was struck in the nose.
## 6301                                                                                                                           EE was participating in firearm drills and failed to have hearing protectors in ears correctly-afterfiring gun EE has ringing in left ear
## 6302                                                                                                                                              EE was participating in firearms practice when a bullet ricocheted off target & struck EE in head causing a laceration
## 6303                                                                                                                                       EE was participating in o/c training. EE was exposed to pepper spray. Eyes were unable to focus clearly in excess of an hour.
## 6304                                                                                                                                      EE was participating in oc spray exercise. EE experienced eye discomfort. EE went to Dr Who stated EE had keratitis in rt eye.
## 6305                                                                                                                                    EE was participating in oc spray training and was sprayed the facial area, still exhibited effect from the oc spray the next day
## 6306                                                                                               EE was participating in oleoresin capsicum spray training with the 134th basic patrol school and received a corneal abrasion to the left eye form a chemical burn. ()
## 6307                                                                                                              EE was participating in oleoresin cepeicurn training in which EE was sprayed in facial area with oc spray. Was treated for cornea abrasions both eyes.
## 6308                                                                                                                                                                                  EE was participating in pepper spray training and received exposure to facial area
## 6309                                                                                                                                 EE was participating in pert team. Instructor was demonstrating a move and accidently struck EE across bridge of nose causing a cut
## 6310                                                                                                                                                                    EE was participating in the boxing portion of defensive tactics and received a blow to the nose.
## 6311                                                                                                                         EE was participating in the oleoresin capsicum spray training and was spray in the facial area and still exhibited the effects the next day
## 6312                                                                                                                EE was participating in the required civil dis- orders training. EE walked through a concentrationof gas and shortly after collapsed and passed out.
## 6313                                                                                                                                          EE was participating in training class, at end of day EE felt water in ears & they were hurting - eehas poss. Swimmers ear
## 6314                                                                                                                                                              EE was participating practic shooting at range witear protection.. Had ringng in ears and hearing loss
## 6315                                                                                                               EE was participaying in revo basic training she was firing the rovolver per intruction for quallfication she was wearing doc approved issued ear prot
## 6316                                                                                                                                                                                          EE was partipating in training, EE scratched rt eyewhen delivering strikes
## 6317                                                                                                                                                                                                                      EE was passenger in car while in route to job.
## 6318                                                                                                                                                                                                               EE was passenger in golf cart that overturned on her.
## 6319                                                                                                                                              EE was passenger in truck when truck in front breaked for deer-EE slid forward striking head on windshield-bruising it
## 6320                                                                                                                                                                                         EE was passing meds and drainage from client's wound squirted into left eye
## 6321                                                                                                                                                                                   EE was passing out medication when patient came up to her and hit her on the head
## 6322                                                                                                                                                                                   EE was passing out supplies when inmate threw what appeared to be feces and urine
## 6323                                                                                                                            EE was patrolling caswell beach--he lost control of the vehicle he was driving--it rolled over, he was thrown out and died at the scene.
## 6324                                                                                                                                  EE was patrolling in dormitory area walked in front of fan & something in the air went into his left eye. Foreign body in left eye
## 6325                                                                                                                                                                                                   EE was patrolling proerty-next morning found tick in back of head
## 6326                                                                                                                                       EE was patrolling yard when insect bit him on forehead. EE is allergic to wasp and bee stings. Bruise and redness on forehead
## 6327                                                                                                                                             EE was patting down inmate inmate hit her with tremendous amount of force of the rt side of her head using his lt elbow
## 6328                                                                                                                                              EE was pepper sprayed during her orientation, lefteye immediately became irritated and began swelling, red and burning
## 6329                                                                                                                                                                                  EE was pepper sprayed in training and still has burning and can't open eyeys fully
## 6330                                                                                                                                         EE was performing a gel extraction-sat bottle downbut it slipped down to the benchtop-and the fluid flew out into EE's eyes
## 6331                                                                                                                                                            EE was performing a viscera inspection on a calf upon cutting calf open fluid splashed into the EE's eye
## 6332                                                                                                                                                                                   EE was performing cpr (mouth/mouth) on an I/m and noticed blood in I/m's mouth ()
## 6333                                                                                                                                                                       EE was performing cpr (mouth/mouth) on an I/m when noticed there was blood in I/m's mouth. ()
## 6334                                                                                                                                                                                  EE was performing duties and a fan was blowing in dorm blew something in left eye.
## 6335                                                                                                 EE was performing equipment maintenance on trailer parts, using a grinder & wearing safety glasses, grinding metal. EE noticed spot in eye not previously there. ()
## 6336                                                                                                                                                     EE was performing experiment while sitting in a chair and chair moved and EE hit head on the cornrof the bench.
## 6337                                                                                                                 EE was performing his daily housekeeping duties when he felt nausous. Later in day his nose began to hurt and bleed and he got a terrible headache.
## 6338                                                                                                                                                                       EE was performing his normal cleaning duties when his right eye became itchy and irritated ()
## 6339                                                                                                                                                                        EE was performing physical therapy and EE ws struck in the chin and caused 2inch laceration.
## 6340                                                                                                                                                                        EE was performing prescribed boxing exercises, and was punched in the head by another cadet.
## 6341                                                                                                                                   EE was performing repetitive cycles of ventilationfor cpr recertification class using a mannikin. Lips became bruised and swollen
## 6342                                                                                                             EE was performing rounds in wing. Inmate approachedhim about a radio. He ordered inmate to step away inmate became hostile & struck him on rt side head
## 6343                                                                                                                                                                                                     EE was performing routine office when paper clip hit her in eye
## 6344                                                                                                                                                                 EE was performing srt duty in wooded area looking for contraband a limb snapped & hit EE in rt eye.
## 6345                                                                                                                                      EE was performing track care on client replacing inner cannula client coughed causing air and possibly pheign to touch EE eye.
## 6346                                                                                                                                                                             EE was picking clothes up, went ton stand up and hit head on the underside of the lift.
## 6347                                                                                                                                                                                     EE was picking up a document, the corner of the paper poked EE int eh left eye.
## 6348                                                                                                                                                                                            EE was picking up a dog for a procedure when the dog bit her on the chin
## 6349                                                                                                                                                                                               EE was picking up a laundry bag when she struck her head on some bars
## 6350                                                                                                                                                                                                          EE was picking up clothes when she bumped her headon rails
## 6351                                                                                                                                                               EE was picking up his briefcase when a meeeting was ending and hit the back of his head on the table.
## 6352                                                                                                                                                     EE was picking up latex gloves and as he was stannding up, he hit his head on the edge of the mounted tv stand.
## 6353                                                                                                                                                                    EE was picking up oae screening instrument & the probe hit her right eye. Red spot on right eye.
## 6354                                                                                                                                                                                EE was picking up paper in the shower stall, raised up nad hit head on shower handle
## 6355                                                                                                                                                                    EE was picking up something from the floor when he raised up and struck head on paper towel rack
## 6356                                                                                                                                       EE was picking up trash and handling other things the consumers had came in contact with. Eyes beganitching, burning and red.
## 6357                                                                                                                                                        EE was picking up trash from trashcan turned arountoo fast hit side of head on the edge of the open doorway.
## 6358                                                                                                                                                                                         EE was picking up trash in resident s room and something got into EE's eye.
## 6359                                                                                                                                                                                       EE was picking up turkeys when a wing hit the EE in the eye; corneal abrasion
## 6360                                                                                                                                                                                          EE was piping up vacum pump, hit head on threads ofboiler drain. Cut head.
## 6361                                                                                                                                                                                      EE was placing a disruptive inmate in his cell andthe inmate spit on his face.
## 6362                                                                                                                                    EE was placing band instruments into storage container-one of the stands sprung back and hit EE on the upper cheek near left eye
## 6363                                                                              EE was placing books on a shelf. The top book slid off the second stack on the shelf and hit the EE's face (bridge of nose). Injury cut EE's skin on nose and bent her eye glasses. ()
## 6364                                                                                                                                                                    EE was placing cleaning fluid bottle down and looked to locate place and chemical out in her eye
## 6365                                                                                                                                                  EE was placing computer cpus property cash sale floor, turned around and a cpu hit EE in the mouth loosing a tooth
## 6366                                                                                                                                                                               EE was placing cover over roll off when trash from roll off entered his right eye. ()
## 6367                                                                                                                                              EE was placing his portable scales back into his issued chevrolet tahoe and hit the rear lift gateand cut his head. ()
## 6368                                                                                                                                                   EE was placing hostile inmate in cell, EE hit him above lt eye with closed fist. Bruise and swellingabove lt eye.
## 6369                                                                                                                                                             EE was placing patient in pic hold and moved his foot causing him to fall and hit his head on the table
## 6370                                                                                                                                                                                EE was placing patient in restraint and seclusion and patient kicked EE in the mouth
## 6371                                                                                                                                                                   EE was placing patient in restrainta and patient hit EE in the eye and shoulder was also injured.
## 6372                                                                                                                                                                            EE was placing patient in restraints, patient spit on EE getting in EE's (right) eye. ()
## 6373                                                                                                                                                                                          EE was placing patient in restraints; patient spit in EE's (right) eye. ()
## 6374                                                                                                                                                                 EE was placing straps around package that was apart of hand truck, strap slipped and hit EE in head
## 6375                                                                                                                                                                                                           EE was planting corn when a bee stung him on the forehead
## 6376                                                                                                                                                                                EE was plastering overhead when small amount of plaster fell and hit him in left eye
## 6377                                                                                                                                                                                       EE was playign basketball with students and EE hither nose on studnet's head.
## 6378                                                                                                                                                                              EE was playing at football practice and one players hit EE in the face bruising lt eye
## 6379                                                                                                                                                                     EE was playing basketball and was poked in eye with a fingernail. Injury to left eye and eyelid
## 6380                                                                                                                                         EE was playing basketball as part of community building activity, another individual struck him in the eye with his finger.
## 6381                                                                                                                                                                                       EE was playing basketball with a client, client stuck his finger in EE's eye.
## 6382                                                                                                                                                                             EE was playing basketball with patient and patient accidently struck EE in the left eye
## 6383                                                                                                                                                                                EE was playing kick ball with patients, ball was kick, hitting EE in the left eye ()
## 6384                                                                                                                                                                  EE was playing ping pong with patients, hit ball upand went fixture, pen dropped down in left eye.
## 6385                                                                                                                                                                                         EE was playing with a student in the gym, when she was hit by a basketball.
## 6386                                                                                                                                                                                  EE was playing with campers in the pool and head hit bottom of pool. Top of skull.
## 6387                                                                                                                                              EE was playing with inmates went up for rebound at that time, hit an elbow. Bloody nose, small amount of blood rt arm.
## 6388                                                                                                                                                                             EE was plugging a flat tire when air pressure blewthe lubricate back into EE's left eye
## 6389                                                                                                                                                                  EE was plugging up electric sewer machine and to outlet and water from drain spattered in his eye.
## 6390                                                                                                                                                                          EE was plugging vacuum cleaner into wall outlet and hit his head on bar of weight machine.
## 6391                                                                                                                                                                            EE was plumming pug, cleaning up with acetone, dropped can and it splashed into left eye
## 6392                                                                                                                                                                                EE was plunging sink, handle came out of plunger and splashed acid residue into eye.
## 6393                                                                                                                                                                                                                               EE was poked in the eye by a consumer
## 6394                                                                                                                                                                                                            EE was poked in the eye w/ squeir in lt eye by resident.
## 6395                                                                                                                                                   EE was polishing sheet metal when disc caught the edge and disc grinder kicked back hitting EE in safety glasses.
## 6396                                                                                                                                                                                  EE was pouring bedside commode into commode and feces splashed upward in to rt eye
## 6397                                                                                                                                                                                 EE was pouring bleach in the washing machine when some bleach splashed in right eye
## 6398                                                                                                                                                                                  EE was pouring bleach into an empty bucket and bleach splashed up in her right eye
## 6399                                                                                                                                                                                               EE was pouring bleach into coffee pot and it splattered into left eye
## 6400                                                                                                                                               EE was pouring bleach into mopbucket and noticed it was coming out from the bottom side-bleach splashed into left eye
## 6401                                                                                                                                                                                                     EE was pouring bleach to clean w/ and it splashed into EE eyes.
## 6402                                                                                                                                                                                          EE was pouring detergent in washing machine and detergent splashed in eye.
## 6403                                                                                                                                                EE was pouring disinfectant solution from gallon container into smaller container when solution splashed in left eye
## 6404                                                                                                                                                                            EE was pouring drain cleaner down a clogged drain and it blew back and struck EE in face
## 6405                                                                                                                                       EE was pouring formalin from 5 gallon box container through valve into a 1 gallon container and liquid splashed up during. ()
## 6406                                                                                                                                             EE was pouring hot water and floor stripper on dorm floor. Bucket slipped and hit floor and water splashed in left eye.
## 6407                                                                                                                                                    EE was pouring resource in cleaning pipe on eq3, back pressure pushed water line cap off, blew up in EE face. ()
## 6408                                                                                                                            EE was pouring some cleaning material into anothercontainer and the solution splashed into EE's eye. EE was n0t wearing safetyy glasses.
## 6409                                                                                                                                                                       EE was pouring stripper into mop bucket and it splashed into his face, EE was wearing goggles
## 6410                                                                                                                                                       EE was practicing swimming with mask of breathing off another diver's air supply-developed a sudden headache.
## 6411                                                                                                               EE was preparing paper work and the phone ranged EE sat down in cahir to answer the call nad the chair broke and EE fell to the floor, hitting mouth.
## 6412                                                                                                                        EE was preparing salt and pepper shakers. She had mounds of pepper to out in shaker. Someone turned on a fan an dpepper blew into EE's eyes.
## 6413                                                                                                                            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
## 6414                                                                                                              EE was preparing to distribute medication when he turned from the refrigerator door and the kitchen door hit him in the mouth as student entered room.
## 6415                                                                                                                         EE was preparing to leave the waterfall, when he slipped on a wet rock & feel backwards. As a result he hurt his right hand, back and head.
## 6416                                                                                                      EE was preparing to sit in her chair at her desk a tile fell from the ceiling hitting her on the right side of her head. Dust particles fell into her eyes. ()
## 6417                                                                                                                                        EE was preparing to weigh client in wheelchair and the iron bar on the scale fell and struck EE on the head - head contusion
## 6418                                                                                                                                                                                   EE was preparing wash cloth with cleaner and accidentally sprayed into right eye.
## 6419                                                                                                                                                               EE was prepping box lunch and struck head on hanging plexy-glass l-frontal region lateral head trauma
## 6420                                                                                                                                                                               EE was pressure washing house 108 when a piece of grit flew off and hit in right eye.
## 6421                                                                                                                                                           EE was pressure washing the first and second floor windows when he got some trash or sand in his eyes. ()
## 6422                                                                                                                                                                    EE was pressure washing the stairs in bailey street apts, & an object was blown in his left eye.
## 6423                                                                                                                                                                 EE was proceeding to a call and lost control of his vehicle on ice -a piece of glass damaged rt eye
## 6424                                                                                                                                             EE was processing a plant disease sample of a rootball that contained poison ivy roots. Transmitted from hands to eyes.
## 6425                                                                                                                                                EE was processing mail when he removed a sheet of paper from folder when a piece came out and struckee in the lt eye
## 6426                                        EE was prompting individual to put clothes. Individual became aggressive and scratched EE. EE was treated by nurse and cream was applied to scratches. EE came up today 12/28/11 and it looks like EE May have dermatitis ()
## 6427                                                                                                                                                               EE was providing 1st aid to another employee, she was sprayed with bodily fluids onto her facial area
## 6428                                                                                                                EE was providing instruction to students during a cell extraction training program. Student struck EE across bridge of nose w/body shield. Cut nose.
## 6429                                                                                                                                   EE was providing speech treatment and child screamed in EE ear and EE heard a loud pop and ear has been ringing every since then.
## 6430                                                                                                                                                   EE was prunign crepe myrtle when he pulled a limb down to to cut it, it flew out of his hand and brushed his eye.
## 6431                                                                                                                                               EE was pruning apple tree, a small limb removed, swept across face and made contact with EE (l) eye scratching cornea
## 6432                                                                                                                                     EE was pruning hawthorne tree EE stooped over when he went to stand up his head rubbed a branch and a thorn lodged in his scalp
## 6433                                                                                                                                                                                           EE was pruning small tree when a small piece of debris flew into left eye
## 6434                                                                                                                              EE was prying wooden board from side of freshly laid sidewalkwith pick axe. When board came loose handle of pick stuck EE in the head.
## 6435                                                                                                                            EE was psgr. In rd. Sqd. Bus; a car crossed ctr. Line strkg. Bus in Dr. Side, knocking bus in ditch. EE struck head; cut bridge of nose.
## 6436                                                                                                                                          EE was pulling a cable out of the floor, stood up and hit his head on one of the rack doors small cut on outside of lt eye
## 6437                                                                                                                                EE was pulling a letter opener thru an envelope, letter gave way causing EE's arm to fly back and hit her in the eye with the opener
## 6438                                                                                                                                                             EE was pulling a measuring tape through some shruband EE was struck in the face by a wax myrtle branch.
## 6439                                                                                                                                                                                               EE was pulling a tree limb when a piece of wood hit him in the rt eye
## 6440                                                                                                                      EE was pulling a tree out of the ground, when it popped loose causing one of the limbs to hit EE inthe right eye. Contusion to right eye area.
## 6441                                                                                                                                                                                                                       EE was pulling and some dust flew in EE eyes.
## 6442                                                                                                                                       EE was pulling books off shelf and mold fell off books fell into face and EE inhaled the mold whichtriggered a asthma attack.
## 6443                                                                                                                    EE was pulling bread flat off rack in cooler. Flatof bread fell off on top of her head. While going thru door another flat of bread fell on head
## 6444                                                                                                                                                                        EE was pulling clients pants down in bathroom. Client moved hand and hit EE in the left eye.
## 6445                                                                                                                                                                           EE was pulling clothes out of washing machine detergent or bleach sprayed into right eye.
## 6446                                                                                                                                       EE was pulling computer cable when ladder folded up causing him to fall 4-5 ft. He hit head againstdesk. Cut right front head
## 6447                                                                                                                                                   EE was pulling down the the back door of the truckthe safety lock swung into position hitting her inthe forehead.
## 6448                                                                                                                       EE was pulling enrichment huts out of shavings. EE went to put the huts in the washers, when her eye became red and started swelling shut. ()
## 6449                                                                                                                                                                    EE was pulling fish tape out of the conduit ens of the reel and flew back and hit EE in the eye.
## 6450                                                                                                                                  EE was pulling landscape fabric from under the plyground equipmt, EE raised up hitting head on the equipm, he then fell backwards.
## 6451                                                                                                                                                                              EE was pulling lien cart out of rm when clost doorbehind the door hit her in the head.
## 6452                                                                                                                                                                                                         EE was pulling limb out of tree and trash went into rt eye.
## 6453                                                                                                                                                      EE was pulling nail out of board and hammer slipped off of nail and struck EE in to mouth chipping front tooth
## 6454                                                                                                               EE was pulling nails from decking with nail puller/prybar-when using force nail came loose allowing nail puller to release and hit EE on rt side nose
## 6455                                                                                                                                                           EE was pulling off the tire of the wheelchair and the opposite end popped loose and struck EE in thenose.
## 6456                                                                                                                                                                         EE was pulling on a door knob, hte door knob came off hitting EE under the eye cutting him.
## 6457                                                                                                                                   EE was pulling out a metal shelf to pull down a file, she bent down and hit her mouth, breaking her tooth in two different places
## 6458                                                                                                                           EE was pulling out of apartment complex after his curfew checks. EE pulled into path of oncoming car & was struck in front quarter panel.
## 6459                                                                                                                                                                                                            EE was pulling paper from officer podium cut her rt eye.
## 6460                                                                                                                                                                                                    EE was pulling plastic over pipe and wind blew trash into lt eye
## 6461                                                                                                                                                                                           EE was pulling sink out of closet and boxes of acid and inhaled the acid.
## 6462                                                                                                                                                                                                    EE was pulling some cable out when the rafter fell on EE's head.
## 6463                                                                                                                                                                                         EE was pulling trash bag from container when the bag hit EE in the left eye
## 6464                                                                                                                                                            EE was pulling trash bag out of a can when dust inthe can went into her eyes. Foreign body in both eyes.
## 6465                                                                                                                                                                        EE was pulling trash from barrell and patient struck EE in the face while in the wheelchair.
## 6466                                                                                                                                                                                               EE was pulling trash from trash barrel when trash got into EE (r) eye
## 6467                                                                                                                                                              EE was pulling trash in lab and skin started burning, got into eyes and rash came on rt hand and face.
## 6468                                                                  EE was pulling trash out room 123 pharmacy area. EE went to pull the trashcan out so she could empty it when the cord was tangled behind the trashcan and the lamp fell on EE's head and broke. ()
## 6469                                                                                                                                                                                             EE was pulling weeds and alleges being stung by a bee on left ear lobe.
## 6470                                                                                                                                                                                     EE was pulling wire in a panel and the wire jumped and hit him in the left eye.
## 6471                                                                                                                                                                             EE was pulling wire up a pole when the attachment broke and pop striking EE in the head
## 6472                                                                                                                                                                                   EE was pumping gas in his work truck when gust of wind blew something in his eye.
## 6473                                                                                                                                         EE was pumping the sanitizer into the bucket to mix the water and it hit the bucket and splashed back into her right eye ()
## 6474                                                                                                                                                                                      EE was punched by a student on the side of her head and kicked in the left leg
## 6475                                                                                                                                                                            EE was punched by patient in left eye, outer orbitwhile placing patient into restraints.
## 6476                                                                                                                                                                                                                                        EE was punched in face by pt
## 6477                                                                                                                                                                                EE was punched in face until collapsing on floor in an attempt to handcuff an inmate
## 6478                                                                                                                                                                                                              EE was punched in nose by pt while trying to redirect.
## 6479                                                                                                                                                                                                          EE was punched in rt upper jaw trying to break up a fight.
## 6480                                                                                                                                                                                                                    EE was punched in the back of head by a juvenile
## 6481                                                                                                                                                                                     EE was punched in the back of the head by a patient as he walked in the dayroom
## 6482                                                                                                                                                                                                                             EE was punched in the eye by a juvenile
## 6483                                                                                                                                                                                                                            EE was punched in the face by a patient.
## 6484                                                                                                                                                                                                                             EE was punched in the face by a student
## 6485                                                                                                                                                                                         EE was punched in the left eye while trying to seperate 2 fighting students
## 6486                                                                                                                                                                                                         EE was punched in the lt eye by a verbally abusive student.
## 6487                                                                                                                                                                                                                            EE was punched in the mouth by a patient
## 6488                                                                                                                                                                                                 EE was punched in the mouth by a resident while dispensing medicine
## 6489                                                                                                                                                                                                        EE was punched in the nose and forehead during a evacuation.
## 6490                                                                                                                                                                                                                             EE was punched in the rt eye by patient
## 6491                                                                                                                                                                   EE was pushed or fell, hit back of her head, loss consciousness, while trying to break up a fight
## 6492                                                                                                                                                                              EE was pushing ? Into bathroom. She pulled curtainback and rod fell on top of her head
## 6493                                                                                                                                                                                 EE was pushing a can of with chemicals in it and somehow chemicals got into rt eye.
## 6494                                                                                                                                                                        EE was pushing a flate bed cart, handle broke off and hit EE in bottom lip and chipped tooth
## 6495                                                                                                                                                       EE was pushing a vcr cart and the cart got caught into the floor pad and EE fell hitting her head and lt hip.
## 6496                                                                                                                              EE was pushing carrier up ramp when plastic tray slid off top of carrier and fell striking EE on lt cheekbone and knocking glasses off
## 6497                                                                                                                               EE was pushing carts when the fire alarm tests were being conducted, the loud noise caused pain in both ears during and after testing
## 6498                                                                                                                                                          EE was pushing load of food tray carts and bungee cord popped off food trays and struck EE in the left eye
## 6499                                                                                                                                                         EE was pushing mop bucket in housekeeping closet when EE lost balance and hit forehead on supply closet. ()
## 6500                                                                                                                                            EE was pushing resident to room, resident picked up leg rest on w/c, threw it backwards and hit EE in r side of his head
## 6501                                                                                                                          EE was pushing the shurb machine to work area and the shurb machine handle stripped out causing chemicals to splash on his face & body. ()
## 6502                                                                                                                                                                 EE was pushing tv stand in order to preview video for class and the tv fell off stand. Lump on head
## 6503                                                                                                                            EE was pushing twigs in a wheelbarrow when a twig hit him in the face causing an eye injury - not sure what type of injury specifically.
## 6504                                                                                                                                                                                 EE was puttin bottle of floor cleaner on shelf and accidently squirted it in rt eye
## 6505                                                                                                                                               EE was putting a box in the bottom cabinet, and when she stood up she hit her head on the door of the top cabinet. ()
## 6506                                                                                                                                                                         EE was putting a ladder back on top of the truck and the wind blew something in his eye. ()
## 6507                                                                                                                              EE was putting a lid on a spray container used to clean laser on radio when some of the spray went into both of his eyes 18 filed also
## 6508                                                                                                                                                                                                EE was putting a resident on toilet and he spit inee's face and eye.
## 6509                                                                                                                                                                                                  EE was putting air in tire and air pressure hose hitee in the eye.
## 6510                                                                                                                                                                                       EE was putting all purpose cleaner up on rack. Spout came off and went in ear
## 6511                                                                                                                                EE was putting an overweight box of shirts onto a handtruck and as it hit the bottom, it came and hit him on the top of the head. ()
## 6512                                                                                                                                                        EE was putting away supplies & officer loyal mccrumb accidentally struck her in the upper arch of her rt eye
## 6513                                                                                                                                                                                  EE was putting brooms in closet, broom fell forwardand hit EE under the right eye.
## 6514                                                                                                                                                                                                  EE was putting cleaner in bucket and it splashed in her right eye.
## 6515                                                                                                                                      EE was putting client into chair using the mech. Lift-chair went sideway and the lift came up and hit EE on left side of head.
## 6516                                                                                                                                                                                                  EE was putting clothes into washer and splashed soap into left eye
## 6517                                                                                                                                                                                                    EE was putting dishes in bleach water and splashedbleach in eyes
## 6518                                                                                                                                                                               EE was putting grass out and the wind blew and the dust and grass flew into EE's eye.
## 6519                                                                                                                                                                          EE was putting horse in recovery stall when the horse moved about & struck EE in the head.
## 6520                                                                                                                                                                                                  EE was putting in fireliner and came into contact with poison ivy.
## 6521                                                                                                                 EE was putting material on the back of service truck when his foot slipped off the bumper and hit the lt side of his face on a corner of milk crate
## 6522                                                                                                                                                EE was putting new ballasts at warehouse and fixtures were rusty causing particles to fall into eyes. Injured rt eye
## 6523                                                                                                                       EE was putting on a pair of safety glassed a smallparticle dislodged from the glassed & landed in the left eye where it began very irritated.
## 6524                                                                                                                                                                                    EE was putting out pine needles when EE was struckin the lt eye by pine needles.
## 6525                                                                                                                                                              EE was putting pipet in disposal box. Small piece from pasteur pipet hit left eye. Scratch on left eye
## 6526                                                                                                                                                                                         EE was putting pt to bed, pt reached up and scratched EE on the forehead ()
## 6527                                                                                                                  EE was putting resident in van. EE was standing behind him trying to help him up steps. He swung his hand backwards and hit EE w/finger in lt eye.
## 6528                                                                                                                                                           EE was putting resident on the van and another resident walked up to EE and stuck her finger in EE's eye.
## 6529                                                                                                                                                                      EE was putting restraints on a patient and patientkicked EE and EE went down hitting his head.
## 6530                                                                                                                                                                                          EE was putting sod cutter back into shed when he caught his eye on door ()
## 6531                                                                                                                                                                            EE was putting tea container on shelf and another container fell off shelf and hit head.
## 6532                                                                                                                                                                                               EE was putting tissue on the holder and hit her eye on the toilet lid
## 6533                                                                                                                                                                    EE was putting together a cart when one of the legs flew off and hit him in the head; laceration
## 6534                                                                                                                                                                                                             EE was putting together packets and folder stuck in eye
## 6535                                                                                                                                                        EE was putting trash in compactor and had top of trash door open, door fell down & hit EE in top of head. ()
## 6536                                                                                                                                                               EE was putting trash into dumpster and bees started to swarm and stung EE on the lt side of forehead.
## 6537                                                                                                                                                                                   EE was putting trays into carrier and metal rod popped and struck EE in the mouth
## 6538                                                                                                                                                                        EE was putting up an exhibit and a foreign object was blown into EE's eye by a gust of wind.
## 6539                                                                                                                                                                         EE was putting up dishes and feet slipped out from under her nad she hit her hand and head.
## 6540                                                                                                              EE was putting up pens for livestock show at fairgrounds and was cutting electric fence with pliers when a piece from the wire flew into his right eye
## 6541                                                                                                                                         EE was putting up shower partition in bathroom. He stood up from bending over and hit hand on towel rack. Abrasion to scalp
## 6542                                                                                                                       EE was questioned defendant, defendant pulled away and began to run down hallway, EE began pursuit and took defendant to the floor in hallway
## 6543                                                                                                                                                                 EE was raising window for washing and it came loose (frame and glass), striking EE across the nose.
## 6544                                                                                                                                                                                            EE was raking and bagging leaves when something went into his right eye.
## 6545                                                                                                                                                       EE was reached for a box stored under the staiwelland bumped his head head was bleeding due to the contusion.
## 6546                                                                                                                                                EE was reaching down to pick something up off the floor, she fell on the floor, hitting head on tablehit arm on deck
## 6547                                                                                                                                             EE was reaching for something and did not notice glass pasteur pipette left in unsafe spot. It broke it got in left eye
## 6548                                                                                                                                                  EE was reaching for the keys in the passbox, when another employee, open the outside door, hitting him in the face
## 6549                                                                                                                                         EE was reaching in a bunch of plants to remove a plant to put new museum plant in and accidentally poked himself in the eye
## 6550                                                                                                                                                                        EE was reaching into next stall to get tissue and bumped head on sanitary napkin receptacle.
## 6551                                                                                                                                                                      EE was reaching over head to return chafin ract totop shelf and it slid hitting bridge of nose
## 6552                                                                                                                                                                                                         EE was reaching to cut water valve off causing dust to fly.
## 6553                                                                                                                                                                                         EE was reaching to get something and something fell and hit EE in the head.
## 6554                                                                                                                                                               EE was reaching to hang up an apron when she lost her balance and fell striking back of head on floor
## 6555                                                                                                                                                         EE was rearranging filews and a metal plate she placed on top of and it fell down hitting EE in the rt eye.
## 6556                                                                                                               EE was recycling & placing trash in dumpster outside of joyner library when a piece of construction paper loosened from the bag & hit her in the eye.
## 6557                                                                                                                                                                           EE was redirecting a student and student swung and hit EE with a closed fist in the mouth
## 6558                                                                                                                                                           EE was redirecting patient about use of telephone and patient struck EE cutting EE's eye with fingernail.
## 6559                                                                                                                                                                           EE was redirecting patient to quiet room & patientstruck EE in the eye and broke glasses.
## 6560                                                                                                                                                                      EE was redirecting patient when patient struck EE with free hand & poked him in the right eye.
## 6561                                                                                                                                                                     EE was redirecting patient wheo was beating on windows w/ fists, patient began to attack EE. ()
## 6562                                                                                                                                                        EE was redirecting property destraction of a resident and resident hit staff in the nose causing it to bleed
## 6563                                                                                                                                                                                                                 EE was redirecting pt, pt struck EE in right eye ()
## 6564                                                                                                                                                          EE was referring students with eye problems to physicians/nurses for treatment at student health center ()
## 6565                                                                                                                                                                                         EE was refitting pipe which exploded and part of the pipe hit EE in head ()
## 6566                                                                                                                                                             EE was relocating msds, removed msds from wall & then rubbed (both) eyes. Both eyes started burning. ()
## 6567                                                             EE was relocating wheelstops (including rebar) from parking lot, to be installed at another location. A piece of debris flew into his eye at the time and was not noticable until later on 6/3/2011. ()
## 6568                                                                                                                                                                                 EE was removing a box from cart when cart tipped on side and struck EE in forehead.
## 6569                                                                                                                                                                         EE was removing a cord from a box of books when the cord came loose striking EE in the face
## 6570                                                                                                                                                                          EE was removing a garage door when it slipped from the track and struck the EE on the head
## 6571                                                                                                                                                                    EE was removing a hep lock from a pt when the pt jerked causing blood to splatter into EE lt eye
## 6572                                                                                                                                                                                                        EE was removing a light bulb when a piece went into left eye
## 6573                                                                                                                                                                                                 EE was removing a light cover, dust/metal parts got in right eye ()
## 6574                                                                                                                                     EE was removing a piece of glass from a window anddust blew back in his face. He was wearing safety glasses when this occurred.
## 6575                                                                                                                                   EE was removing a screw from a chair using a screwdriver-the screwdriver came up and hit EE in the left eye also breaking glasses
## 6576                                                                                                                                     EE was removing a student from a fight when the other student accidently struck the EE in the head instead of the other student
## 6577                                                                                                                                                 EE was removing barricade from back of a truck when leg of barricade hit side of truck. Mouth hit leg of barricade.
## 6578                                                                                                                          EE was removing book shelving, a top cross bar was taken out too soon and EE was under shelf working on upwright support. Cut top of head.
## 6579                                                                                                                                                              EE was removing bottle of all purpose cleaner from a locker when the cleaner splashed into his rt eye.
## 6580                                                                                                                                                                                      EE was removing brush and cutting back limbs and came in contact w/poison ivy.
## 6581                                                                                                                                                   EE was removing car from frame machine when he fell off machine and hit head on the care and edgeof frame machine
## 6582                                                                                                                                                                                                                                        EE was removing ceiling tile
## 6583                                                                                                                                                                   EE was removing ceiling tile & insulation dust fell into EE's left eye. Correal abrasion left eye
## 6584                                                                                                                                                                                                    EE was removing ceiling tile and something fell into EE's rt eye
## 6585                                                                                                                                                                                                   EE was removing ceiling tile and something fell into EE's rt eye.
## 6586                                                                                                                  EE was removing ceiling tile to replace a valve. When tile was removed debris fell behind his safety goggles and into right eye. Corneal abrasion.
## 6587                                                                                                                                      EE was removing ceiling tiles when something got into his eye. Visiting mother in roanoke rapids andbegan to exp eye problems.
## 6588                                                                                                                                      EE was removing chairs from area where renovation was being done. Stacking chairs and chair bounced back hitting EE in nose ()
## 6589                                                                                                                                                                                                    EE was removing client shoes when client kicked her in the face.
## 6590                                                                                                                                                                                                                 EE was removing concrete. Piece blew into right eye
## 6591                                                                                                                                                                                   EE was removing detergent from washing machine and detergent splashed into lt eye
## 6592                                                                                                                                EE was removing eha from client and clip broke from the transmitter strap and struck EE in the eye resulting in a coloneal abrasion.
## 6593                                                                                                                          EE was removing existing electrical conduct from a wall when dust particles on the duct fell into his eyes. EE was wearing safety glasses.
## 6594                                                                                                                                                                                                EE was removing form from shelf when paper brushed rt eye cutting it
## 6595                                                                                                                                                        EE was removing glassware from a base bath using (koh) chemical. Drops splashed on eyelid causing irritation
## 6596                                                                                                                                                                                   EE was removing ic chips off of hard drives and a piece of chip flew into rt eye.
## 6597                                                                                                                                                              EE was removing insulation from around pipe when some dust fell down around the shield of his glasses.
## 6598                                                                                                                                                                EE was removing ladder from cage and the shelf part that you sit on came loose and fell on EE's head
## 6599                                                                                                                EE was removing large stones, glass and other hazardous material from a newly laid park trail when a gust of wind blew material into EE left eye. ()
## 6600                                                                                                                                                                                      EE was removing leaves from gutters and got bark, pollen or debris in his eye.
## 6601                                                                                                                                                                                                       EE was removing limbs when he was struck in the eye by a limb
## 6602                                                                                                                                  EE was removing loose tree limb above his vehicle. Pulling of the limb caused it to snap & fragment hit in eye. Laceration rt eye.
## 6603                                                                                                                                      EE was removing ornamental tobacco plants from university grounds he had an allergic reaction to these plants in his left eye.
## 6604                                                                                                                                                 EE was removing poison ivy. EE got ivy resin on arms, wiped sweat from face and received severe irritation to face.
## 6605                                                                                                                                                                                            EE was removing restraint from juvemnile and juvn strauck EE in the jaw.
## 6606                                                                                                                                                            EE was removing restraints from an inmate when the inmate stuck officer in the lt eye with the handcuffs
## 6607                                                                                                                                                               EE was removing restraints from an inmate- inmate hit EE in the jaw w/ closed fists and handcuffs on.
## 6608                                                                                                                                  EE was removing restraints from the locker. EE straightened up, turned around and walked into corner of step (spiral staircase) ()
## 6609                                                                                                                                                                                    EE was removing screw tip from injection mold, wrench slipped striking forehead.
## 6610                                                                                                                                                                                            EE was removing some items from freezer and hit head on the door handle.
## 6611                                                                                                                                EE was removing staples from document with staple remover, staple broke and became a projectile and impaled r eye and became lodged.
## 6612                                                                                                                                                                    EE was removing staples from the vacuum when the handle bounced back and hit EE in the right eye
## 6613                                                                                                                                                                            EE was removing sticks from trunk when trunk lid fell down across the bridge of his nose
## 6614                                                                                                                                                                                                EE was removing tailgate (stuck) suddenly it was loose.... Right eye
## 6615                                                                                                                                                                                        EE was removing teeth from newborn pigs when one ricocheted into her (l) eye
## 6616                                                                                                                                        EE was removing the cover plate on electrical Jun-ction box stove when something fell from stove andlodged in this left eye.
## 6617                                                                                                                                     EE was removing the old supply line when he raisedup to come from under the sink basin hit lt cornerof hisforehead on the sink.
## 6618                                                                                                                       EE was removing the stage. The top was being moved and the other person dropped his end and EE was pushing the other end and he went into it.
## 6619                                                                                                                                                                                     EE was removing trash bag from can when overwhelming smell bothered her eyes ()
## 6620                                                                                                                                                                                 EE was removing tree branch beside road with chainsaw, when dust blew into his eye.
## 6621                                                                                                                                                  EE was removing tree limbs from fences and pasturewhile pulling a limb an unknown object fell into the EE left eye
## 6622                                                                                                                                        EE was removing trees after the storm and chainsaw pinched - turned it off and branch popped up and strikilng EE in the lip.
## 6623                                                                                                                                                                                                                          EE was removing vines from azalea hedge ()
## 6624                                                                                                                                                                                                                                EE was removing wet ceiling tiles ()
## 6625                                                                                                                                                                          EE was repairing a fish cage when she stabbed herself with the scissors that she was using
## 6626                                                                                                                                                           EE was repairing a urinal and when the urinal was flushed the urinal exploded and sprayed debris in face.
## 6627                                                                                         EE was repairing a wrecked dodge charger and a small particle of metal from grinding welded surfaces went behind his safety goggles and entered the corner of his left eye.
## 6628                                                                                                                                                                                              EE was repairing leaking chlorine line when exposed to chlorine vapors
## 6629                                                                                                                           EE was repairing light fixture. While using pliersto cut copper wire small piece of wrie snapped hitting right eye. Abrasion to right eye
## 6630                                                                                                                                                                                               EE was repairing pipe that broke and sprayed chemicals in his face ()
## 6631                                                                                                                                                                                   EE was repairing the light fixture overhead and particles fell into his left eye.
## 6632                                                                                                                   EE was repairing/installing a cd rom & scratched ear with screwdriver. EE was startled by a noise which caused him to poke screwdriver in rt ear.
## 6633                                                                                                                                                                              EE was replacing a lense cover when a piece of foreign matter fell in his eye left eye
## 6634                                                                                                                                                                                                            EE was replacing bedding when some got into her left eye
## 6635                                                                                                                                                                             EE was replacing bottle of micro-quat in dish machine and chemical splashed into lt eye
## 6636                                                                                                                                                                                EE was replacing light bulb and bulb broke and some of the glass went into EE'e eye.
## 6637                                                                                                                                                                                   EE was replacing parts of tape and slung the alcohol off and it went into EE eye.
## 6638                                                                                                                                                                                                  EE was replacing someething and a piece of grit got into EE's eye.
## 6639                                                                                                                                                                                                          EE was replacing ultraviolet lights in the mechanical room
## 6640                                                                                                                 EE was repositioning patients foot when she began pulling Mrs Smith's hair and pulled her head to the top of geri chair/ table-top. *see log notes*
## 6641                                                                                                                                                                                                  EE was resetting airfreshner in women's bathroom; injured left eye
## 6642                                                                                                                   EE was responding to a call running emergency traffic, lost control of his vehicle and struck a ditch. Left side of his head / knot above temple.
## 6643                                                                                                EE was responding to a call. When he entered into a curve he lost control of his vehicle and the vehicle overturned and came to rest on the shoulder of the road. ()
## 6644                                                                                                                    EE was responding to a fight on f-unit when an inmate who was bleeding blew blood in her face while she was trying to separate him fr the fight.
## 6645                                                                                                                                                  EE was responding to a man down call, slipped on a white powder susbstance on the floor, hitting head on the door.
## 6646                                                                                                                            EE was responding to an emergency call, left her post trying to contact c/o broadnax, afterward she walked into support pole. Right eye.
## 6647                                                                                                                                   EE was responding to an trouble call at student union--while performing his duties, EE turned around and hit his head on the wall
## 6648                                                                                                                        EE was responding to call-observed an on coming veh in his lane-EE ran off the road to avoid collision and l/cntrl of veh and hit embankment
## 6649                                                                                                                     EE was responding to code 300. He was exiting out of medical when he hit head on glass part of the door crushing gold crown on front left tooth
## 6650                                                                                                                                                                                      EE was responding to code yellow when he fell and hit his head on the bargate.
## 6651                                                                                                                                                                    EE was responding to fight, he was breaking up the fight when he was accidently sprayed in eyes.
## 6652                                                                                                                                                EE was responding to medical emergency. EE was getting bag out of the trunk and hit head on lid. Laceration to scalp
## 6653                                                                                                                                     EE was restocking his area so it would be ready for next work day while resocking with the forklift something went into his eye
## 6654                                                                                                                           EE was restocking lab supplies when she broke a bottle of 5% sodium hydroxide; the chemical splashed on her forehead & got into her eyes.
## 6655                                                                                                                                                                                               EE was restraining a client and was kicked the thenose by a co-worker
## 6656                                                                                                                                                          EE was restraining a dog when its left forelimb struck her in the eye, causing a rt upper eyelid abrasion.
## 6657                                                                                                                           EE was restraining a person-after felt gritty material-noticed 2 front teeth were chipped EE felt due to clenching teeth during restraint
## 6658                                                                                                                                                         EE was restraining a student and student made contact with student's closed fist and caused fcae to be red.
## 6659                                                                                                                                                                                                    EE was restraining a student and the student hit and spit on EE.
## 6660                                                                                                                                                                                                     EE was restraining an inmate when inmate struck him in the face
## 6661                                                                                                                                                                                    EE was restraining disruptive student and the student punched EE in the left eye
## 6662                                                                                                         EE was restraining pt on to transport board then again in restraint bed, pt leaned forward and spat in EE's mouth, later noticed bloody spit on clothing ()
## 6663                                                                                                                                                                                              EE was restraining pt, pt turned began hitting EE in face/head area ()
## 6664                                                                                                                                                                                                         EE was restrianing student and was struck above the rt eye.
## 6665                                                                                                                   EE was resuspending a pallet of bacterial membranepreparation by repeated aspiration in 1ml syringe. A drop of preparation flew into EE left eye.
## 6666                                                                                                                                                                                          EE was retraining an inmate when the inmate struckee in the face with fist
## 6667                                                                                                                                                              EE was retrieving a broom from the closet when a mop fell striking him on the rt side of head and neck
## 6668                                                                                                                  EE was retrieving a piece of plywood from the backof his truck. Strong gust of wind caught wood which picked up employee and slammed him to ground
## 6669                                                                                                                                                                 EE was returing to surace after diving into lake- another diver jumped into lake and both hit heads
## 6670                                                                                                                       EE was returning a patient from pt when as they were walking up the wheelchair ramp, water was being poured out of window through water hose.
## 6671                                                                                                                                                                 EE was returning back from lunch and EE tripped on the brick sidewalk nad fell. Injured head, ribs.
## 6672                                                                                                                                                                                                                    EE was returning car, trunk slammed on EE's head
## 6673                                                                                                                          EE was returning clean clothes as he turned to respond to an inmate he stepped on the end of a push broom lying on the floor struck lt eye
## 6674                                                                                                                                                               EE was returning from collecting temperatures of compost when a gust of wind blew debris in his face.
## 6675                                                                                                                                   EE was returning from conference-dropping person carpooled with-helping person with bags-lost balance on steps and fell backwards
## 6676                                                                                                                                                           EE was returning from lunch after sitting outside and passed out landing on concrete cutting chin and lip
## 6677                                                                                                                                                                          EE was returning from removing sign from brick wall, rubbed eye and it began to swell/burn
## 6678                                                                                                                                                                                     EE was returning from service call when he slippedup steps breaking front teeth
## 6679                                                                                                                                                      EE was returning to her desk & fainted hitting herhead on the desk. Before this she was c/o pain in her chest.
## 6680                                                                                                                                                    EE was reviewing a document in my office when I lifted my eye glasses and accidently stuck myself in the lt eye.
## 6681                                                                                                                                    EE was reviewing client records and stood up and struck head against cabinet door that was open and did not realize it was open.
## 6682                                                                                                                                                                              EE was reviewing student art work, piece of angle iron fell from art work hitting head
## 6683                                                                                                                                                   EE was riding a horse-the road curved and horse took the curve abruptly, and EE was thrown from horse into a tree
## 6684                                                                                                                                                                                                 EE was riding a mower under a tree and branch struck EE in the eye.
## 6685                                                                                                                                            EE was riding in ez-go with another EE. Driver misjudged the width of the rock and hit it. EE hit head on window of door
## 6686                                                                                                                                                                                                              EE was riding in vehicle and hit bump and broke tooth.
## 6687                                                                                                                              EE was riding in vehicle when vehicle was struck from behind. Internal rear view mirror came loose at impact and struck EE in mouth ()
## 6688                                                                                                                                                        EE was riding on transfer bus when another vehiclestruck bus, brakes applied, EE bumped head on side of bus.
## 6689                                                                                                                                                                              EE was riding on van picking up clients from work and stopped and pick up a ivey plant
## 6690                                                                                                                                                                                   EE was rinsing acid from glassware in sink and the acid splashed across eye/face.
## 6691                                                                                                                                                                      EE was rising from chair & tangled her foot in computer cord & hitting her head & side on desk
## 6692                                                                                                                                   EE was roasting marshmallows with a student, the child accidentally hit him in the corner of his lteye with the marshmallow stick
## 6693                                                                                                                                                              EE was rolling out paper towels when dispenser came open and hit bridge of nose. Bruises and abrasions
## 6694                                                                                                                                                                       EE was rolling up drain snake and it jumped off and it popped EE in the face and cut lt cheek
## 6695                                                                                                                                                                            EE was rotating milk in cooler a stack of milk turned over hitting EE on the bottom lip.
## 6696                                                                                                                                                                        EE was routing cable and the cable end struck him in the right eye causing redness and pain.
## 6697                                                                                                                                                                                              EE was rubbing eye with sleeve that had methyl bromide in the clothing
## 6698                                                                                                                                      EE was running books from shelves to customers, he came underneath the stairs and hit his head on the stairwell metal edge. ()
## 6699                                                                                                                                                   EE was running down the hall when EE pushed a swinging door open, swung back and hit EE on the head above the eye
## 6700                                                                                                                                                                        EE was running intervention prgrm- client head slipped out of helmet and hit EE on the head.
## 6701                                                                                                                     EE was running lab tests when he accidentally dropped an open tube. The tube hit the floor and blood plasma splashed onto face & into right eye
## 6702                                                                                                                                                                               EE was running water in machine; he added clorox and clorox splashed in EE's left eye
## 6703                                                                                                              EE was sampling a pizza made with chicken, when EE bit down the piece of chicken had a fragment of bone in it, caused upper right front tooth to crack
## 6704                                                                                                                                                                       EE was sand blasting and the blasting hood was defective sand blew around seal into both eyes
## 6705                                                                                                                                                                                                         EE was sanding and dusting and something got into EE's eye.
## 6706                                                                                                                                                                                                                   EE was sanding metal wagon and object hit rt eye.
## 6707                                                                                                                                                                                                         EE was santizing hand sw/spraylens and spray went into eye.
## 6708                                                                                                                              EE was sawing the plaster out of a ceiling to repair a leaking pipe when plaster debris fell over top of head, got debris in both eyes
## 6709                                                                                                                                                                                                     EE was sawing wedge blocks and saw blew saw dust into right eye
## 6710                                                                                                                         EE was scraping floor when he fell, hitting his head, neck & shoulder causing a scalp hematoma & laceration, shoulder sprain & head injury.
## 6711                                                                                                                                                                          EE was scraping paint & bark from a tree when an object fell into and lecerated right eye.
## 6712                                                                                                                                                                                                 EE was scraping paint from a propane tank it popped into EE's eyes.
## 6713                                                                                                                                                                    EE was scratched across the nose by a resident whowas swinging his arm due to a behavior problem
## 6714                                                                                                                                                                            EE was scratched by a non human primate through the cage and across his right eyelid. ()
## 6715                                                                                                                                                                                                           EE was scratched by a patient when asked to get off phone
## 6716                                                                                                                                                                                                                      EE was scratched in the right eye by a client.
## 6717                                                                                                                                                                                                EE was scratched on chin during a seclution--lft chin minor abrasion
## 6718                                                                                                                                                      EE was scrubbing floor with bleach & it May have splashed in his eye causing swelling, pain & blurr-ed vision.
## 6719                                                                                                                                                                        EE was scrubbing toliet and the some of the cleaning material (kreem keen) got in her eye ()
## 6720                                                                                                                                                              EE was scuba diving and had trouble clearing ears lasting loss of hearing in lt ear and ringing in ear
## 6721                      EE was scuba diving as part of the summer field school. The following day had diving pain in his left ear. He was prescribed antibiotic ear drops for a badly infect ear canal at his visit to the outer banks urgent care on 12 June 2010. ()
## 6722                                                                                                             EE was scuba diving for research when he descended to the sea floor too rapidly to adequately equalize ear pressure and ruptured his right ear drum. ()
## 6723                                                                                                                                                                      EE was searching the yard looking down when she looked up and struck the window with her head.
## 6724                                                            EE was seated inside his patrol car on the shoulder of interstate 40 at the scene of a collision. EE car was struck from behind by a jeep cherokee that had hydroplaned and traveled off the roadway. ()
## 6725                                                                                                                                                            EE was securing a load of brush to a dump truck when a small over hanging branch poked the EE in the ear
## 6726                                                                                                                                                                                               EE was securing fire dampers in hvac ductwork, particle flew into eye
## 6727                                                                                                                                                                                      EE was sercuring lock onto sally port gate when her head struck the razor wire
## 6728                                                                                                                                                 EE was servicing a golf cart using an air hose to blow off the engine when battery corrosion blewinto his right eye
## 6729                                                                                                                                                                                                                  EE was serving breakfast and was hit in the throat
## 6730                                                                                                                                                                                                      EE was serving food on line and chicken crumbs got into rt eye
## 6731                                                                                                                                               EE was setting her personal items down, when straightening up from bending over, hit her forehead on corner of shelf.
## 6732                                                                                                                                                                                  EE was setting up and computer and hit head on desk while coming out from under it
## 6733                                                                                                                                                                EE was setting up client meal and client struck EE in th face, causing sudden movement & back spasms
## 6734                                                                                                                          EE was setting up microphone when teh stand gave away-microphone was projected into EE's mouth giving her a fat lip and chipping frt tooth
## 6735                                                                                                                                                                 EE was setting up room and moved wardrobe. A tray fell off the wardrobe striking EE in the face. ()
## 6736                                                                                                                                                      EE was shaking down the closet, when he bent down to pick up a piece of paper when he hit his head on a screw.
## 6737                                                                                                                                                                                           EE was shaking out sheets when something flew out of sheet into left eye.
## 6738                                                                                                                 EE was shampooing & towel drying patients hair. Eewent to brush the front when patient struck out with his right hand & hit EE on left side of head
## 6739                                                                                                                                                                  EE was sharpening bush axe with grinder and metal shavings entered right eye under safety glasses.
## 6740                                                                                                                                                                                                 EE was shaving a client and was scratched in the eye by the client.
## 6741                                                                                                                                                                                                         EE was shelving books and dust particles flew into left eye
## 6742                                                                                                                                         EE was shelving books in book case when case broke and shelf tumbled down on EE left side of forehead and bridge of nose ()
## 6743                                                                                                                             EE was shoveling snow and treating the area with salt. He wiped his face with sleeve of coat and felt pain and swelling in left eye. ()
## 6744                                                                                                                                                                                    EE was showing another EE where to trim the bush, and leaned into holly bush. ()
## 6745                                                                                                                                                                                                        EE was shredding paper. Small piece of paper got in left eye
## 6746                                                                                                                       EE was shutting off water to install new shower valves-opened trap door to shut water off-walked back inot hallway and cut head on trap door.
## 6747                                                                                                                     EE was sitting 1:1 w/pt, pt came running out door, pt hit EE in right eye, right side of head, broke glasses, also hit back of neck and arms ()
## 6748                                                                                                                                                                             EE was sitting 1:1 with pt, looked down at his watch, pt punched him in the left eye ()
## 6749                                                                                                                                                                                EE was sitting 1:1, another pt came up to EE and hit EE in the right eye/jaw area ()
## 6750                                                                                                                                        EE was sitting 1:1, pt wanted to go to nursing station, stood at red line, started swinging at EE hitting her in the head ()
## 6751                                                                                                                                                                                 EE was sitting across from Mr Ritter and lead frompencil broke and went into rt eye
## 6752                                                                                                                                                          EE was sitting and reached for a pen and the chair came out from under him. He hit his (l) ear on the desk
## 6753                                                                                                                                                                EE was sitting at computer when chair flipped overcausing EE to hit her head on the arm of the chair
## 6754                                                                                                                                                               EE was sitting at desk and desk collasped causing computer monitor to slip and strike EE in the mouth
## 6755                                                                                                                                                                                                    EE was sitting at desk and was bitten by an unidentified insect.
## 6756                                                                                                                                                                                    EE was sitting at desk when he passed out and hit head on desk-cutting forehead.
## 6757                                                                                                                                                         EE was sitting at her desk and something knocked atrophy from a shelf above her and it hit her in the head.
## 6758                                                                                                                                                    EE was sitting at her work station when offender darted into her offcie from the hallway and hit her in the face
## 6759                                                                                                                                                                                           EE was sitting at table completing paper work when something blew in eye.
## 6760                                                                                                                                                                                EE was sitting at table with his nose bleeding attempted for 30min to get it to stop
## 6761                                                                                                                                                                                        EE was sitting behind client when client suddenly headbutted EE in the face.
## 6762                                                                                                                               EE was sitting down at the table & began to stand up, but the chair leg bent underneath & EE fell backwards hittin head against wall.
## 6763                                                                                                                       EE was sitting down, talking with a co-worker that was standing above him leaning on a rail. When co-worker walked away rail fell on EE head.
## 6764                                                                                                                                   EE was sitting in a chair monitoring a patient. Patient came & stood by EE, patient began hitting EE on the left side of head. ()
## 6765                                                                                                                          EE was sitting in a chair w/ wheels; leaned to the rt slightly & the chair rolled to lt, with nothing to grab EE fell head first to floor.
## 6766                                                                                                                                  EE was sitting in a chair when the brace broke causing him to fall backwards and he struck his head against wall. Red area on head
## 6767                                                                                                                                                                                                EE was sitting in a chair when the wind blew a particle into his eye
## 6768                                                                                                                                                   EE was sitting in a day rm when a pt entered the rm and went behind him and started to strike him w/closed fists.
## 6769                                                                                                                                                                       EE was sitting in cahir for lunch and removed his cap and a foreign object fell into his eye.
## 6770                                                                                                                                                             EE was sitting in chair in dayroom, patient came up from the side of EE and hit him in th eye and nose.
## 6771                                                                                                                                     EE was sitting in chair that was against a wall. She leaned her head back and the back of her head (right side) hit the wall ()
## 6772                                                                                                                           EE was sitting in chair. He leaned back in chair to get clipboard and chair broke. He fell strikingback of his head on the wall and floor
## 6773                                                                                                                    EE was sitting in counselors office feeling light headed. She got up to walk to restroom across the hall. She started to fall, hit head on door.
## 6774                                                                                                                                               EE was sitting in court room working as courtroom clerk. Judge walked by flag pole. Flag pole fell hitting EE on head
## 6775                                                                                                                             EE was sitting in dayroom chair watching hallway. Without warning patient kicked EE in the (left) side of head while EE was sitting. ()
## 6776                                                                                                                                                                 EE was sitting in dayroom when a patient came up from behind her and hit her in eye with open hand.
## 6777                                                                                   EE was sitting in dayroom, patient approached EE & stated get up out of my seat. Then patient reached out hand & then stood back & punched EE in the (left-side) of EE's face. ()
## 6778                                                                                                                                                        EE was sitting in his patrol vehicle due to traffic congestion, when he was struck in the rearby a mini van.
## 6779                                                                                                                                          EE was sitting in office chair when it broke. She fell to the ground hard, causing pain in head, neck, back and shoulders.
## 6780                                                                                                                                                                            EE was sitting in patrol vehicle completing paperwork when a moth flew into his left ear
## 6781                                                                                                                               EE was sitting in prone postion from removing ignitor from heater system and hit head on water drain valve approx 2 1/2 ft from floor
## 6782                                                                                                                                                       EE was sitting in the emergency lane on I40 and a car swerved off the road and struck EE vehicle from behind.
## 6783                                                                                                                                                                                    EE was sitting in veh when another veh ran off the road and sideswiped EE's veh.
## 6784                                                                                                                                                   EE was sitting on swing with client. Another client came up behind her and hit her on head with aluminum ball bat
## 6785                                                                                                                                                                    EE was sitting on table w/writer out on courtyard, patient swung at EE unprovoked. Injkured eye.
## 6786                                                                                                                                                       EE was sitting watch & felt something crawling on his neck. Spider bit behind left ear. EE stepped on spider.
## 6787                                                                                                                                      EE was sitting with a client and the client was going to restroom and tried to hit EE-EE turned his head and hit nose on desk.
## 6788                                                                                                                       EE was sitting with a patient in dayroom. EE went to sit with other staff, & saw patient right in front of EE. Patient hit EE on left eye. ()
## 6789                                                                                                                                                                                EE was sitting with a patient on close observationwhen something flew into EE's eye.
## 6790                                                                                                                                                                   EE was sitting with resident when resident threw a game board at EE and struck EE in the forehead
## 6791                                                                                                                                                                                                    EE was slapped from behind by a resident on lt side of the face.
## 6792                                                                                                                                                                                EE was slapped in face by a patient causing her face to be red and her ears to ring.
## 6793                                                                                                                                                                                                                       EE was slapped on the rt side of face by a pt
## 6794                                                                                                                                                                                                                 EE was slapped repeatedly on the head by a resident
## 6795                                                                                                                      EE was slowing to make a right turn when the vehcile he was operating was struck from rear. EE was thrown up and hit head on roof and cut leg.
## 6796                                                                                                                                                                                            EE was sorting mail at station when bullentin board fell on top of head.
## 6797                                                                                                               EE was speaking to a patient about washing clothes an patient became aggitated, started cussing & then swung at EE, hitting EE on the (right) jaw. ()
## 6798                                                                                                                                                                                              EE was splashed in the right eye with cleaner while in storage room ()
## 6799                                                                                                                                                                                EE was spliting wood and the maul broke, causing wedge to hit EE in the left temple.
## 6800                                                                                                                                                                                                          EE was sprayed in eye with chemical while cleaningrestroom
## 6801                                                                                                                                                              EE was sprayed in the eyes with pepper spray by other staff while trying to get control of the inmate.
## 6802                                                                                                                                                                        EE was sprayed in the face with pepper spray for a training and had a reaction to the spray.
## 6803                                                                                                                                     EE was sprayed in the face with pepper spray used for training, & had an allergic reaction of burning & irritation to his eyes.
## 6804                                                                                                                                                                                                         EE was sprayed with o. C. Spray in left eye during training
## 6805                                                                                                                                                                                                            EE was sprayed with o. C. Spray which went into left eye
## 6806                                                                                                                                          EE was sprayed with oc pepper spay and it caused an allergic reaction to eyes, face and caused glands to swell under neck.
## 6807                                                                                                                             EE was sprayed with oc spray and at the time of training there was no injuries once eyes had been flushed out have been having problems
## 6808                                                                                                                             EE was sprayed with oc spray for exercise training-EE flushed his face/eyes until burning gone-later lt eye closed and started to drain
## 6809                                                                                                                                                               EE was sprayed with oc spray. Intense pain and blurring vision lt eye. Occurred after returning home.
## 6810                                                                                                                                                                                                            EE was sprayed with oleoresin during evaluation left eye
## 6811                                                                                                                                                                                                                                    EE was sprayed with pepper spray
## 6812                                                                                                                                                                                  EE was sprayed with pepper spray during training which has caused severe headaches
## 6813                                                                                                                                                            EE was spraying a chemical in restroom and nozzle malfunctioned causing chemical to spray into EE's face
## 6814                                                                                                                                                        EE was spraying an unruly inmate with pepper spraysome of the spray was blown back into her own eyesand face
## 6815                                                                                                                                                                                    EE was spraying bolt with cleaner and it splashed under safety glasses into eyes
## 6816                                                                                                                                                                    EE was spraying building with chemicals when a gust of wind came up and blew chemicals into face
## 6817                                                                                                                                                                                      EE was spraying chemical on pot when some of the chemical went into her mouth.
## 6818                                                                                                                                                                                              EE was spraying chemicals with goggles and chemicals got into her eyes
## 6819                                                                                                                                                                                       EE was spraying disinfecant and mist got into his left eye and caused burning
## 6820                                                                                                                                                                                EE was spraying dog's pen. Dog ran up and hit gate door to pen. Door hit EE in head.
## 6821                                                                                                                     EE was spraying misture to clorox and water overhead when drops fell in eyes. EE was wearing safety glasses but goggles would have been better.
## 6822                                                                                                                             EE was spraying oil cleaner on air conditioner & removed his tinted glass to see better, chemicals from pump up sprayer got into rt eye
## 6823                                                                                                                                                                 EE was spraying penetrating oil on bolts for upcoming project and nozzle broke off. Injured lt eye.
## 6824                                                                                                                                                                                        EE was spraying pesticides in closed in areas, eyes began to swell, water ()
## 6825                                                                                                                                                                                                    EE was spraying room and accidently sprayed disinfectant in face
## 6826                                                                                                                                       EE was spraying the mildew cleaner around the toilet. EE used toilet brush to scrub it and some cleaner went into her eye. ()
## 6827                                                                                                                                                                                             EE was spraying window cleaner when chemicals mist got in the right eye
## 6828                                                                                                                                                                                             EE was spreading salt, wind was blowing and blew something in EE's eyes
## 6829                                                                                                                                                                                   EE was squatted on back dock, when he raised up he bumped head on air conditioner
## 6830                                                                                                                                                                                     EE was squatting down to replace ac compressor, stood up & hit top of forehead.
## 6831                                                                                                                                                                                                        EE was stacking cages and stack fell and hit her on the head
## 6832                                                                                                                   EE was stading at attention, locked his knees, lost conscience and fell to the floor. EE fell face first causing a laceration above his left eye.
## 6833                                                                                          EE was standing at door entrance of a peer's office and when turning to go to the front office, she ran into the hallway door frame with the right sideof her forehead. ()
## 6834                                                                                                              EE was standing at her desk when she blacked out. EE fell and hit her head on the floor, which left a bruise on back of head. EE was out for 1-3 min's
## 6835                                                                                                                                                                                                           EE was standing at inmates cell door, inmate spit in face
## 6836                                                                                                                                                           EE was standing at the gate and when he went into the poultry house he felt a sting and rubbed his lt eye
## 6837                                                                                                                EE was standing at the position of parade rest in the parking lot of rbc center for a formal insp. EE fainted and fell striking his face, chin mouth
## 6838                                                                                                                                                                                          EE was standing fire watch when metal cutting operation flew into left eye
## 6839                                                                                                                                                                                     EE was standing in a chair to dust bookshelf when she lost her balance and fell
## 6840                                                                                                                                                                           EE was standing in b dorm against the wall, inmate walked by and hit EE on the right jaw.
## 6841                                                                                                                                               EE was standing in from of patient while she was sitting. I bent over to give meds and she kicked me in the left jaw.
## 6842                                                                                                                           EE was standing in front of students door when the student slammed the door and there was ringing in EE's ear for 1hr after the incident.
## 6843                                                                                                                                                EE was standing in hallway for tornado warning and student ran past her and struck her in the forehead with his fist
## 6844                                                                                                                                                                        EE was standing in the trayline and fainted, when she fainted she hit her head on the floor.
## 6845                                                                                                                                        EE was standing inside a gate and the door of the truck hit the gate and caused the pole and gate to fall over on top of EE.
## 6846                                                                                                                        EE was standing near site where electrical contractor was working to up grade service. The steel conduit service pipe broke lose hitting EE.
## 6847                                                                                                              EE was standing on a step ladder EE had folders inhand and went to step down and missed the botom step and fell to floor. Hit head on table/twisted ak
## 6848                                                                                                                                                                     EE was standing on a step, reaching to unplug a cord from the ceiling and fell off the step. ()
## 6849                                                                                                                                      EE was standing on back of hwy 421 supervising road squad inmates when insect landed on right cheek. Insect sting to right eye
## 6850                                                                                                                                                    EE was standing on basketball court listening to lecture when he went rigid and collapsed, breaking two teeth ()
## 6851                                                                                                                                                          EE was standing on chair cleaning-stepped into basket while stepping off chair and fell laceration to head
## 6852                                                                                                                                                                   EE was standing on ground while a log was being loaded on a truck and wood chips flew into lt eye
## 6853                                                                                                                           EE was standing on ladder using cordess drill withhole saw attached when drill caught on ? And spun around and hit EE on rt side of nose.
## 6854                                                                                                                          EE was standing on the back of the feed tractor trying to turn the pto on his foot slipped off and hit his mouth on the back of the feeder
## 6855                                                                                                                                                                   EE was standing on the side of the road and vech passed by and a piece of debris flew into EE eye
## 6856                                                                                                                                                 EE was standing outside a vehicle giving a citation to a motorist when a truck came by and blew dirtinto EE rt eye.
## 6857                                                                                                                   EE was standing outside of maintenace building with papers for supervisor to sign when he felt like something was in his left eye. Sharp burning.
## 6858                                                                                                                                                                 EE was standing outside of pt's room. Pt began breaking out glass, something got into writer's eye.
## 6859                                                                                                                                                                          EE was standing resident to get bed resident headbutted her on the middle lt side of head.
## 6860                                                                                                                                                                          EE was standing w/pt in med line, EE looked away for split second, pt struck EE on chin ()
## 6861                                                                                                                 EE was starting from a stop sign to make left handturn. Did not see another vehicle coming and was hit in left side drivers door on truck. Cut head
## 6862                                                                                                                                                                   EE was startled as another EE knocked on door and stuck piece of paper in rt eye she was holding.
## 6863                                                                                                                                                                                              EE was state patient became assaultive and head butted her in the eye.
## 6864                                                                                                                              EE was steppiing upon the curb in the back of the building and lost balance and fell face forward and, broke eye glasses, scraped hand
## 6865                                                                                                                                                                                                       EE was stepping down off of step ladder and fell hitting head
## 6866                                                                                                                    EE was stepping off the dozer when he stood on dozer track he turned his body to step off the track backwards. He slipped and fell on right side
## 6867                                                                                                                                        EE was stepping onto mower and hit his head on the mower top. His head was cut and EE applied bandage from first aid kit. ()
## 6868                                                                                    EE was stepping out of elevator when she tripped. Elevator floor did not level with floor and she stumbled hitting her head on the wall and fell, hitting knees on the floor. ()
## 6869                                                                                                                                                                                            EE was stepping up on parking lot/walkway and fell face first into curb.
## 6870                                                                                                                                                                                                                    EE was stiring sauce and it splashed in left eye
## 6871                                                                                                                                                                                         EE was stirring hay to dry and wind blew a small piece of hay into left eye
## 6872                                                                                                                                                                                                           EE was stirring up solution and it sprayed into left eye.
## 6873                                                                                                                                                                                                        EE was stocking a storage room when his eyes started to burn
## 6874                                                                                                                                                                        EE was stocking drink coolers when she dropped a glass bottle and the cap hit her in the eye
## 6875                                                                                                                                                                                                       EE was stocking front when he was poked in the eyeby a briar.
## 6876                                                                                                                                      EE was stooped down putting file in drawer when another EE left top cabinet drawer open. She raised up hand hit head on drawer
## 6877                                                                                                                                                     EE was stooping down to pick up object from under desk. Bumped head as she was going down to pick upthe object.
## 6878                                                                                                                                                                                  EE was stopped at the direction of construction worker her car was hit from behind
## 6879                                                                                                                         EE was stopped for traffic when his patrol car was struck in rear by another motor vehicle. Cut above lt eye, pain in neck and lt shoulder.
## 6880                                                                                                                                                                                                    EE was straightening wire on reels and one struck him in the eye
## 6881                                                                                                                                                                EE was stripping floor when he bent over to clean edge of floor & hit his head of a towel dispenser.
## 6882                                                                                                                                                                                           EE was stripping horse stall with wood shewings debris blew into left eye
## 6883                                                                                                                                                                                        EE was struck EE in the face with closed fist and the attack was unprovoked.
## 6884                                                                                                                                                                  EE was struck above the safety glasses by some brick chips he was removing from the deck building.
## 6885                                                                                                                                                                                                                       EE was struck against nose by residents hand.
## 6886                                                                                                                                                                                                                                EE was struck by a client in the jaw
## 6887                                                                                                                                                                                               EE was struck by a client on rt cheek while attempting to give a shot
## 6888                                                                                                                                                                                                          EE was struck by a door while exiting.... Injured forehead
## 6889                                                                                                                                                            EE was struck by a patient who was running on the way back from an x-ray. Injured arm, hand, face, head.
## 6890                                                                                                                                                                                                     EE was struck by a student and apparently recieved a black eye.
## 6891                                                                                                                                                                                                               EE was struck by a suspect while attempting to arrest
## 6892                                                                                                                               EE was struck by a suspects vehicle while the suspect was trying to avoid apprehension-multiple scrapes and loss of hearing in rt ear
## 6893                                                                                                                                                                                                               EE was struck by agitated pt in the r cheek and r eye
## 6894                                                                                                                                                                                                                            EE was struck by an inmate in the lt eye
## 6895                                                                                                                                                                                      EE was struck by an inmate on the forehead injuring lt cheek and below the eye
## 6896                                                                                                                                                                                                                 EE was struck by an inmate on the left eye abrasion
## 6897                                                                                                                                                                                                               EE was struck by an inmate on the lt side of the head
## 6898                                                                                                                                                                                                                                       EE was struck by bicyclist ()
## 6899                                                                                                                                                                        EE was struck by football when one student missed it, hitting him in the temple and eye area
## 6900                                                                                                                                                                                                                      EE was struck by inmate in the rt ear and face
## 6901                                                                                                                                                                                                     EE was struck by inmate while restraining. Bruise on lower lip.
## 6902                                                                                                                                                                                                             EE was struck by juvenile on the right side of the head
## 6903                                                                                                                                                                                                        EE was struck by patient in face, across nose and upper back
## 6904                                                                                                                                                                                            EE was struck by patient on the left side of the head during altercation
## 6905                                                                                                                                                                           EE was struck by patient on the rt side of the face - lacerated lip and loose upper tooth
## 6906                                                                                                                                                                                             EE was struck by the hand truck that she was usingto move boxes... Nose
## 6907                                                                                                                                                                                                             EE was struck from behind the right ear with handcuffs.
## 6908                                                                                                                                                                                    EE was struck in chin and jaw are by the cart thatshe was loading c)919-931-9487
## 6909                                                                                                                                                                                                          EE was struck in eye by a branch while posting a boundary.
## 6910                                                                                                                                                                                                                                EE was struck in eye during training
## 6911                                                                                                                                                                                          EE was struck in eye while attempting to open a stuck drawer w/ metal rod.
## 6912                                                                                                                             EE was struck in face by a suspect attmepting strong armed robbery while EE was working under- cover drug invest. Facial bruised & cuts
## 6913                                                                                                                                                                                                                                      EE was struck in face by pt ()
## 6914                                                                                                                                                                                         EE was struck in forhead by set of key thrown by another EE - sm laceration
## 6915                                                                                                         EE was struck in head by hand held post driver, atetmpting to drive a post into dry pong bottom, postdriver rebounded off of post and struck EE in head. ()
## 6916                                                                                                                                                             EE was struck in head with a chair by patient, causing a laceration above his right eye / eyebrow area.
## 6917                                                                                                                                                                               EE was struck in left eye by something that was blown off parking lot by leaf blower.
## 6918                                                                                                                                                                                              EE was struck in left eye with bristles of tooth- brush by a resident.
## 6919                                                                                                                                                                                                                                EE was struck in left jaw by patient
## 6920                                                                                                                                                                                                                                   EE was struck in mouth by patient
## 6921                                                                                                                                                                                                   EE was struck in nose while breaking up a fight between students.
## 6922                                                                                                                                                                                                      EE was struck in right eye by cardboard box that was left open
## 6923                                                                                                                                                      EE was struck in right eye by inmate with his fistafter inmate was advised he was being placed on segregation.
## 6924                                                                                                                                                                                                        EE was struck in rt eye by patient who was running down hall
## 6925                                                                                                                                                                                                                                  EE was struck in rt eye by student
## 6926                                                                                                                                                                                                                      EE was struck in rt eyebrow with switch stick.
## 6927                                                                                                                                                                                                                               EE was struck in the EE by a resident
## 6928                                                                                                                                                                                                  EE was struck in the back of the head by a book thrown by a studen
## 6929                                                                                                                                                                           EE was struck in the corner left eye by a notebookas she was getting paperwork off shelf.
## 6930                                                                                                                                                                                                                EE was struck in the eye and the mouth by a resident
## 6931                                                                                                                                                                                                                               EE was struck in the eye by a patient
## 6932                                                                                                                                                                                          EE was struck in the eye by a patient causing his glasses to fall off face
## 6933                                                                                                                                                                                              EE was struck in the eye by a staple while taking down bulletin board.
## 6934                                                                                                                                                                                           EE was struck in the eye with a balled up piece ofpaper; injured left eye
## 6935                                                                                                                                                                                                                   EE was struck in the eye with a stick... Left eye
## 6936                                                                                                                                                                                                                              EE was struck in the face by a patient
## 6937                                                                                                                                                                                                                                  EE was struck in the face by a pt.
## 6938                                                                                                                                                                                                     EE was struck in the face by a resident while in resident room.
## 6939                                                                                                                                                                 EE was struck in the face by an agitated patient causing a laceration on the right side of his nose
## 6940                                                                                                                                                                                              EE was struck in the face by inmate while escorting the inmate to cell
## 6941                                                                                                                                                                                                                                EE was struck in the face by patient
## 6942                                                                                                                                                                                                                   EE was struck in the facial area on the lt cheek.
## 6943                                                                                                                                                                                                                              EE was struck in the fce by a patient.
## 6944                                                                                                                                                                                                      EE was struck in the forehead above his right eye by the door.
## 6945                                                                                                                                                                                            EE was struck in the forehead by a block while trying to repair a light.
## 6946                                                                                                                                                                                                 EE was struck in the head by a baton while assisting with an inmate
## 6947                                                                                                                                                                                                                       EE was struck in the head by a falling screen
## 6948                                                                                                                                                                                                                             EE was struck in the head by a juvenile
## 6949                                                                                                                                                                                                                                EE was struck in the head by inmate.
## 6950                                                                                                                                                                                                                  EE was struck in the head with a vcr by a student.
## 6951                                                                                                                                                                                                                         EE was struck in the jaw/cheek by an inmate
## 6952                                                                                                                                                                                                                           EE was struck in the left eye by a client
## 6953                                                                                                                                                                                                                           EE was struck in the left eye by a limb..
## 6954                                                                                                                                                                                        EE was struck in the left temple while he was attaching wheels to helicopter
## 6955                                                                                                                                                                                                                            EE was struck in the lt eye by a patient
## 6956                                                                                                                                                                                                                    EE was struck in the lt temple area by an inmate
## 6957                                                                                                                                                                                      EE was struck in the middle of forehead by belt cover while test firing rifle.
## 6958                                                                                                                                                                                                                              EE was struck in the mouth by a client
## 6959                                                                                                                        EE was struck in the mouth by a fireman simulator round during a training scenario. Busted upper lipand loose upper incisor tooth. Lip/tooth
## 6960                                                                                                                                                                                                          EE was struck in the mouth by a patient while changing him
## 6961                                                                                                                                                                                                                            EE was struck in the mouth by a resident
## 6962                                                                                                                                                                                                                            EE was struck in the mouth by a student.
## 6963                                                                                                                                                                                                                           EE was struck in the mouth injuring teeth
## 6964                                                                                                                                                                                                                                           EE was struck in the nose
## 6965                                                                                                                                                                                                                          EE was struck in the nose by a client.. ..
## 6966                                                                                                                                                                                                                             EE was struck in the nose by an inmate.
## 6967                                                                                                                                                                                                                  EE was struck in the right eye by a foreign matter
## 6968                                                                                                                                               EE was struck in the right eye by a piece of tree limb while unloading truck of tree clippings at the city land-fill.
## 6969                                                                                                                                                                                                                            EE was struck in the right eye by a twig
## 6970                                                                                                                                                                         EE was struck in the right eye by an electric pencil sharpener that was thrown by a student
## 6971                                                                                                                          EE was struck in the right eye by small branch while cleaning ground surface by hand so that evacuation or archaeological test could begin
## 6972                                                                                                                                                                                                                            EE was struck in the rt eye by a patient
## 6973                                                                                                                                                                                       EE was struck in the rt eye by a student causing bruise and lost contact lens
## 6974                                                                                                                                                                                                EE was struck in the rt eye by an inmate involved in a use of force.
## 6975                                                                                                                                                                                                EE was struck in the rt eye by client causing contact lens to break.
## 6976                                                                                                                                                                                                                              EE was struck in the rt eye by inmate.
## 6977                                                                                                                                                                                                                 EE was struck in the top of head while playing ball
## 6978                                                                                                                                                                                                 EE was struck on forehead by baton during use of force with inmate.
## 6979                                                                                                                                                EE was struck on head and neck from behind by patient. EE has a concussion and neck injury. Employee is out of work.
## 6980                                                                                                                                                                                                                                EE was struck on head by rollup door
## 6981                                                                                                                                                                                                        EE was struck on the forehead with batons by another officer
## 6982                                                                                                                                                                                                         EE was struck on the head by a wire while trying to cut it.
## 6983                                                                                                    EE was struck on the head with a food tray by another employee. EE was seen in er, due to rtw on 9/24/09. EE diagnosed with minor head injury and a contusion ()
## 6984                                                                                                                                                EE was struck on the head-rt temple area by an out-of-control juvenile using his elbow while EE was restraining him.
## 6985                                                                                                                                                                                                                      EE was struck on the lower lt jaw by an inmate
## 6986                                                                                                                                                                                     EE was struck on the lt side of the head by a patient who was waiting for meds.
## 6987                                                                                                                                                                                                                     EE was struck on the side of face by a patient.
## 6988                                                                                                                                                                                    EE was struck on the side of face by patient and then patient grabbed EE's hand.
## 6989                                                                                                                                                                                          EE was struck on the side of the head from a metaloar. Removing a manhole.
## 6990                                                                                                                                                                                                           EE was struck on the top of her head with a plastic rake.
## 6991                                                                                                                     EE was struck over the lt eye by the sleeve of the red man suit worn by a iscat instructor the issued head gear mouth piece were in at the time
## 6992                                                                                                                                                                                                              EE was struck several times in head and face by inmate
## 6993                                                                                                                                                                                                                                EE was struck with a cane by student
## 6994                                                                                                                                                       EE was struck with handcuffs on his left temple by an inmate while escorting the inmate to the nurse's office
## 6995                                                                                                                                                                                                                            EE was struclk in the face by a patient.
## 6996                                                                                                                                                                            EE was stuck in left eye by patient, glasses broken, small laceration to left brow area.
## 6997                                                                                                                                                                                                                               EE was stuck in the eye by a patient.
## 6998                                                                                                                                                                                          EE was studying trailor when he fell and a stick punctured his bottom lip.
## 6999                                                                                                                                                                             EE was stung behind right ear by a wasp that had anest in a fence pipe near segregation
## 7000                                                                                                                                                                                                                                   EE was stung by a bee on his lip.
## 7001                                                                                                                                                                                       EE was stung by a bee on the left ear while he wasworking on the guard tower.
## 7002                                                                                                                                                                                                                                 EE was stung by a bee on the lt eye
## 7003                                                                                                                                                                                                       EE was stung by a bee on the rt eye while guarding an inmate.
## 7004                                                                                                                                                                                                                 EE was stung by a bee on the rt temple while mowing
## 7005                                                                                                                                                                EE was stung by a bee while drinking a soft drink at the maintence shop. Stung on the top of tongue.
## 7006                                                                                                                                                                  EE was stung by an unknown insect while knocking on a client's front door for routine application.
## 7007                                                                                                                                                                                                                                       EE was stung by bee on rt ear
## 7008                                                                                                                                                                                    EE was stung by bees on the lt side of face while assisting inmates with flowers
## 7009                                                                                                                                                                                                                                        EE was stung by wasp on jaw.
## 7010                                                                                                                                                                                                                                      EE was stung in face and head.
## 7011                                                                                                                                                                                                    EE was stung on back of head by what appeared to be a bumble bee
## 7012                                                                                                                                                                                                                      EE was stung on face by bee - bee sting rt eye
## 7013                                                                                                                                                                                                              EE was stung on lower left eye lid while dumping trash
## 7014                                                                                                                                                                                                                        EE was stung on the bottom lip by some bees.
## 7015                                                                                                                                                                                                                               EE was stung on the head by an insect
## 7016                                                                                                                             EE was supervising a spontaneous recreational activity the EE stepped on a shoe which caused him to fall. EE chipped tooth on a dresser
## 7017                                                                                                                                                                  EE was supervising a working resident vacumming the floor when a piece of trash flew into his eye.
## 7018                                                                                                                             EE was supervising bathroom breaks, inmate refused to go to his room, EE approached, inmate shoved him and then struck him in the face.
## 7019                                                                                                                                                        EE was supervising campers in ocean-a wave came up and knocked EE down-on the way up a camper hit EE in head
## 7020                                                                                                                  EE was supervising community work crew when he wasoperating chainsaw and cut a tree into another tree knocking dead limb from tree. Cut back head.
## 7021                                                                                                                             EE was supervising community work squad inmates shrugging a ditch when swarm of bees came from ditch and EE was stung in right eye area
## 7022                                                                                                                                                              EE was supervising fence crew. He bent down to go under the razor wire and struck my head on the wire.
## 7023                                                                                                                                                    EE was supervising hay being ground. During grinding process the wind blew debris from grinder intoee's left eye
## 7024                                                                                                                                                                                   EE was supervising inmates and a foreign particle became lodged in her right eye.
## 7025                                                                                                              EE was supervising inmates and drinking a cup of coffee, set coffee down, went back and started drinking it and noticed something foreign mixed in it.
## 7026                                                                                                                                                                                                               EE was supervising inmates and was stung by an insect
## 7027                                                                                                                   EE was supervising inmates cleaning windows when approached by inmate who had window crank in hand & struck EE below the left eye. Bruised lt eye
## 7028                                                                                                                      EE was supervising inmates in welding room at cannery where inmates were welding and grinding metal. Burned eyes when looking and welding work
## 7029                                                                                                                                               EE was supervising inmates movement when inmate poked EE in the eye and punched the officer several times in the face
## 7030                                                                                                                                                          EE was supervising inmates of ctr who were assigned to comm wrk crew, strong winds blew sand into EE r eye
## 7031                                                                                                                             EE was supervising inmates tear down walls. EE re- moved saftyglasses to wipe them clean, he was struck in left eye with flying debris.
## 7032                                                                                                                                                          EE was supervising inmates while they were loadingstraw, a gust of wind blew a piece of straw in EE's eyes
## 7033                                                                                                                                                EE was supervising inmates while they were using weedeaters to cut grass and a small unknown object flew into rt eye
## 7034                                                                                                                                                                             EE was supervising juvenile on the way juvenile assaulted EE by hitting him in the head
## 7035                                                                                                                                        EE was supervising pinata exhibit during fall fling and was accidently struck in the head by a student swinging a broomstick
## 7036                                                                                                                                                                                           EE was supervising some campers at the beach and she got sand in her eye.
## 7037                                                                                                                                                           EE was supervising student who was required to clean bathroom and student sprayed disinfectant in EE' eye
## 7038                                                                                                                                                                             EE was supervising students during recreation and basketball hit EE in the back of head
## 7039                                                                                                                  EE was supervising students in assignment to wing unit (detention) when 4 students blindsided EE with an unknown object hitting him above left eye
## 7040                                                                                                                                                             EE was supervising students playing basketball, two dtudents ran into EE knocking him against the wall.
## 7041                                                                                                                                                                          EE was supervising students. Student became upset, picked up 2x4 and hit EE over the head.
## 7042                                                                                                                                                                        EE was supervising, when student hit Mr. Sheppard in the back of the head with a closed fist
## 7043                                                                                                                                                                          EE was surveying wooded area and turned around and walked into tree limb scratching lt eye
## 7044                                                                                                                                                                             EE was suspect of contracting head lice at ncscc/sent to wic by infection control nurse
## 7045                                                                                                                                                                                            EE was sweeping dirt from earthworm containers anddirt blew up into face
## 7046                                                                                                                                                                 EE was sweeping the floor with a dry mop shaking the dust off of it. Right eye became irritated. ()
## 7047                                                                                                                    EE was swimming, when one of the pool-side basket ball goals fell over & metal rim hit EE head. Head gashes, & blunt force strike rt ear & head.
## 7048                                                                                                                                                                                               EE was taken care of a patient who was resisting and kicked EE in eye
## 7049                                                                                                                                                                  EE was taking 50b forms to sherriff's office and tripped on something coming down the sidewalk. ()
## 7050                                                                                                                                                                                       EE was taking a condom cath off the tubing and the the urine splashed in face
## 7051                                                                                                                                                                      EE was taking a crate of milk from the cooler and slipped and fell injuring head arms and legs
## 7052                                                                                                                                                       EE was taking a group of students thru a live firecondition; temperature increased causing burns on both ears
## 7053                                                                                                                            EE was taking a pam of turkey to the travline whenshe slipped and fell to the floor (peaches had been drpped on floor) hitting her head.
## 7054                                                                                                                                                                                                       EE was taking a wall down when the 2x4 hit EE on the eyebrow.
## 7055                                                                                                                                                                                                        EE was taking blood pressure and got something in her rt eye
## 7056                                                                                                                                                                                     EE was taking ceiling tile down. Broken pied fell down behind glasses into eye.
## 7057                                                                                                                                       EE was taking cleaning equipment out of storage when top of box fell causing two protuding screws to puncture his rt forehead
## 7058                                                                                                                                                EE was taking down a tent canopy at a patrol display and a pole came loose and struck EE in the forehead-causing cut
## 7059                                                                                                                                                                                                  EE was taking down curtains when dust/particles fell in her rt eye
## 7060                                                                                                              EE was taking height and diameter measurements on trees planted on old farm field. EE bent down to measure and poked left eye on broken woody weed. ()
## 7061                                                                                                                                                                                                     EE was taking lap tray off wheelchair when buckle struck rt eye
## 7062                                                                                                                                     EE was taking light bulb out of dayroom. Bulb broke off at base and small piece of glass fell in eye. Corneal abrasion left eye
## 7063                                                                                                                                                                                 EE was taking mail from the mailbox, the wind blewlid down hitting her in the head.
## 7064                                                                                                                                                                                     EE was taking measurement of a wooden stud. Stood up and struck a metal object.
## 7065                                                                                                                                                                                         EE was taking mop bucket out of closetand was bitten by innsect on the eye.
## 7066                                                                                                                                                  EE was taking of residents socks, when EE was bending own resident hit EE with fist very hard l ear temple area ()
## 7067                                                                                                                                                  EE was taking off the dish machine, when he went to get the lid, it slipped and hit him in the bridge of his nose.
## 7068                                                                                                                                                                    EE was taking out the trash bag when he slipped and fell on floor striking his head on the floor
## 7069                                                                                                                                                                                                               EE was taking out trash when both eyes began to burn.
## 7070                                                                                                                                                  EE was taking over mulberry's food cart for supper when a resident met EE and pulled her hair and would not let go
## 7071                                                                                                                                                     EE was taking patient's vital signs and bell end on stethoscope swung up and hit EE in the mouth chipping teeth
## 7072                                                                                                                                                                                                     EE was taking patients out to smoke and something blew into eye
## 7073                                                                                                                                                                            EE was taking patients out to smoke one patient became upset and struck EE in the mouth.
## 7074                                                                                                                                                                           EE was taking picture in uv light-burned eyes and they swelled shut while EE was sleeping
## 7075                                                                                                                                                                                                       EE was taking pt to 1:1, pt hit EE in the face across nose ()
## 7076                                                                                                                                                                                              EE was taking pt to timeout rm when pt attacked EE. Pt hit EE in nose.
## 7077                                                                                                                                                                  EE was taking recessed lights out of ceiling, dirt and dust fell inot EE right eye, now irritated.
## 7078                                                                                                                                                                                  EE was taking resident to the bathroom and EE was hit in the eye by the rtesident.
## 7079                                                                                                                                                                                            EE was taking roll for class when a student clapped hands over his ears.
## 7080                                                                                                                                                                  EE was taking soil sample when probe jack knifed and hit EE in the mouth causing frt tooth to chip
## 7081                                                                                                                    EE was taking some boxes down from a shelf and some foreign matter fell into her face. A piece of the matter became stuck to her left eyelid. ()
## 7082                                                                                                                                                                              EE was taking trash out to dumpster and to laundry room, EE began to c/o pain in l eye
## 7083                                                                                                                                                                                                   EE was taking up food trays and inmate threw white liquid in face
## 7084                                                                                                                          EE was talking to children and bent over to shut off water on small sink. Bumped into corner of metal shelving causing cut to left eye lid
## 7085                                                                                                                                                                                                           EE was talking to client & was hit in the nose by client.
## 7086                                                                                                                                                                   EE was talking to consumer and he hit her right eye causing her contact lens to dislocate in eye.
## 7087                                                                                                                                                                         EE was talking to consumer, bent head down to hear him, when she did, consumer head butt EE
## 7088                                                                                                                                                                                        EE was talking to juvenile when he lost consciousness and fell striking head
## 7089                                                                                                                                                 EE was talking to patient about Dr. Orders and patient became combative, struck EE across rt side of face with fist
## 7090                                                                                                                                         EE was talking to sgt thru drop drawer with lid open, and the lid dropped onto the bridge of EE's nose, causing a small cut
## 7091                                                                                                                EE was talking to student about closing a door the student proceeded to hit her. EE ran and student followed her continuing to hie her in face, back
## 7092                                                                                                                                                            EE was talking to student and suddenly fell and hit temple on the radiator and had a seizure immediately
## 7093                                                                                                                                                               EE was talking to supv as he was welding; he did not look at the weld but got flash burns on his eyes
## 7094                                                                                                                                                                     EE was talking w/ patient and patient slapped facein eye area resulted in scratch on EE's face.
## 7095                                                                                                                                                                        EE was talking w/pt re a letter that they wrote, pt pushed this EE into wall, EE hit head ()
## 7096                                                                                                                                                                                        EE was talking w/pt, turned to walk away/pt struck EE in the back of head ()
## 7097                                                                                                                                                                               EE was talking with a patient, patient attempted to choke EE & hit EE in the face. ()
## 7098                                                                                                       EE was talking with another staff member, pt cam up to ask the other staff member a question, pt struck EE on the left side of the face with an open hand. ()
## 7099                                                                                                                                                                                                      EE was talking with patient, patient struck EE in the head. ()
## 7100                                                                                                                                                                             EE was talkint with client and client became out of control and hit EE on side of head.
## 7101                                                                                                                               EE was teaching a canoe class when she attempted to a 7 boat rescue, when her canoe flipped, she hit her jaw on head of a childs head
## 7102                                                                                                                       EE was teaching a fire class. Went to ignite fire unaware of rupture in the gas tank which caused a fire-EE received 1st degree burns to face
## 7103                                                                                                                                                                   EE was teaching class when eyes began to get itchy and watery - not sure if something got in eyes
## 7104                                                                                                                                 EE was teaching class; student turned on old furnace and flake of rust blew into EE's left eye winifred sumpter @ duke 919-668-7484
## 7105                                                                                                                EE was teaching her 4-6 class & EE had to expose their plates uv light. I had the students turn around & I put the plates on the light & sat next to
## 7106                                                                                                                                EE was teaching his welding class when he started to experience pain in his left eye. His eye startsto swell and the pain increased.
## 7107                                                                                                                                                                                                            EE was teaching student and caught pink eye in both eyes
## 7108                                                                                                                                                                                            EE was teaching when student shot him in the lt eye with a laser pointer
## 7109                                                                                                                                                                                                             EE was tearing down brick wall and brick wall hit head.
## 7110                                                                                                                                         EE was telling an inmate to pack his belongings, the inmate became belligerant and slapped the EE in the right side of face
## 7111                                                                                                                           EE was the operator of the bus when a jeep cherokee failed to yeild the right of way to the oncoming bus and caused a major collision. ()
## 7112                                                                                                                                                                                          EE was throwing bag into trash and juice from bag splashed in EE right eye
## 7113                                                                                                                                                        EE was throwing trash in the dumpsite & trash from the trash bag blew into her eyes. Trash blew in left eye.
## 7114                                                                                                                                                                                                                 EE was thrown against door by patient striking head
## 7115                                                                                                                                                                                 EE was tightening bolts on flatbed trailer floor when metal sliver fell in his eye.
## 7116                                                                                                                   EE was tightening insert to a radiator w/ vice grip pliers, vice grip slipped off nut + metal debris flew into EE's right eye, causing irritation
## 7117                                                                                                                                                                                                 EE was touching same surface and door knob as a pt w/conjunctivitis
## 7118                                                           EE was tracing down wiring on a piece of equipment. Stuck head through the rails to look for wires. When he pulled his head back through rails, struck back of head. EE bumped head and smashed mouth. ()
## 7119                                                                                                                                                 EE was tracking through bladen lake state park while going through woods. Twig entered left ear puncturing ear drum
## 7120                                                                                                                                                 EE was training with cap stun spray and was sprayed in eyes. EE's right eye did not clear up. Eye became irratated.
## 7121                                                                                                                                                              EE was tranferring client from shower chair to wheelchair and tightened up and felt strain in shoulder
## 7122                                                                                                                                 EE was transferring chemical from one drum to another and got chemical on hand. He washed his hands later and rubbed his right eye.
## 7123                                                                                                                                        EE was transferring cleaning solution from a gallon to quart spray bottle when loosened cap the solution blew into eye/face.
## 7124                                                                                                                                                       EE was transporting an arresstee to jail and arrstspit in EE face and the saliva went down face and into eye.
## 7125                                                                                                                                                                                                   EE was transporting an inmate when something flew into his rt eye
## 7126                                                                                                                                             EE was transporting client in wheelchair. EE bent down to move feet out of the way. Client hit EE in right side of face
## 7127                                                                                                                                     EE was transporting files onto the elevator using the utility cart when the bundle came loose hitting EE in the nose; fractured
## 7128                                                                                                                                                            EE was transporting inmates on the units jail bus when trash from outside the vehicle flew in his rt eye
## 7129                                                                                                                                                                                                 EE was transporting pt to transport board, pt spat in EE's face. ()
## 7130                                                                                                                          EE was traveling in her car when she ran a stop sign and hit another vehicle. Her head hit the windshield. Rt side of head hit windshield.
## 7131                                                                                                                                                            EE was traveling on hwy 18 w/some residents and another vehicle struck EE and rolled down an enbankment.
## 7132                                                                                                                                                      EE was traveling on jones street when a vehicle ran a red light striking EE vehicle causing severe head injury
## 7133                                                                                                                                    EE was traveling on us 64 when another vehicle turned in front of EE car causing a collision. Lt shoulder lt lower leg and head.
## 7134                                                                                                                                                      EE was traveling south on nc561 wehn a veh turned left in front of EE's veh causing EE to hit veh onleft side.
## 7135                                                                                                                       EE was traveling west on hwy 70 and a vehicle pulled into trooper williams lane of travel causing williams to strike the vehicle in his lane.
## 7136                                                                                                                                                                                                               EE was travelling in car and was broad sided by a van
## 7137                                                                                                                                                       EE was traversing rugged terrain lighting fire during prescribed burn. A small limb struck EE in the left eye
## 7138                                                                                                                                                                                                 EE was treated for severe head lice- lice for 3 months, head shaved
## 7139                                                                                                              EE was treating an inmate while another nurse was nearby removing gloves which contained potentiallyinfection fluids. Latex snapped leading to a... ..
## 7140                                                                                                                                                                                                                EE was trimming and a piece of acrylic hit left eye.
## 7141                                                                                                                                                                    EE was trimming around the police house, and struck his head on an iron bar hanging from a tree.
## 7142                                                                                                                                                                                   EE was trimming trees. Sawdust blew into EE's lefteye. Foreign obhect in left eye
## 7143                                                                                                                                                                                   EE was trimminmg bushes and distrubed nest of ground bees. EE got four stings. ()
## 7144                                                                                                                                          EE was tryign to restrain a student and they both backed up against the wall wall. EE has shoulder pain and mid back pain.
## 7145                                                                                                                                                                                                     EE was trying ot redirect client and client hit EE in the face.
## 7146                                                                                                                                                                                                       EE was trying to arrest offender, who resisted and assaulted.
## 7147                                                                                                                                                                  EE was trying to assist a another staff who was being attacked with a metal flashlight by juvenile
## 7148                                                                                                                                                        EE was trying to assist fire dept with an accidentvictim that was deranged; he was punched EE in theleft jaw
## 7149                                                                                                                                                                             EE was trying to break up a fight and was struck in the left temple twice by a juvenile
## 7150                                                                                                                                                                                                    EE was trying to break up fight between, pt kicked EE in face ()
## 7151                                                                                                                                 EE was trying to calm agressive pt who was swinging at staff. EE was struck in the l jaw by pt. EE later had pain in left hip area.
## 7152                                                                                                                             EE was trying to calm down an agitated resident & redirect the resident and then the resident head butted EE in the face below the eye.
## 7153                                                                                                                                                                     EE was trying to calm down client and client headbutted EE in the rt jaw-client had a helmut on
## 7154                                                                                                                                                                              EE was trying to control an out-of-control studentand the student spit in EE'a rt eye.
## 7155                                                                                                                                                                                   EE was trying to control student and student struck EE in the mouth with his head
## 7156                                                                                                                               EE was trying to cut compcare book apart with heavy duty paper cutter-tried to release cutter arm and it fell striking EE in the head
## 7157                                                                                                                                                                EE was trying to de-esculate a patient. Patient was in a theraputic hold and spit & scratched EE. ()
## 7158                                                                                                                                                         EE was trying to enter truck when high winds thrust the door open suddenly, stiking him in the forehead. ()
## 7159                                                                                                                                                                                              EE was trying to explain to pt that it was time to leave, pt struck EE
## 7160                                                                                                                                                    EE was trying to gain control of two juveniles who was out of control and fighting. EE got hit on the right jaw.
## 7161                                                                                                                                                             EE was trying to get a container of bleach from the inmate, it dropped and splattered into EE's rt eye.
## 7162                                                                                                                EE was trying to get a student to sit down on the bus who was standing on his seat. Bus jerked causing EE to hit head on the metal bar on the window
## 7163                                                                                                                               EE was trying to get an inmare to lock up his cellthen inmate lunged ar her. EE sprayed inmate with mase and she was hit in the face.
## 7164                                                                                                                                          EE was trying to get client into another clients room. Client became upset and hit EE on right sideof face and on left jaw
## 7165                                                                                                                          EE was trying to get client to go to living room so that client would not wake other patient's client refused, then struck EE in the face.
## 7166                                                                                                                                      EE was trying to get hook off saftey chain to replace-hit with hammer-hook flew off and hit EE above rt eye causing laceration
## 7167                                                                                                                                           EE was trying to get patient to take a pill and the patient struck patient repeatedly in the face causing abcess in tooth
## 7168                                                                                                                                     EE was trying to get soap out of dispenser and it splashed in her eye. Lt eye visible redness, tearing, and swelling of eyelid.
## 7169                                                                                                                                                                 EE was trying to help resident off floor when resident threw up her hand striking EE in the rt eye.
## 7170                                                                                                                                                                                       EE was trying to hold patient, patient got loose & swung fist across face. ()
## 7171                                                                                                                                                       EE was trying to invervene when consumer was trying to bite another consumer. Consumer hit her twice in face.
## 7172                                                                                                                                             EE was trying to keep a student from fighting, when another student came from behind me and hit me on the side of face.
## 7173               EE was trying to keep a student from hurting herself. EE was holding student in a nci hold when the student use her feet to climb up the wall. When EE tried to back up from the wall, student pushed w/her feet causing EE to fall & hit her head ()
## 7174                                                                                                                           EE was trying to keep an inmate from advancing on c/o turner, EE fell to the ground and held onto inmate until help arrived. Injured eye.
## 7175                                                                                                                                                         EE was trying to keep client from going into traffic and EE tripped on curb and fell breaking 2 front teeth
## 7176                                                                          EE was trying to leave medical records to go to the restroom. When she tried to open the door it seemed stuck, she pulled hard and it thrusted towad her and hit her right side temple. ()
## 7177                                                                                                                     EE was trying to maintain control of patient who was agitated and aggressive. EE flipped over patient straining left shoulder and scratched arm
## 7178                                                                                                                                                       EE was trying to move around lines of school groupshe tripped and fell head first-cutting 6cm above left eye.
## 7179                                                                                                               EE was trying to open a jammed door to his office suite and the door slammed back & hit him on the right cheekbone cracking tooth, & later broke off.
## 7180                                                                                                                                                     EE was trying to open the door to his classroom, flipped his wheelchair backward, hit his head on the floor. ()
## 7181                                                                                                                                        EE was trying to place aggressive patient in mechanical restraints-patient kicked EE in the head with heavy shoes-laceration
## 7182                                                                                                               EE was trying to place an out of control student in his room. The student poked EE in rt and then continued hitting EE in rt eye and rt side of nose.
## 7183                                                                                                                                         EE was trying to place combative patient in pic hold, patient kicked EE in the side of the head & EE had neck and arm pain.
## 7184                                                                                                                           EE was trying to redirect another resident when eeturn around with resident. Resident were swing with close fist & hit EE in face &eye ()
## 7185                                                                                                                                                      EE was trying to redirect res, resident hit EE in face and rip scrub shirt, breaking or bending eye glasses ()
## 7186                                                                                                                                                                             EE was trying to remove a glass joint and a small piece of glass went into EE's rt eye.
## 7187                                                                                                                             EE was trying to remove a handle on a dolly to change it to a cart. When EE tried to move handle, it came up and hit EE in the chin. ()
## 7188                                                                                                                                                             EE was trying to remove gear from road scrapper loosened gear with hammer and fragment flew into rt eye
## 7189                                                                                                                                                                                          EE was trying to restrain 1 of two students that had gottebn into a fight.
## 7190                                                                                                                                                              EE was trying to restrain an out of control student and got hit in the eye and pulled his rt shoulder.
## 7191                                                                                                                                                                                      EE was trying to restrain inmate when he hit him on the left side of his head.
## 7192                                                                                                                                                                                 EE was trying to restrain patient and patient kicked door and struck EE in the head
## 7193                                                                                                                                                                     EE was trying to restrain patient pic hold. Both fell to floor. EE's back of head hit the wall.
## 7194                                                                                                                                                                            EE was trying to restrain student and the student headbutted him causing a chipped tooth
## 7195                                                                                                                                                                            EE was trying to restrain students and was hit on the left side of the head, temple area
## 7196                                                                                                                                                         EE was trying to retract the projection screen when the screen came out of the wall and hit her in the head
## 7197                                                                                                                                                                       EE was trying to seat agitated patient into chair. Patient kicked right side of neck and jaw.
## 7198                                                                                                                                                                   EE was trying to secure door to air handler- latchcame loose and air pressure blew door into face
## 7199                                                                                                                                                      EE was trying to separate 2 patients that were fighting & got hit in nose, right elbow & scratched left arm ()
## 7200                                                                                                                                                                                          EE was trying to separate two students fighting, &was struck in the mouth.
## 7201                                                                                                                                                                    EE was trying to shut window that was open, was pushing frmae from outside when glass shattered.
## 7202                                                                                                                                                     EE was trying to stop a patient from climbing the fence to escape. Sustained facial scratch and broken glasses.
## 7203                                                                                                                                                 EE was trying to subdue inmate. Inmate struck EE in face with fists. EE's glasses were also knocked off and broken.
## 7204                                                                                                                                                            EE was trying to subdue two inmates from fighting when one of the inmate struck EE with fist to the face
## 7205                                                                                                                                       EE was trying to to escape from unit and tech let patient arm go and patient pushed EE into the wallhitting head on the wall.
## 7206                                                                                                                                                                          EE was trying to untangle phone cord by pulling itreceiver hit her in mouth. Cracked tooth
## 7207                                                                                                                               EE was trying to verbally correct student and student became outraged and threw telephone receiver at EE which hit under his left eye
## 7208                                                                                                                         EE was turning around in his chair and his chair slipped, fell hitting his head on the office table near by. Laceration right side on head.
## 7209                                                                                                        EE was turning left onto jake alexander blvd when another vehicle failed to stop at a stop light and struck the front left quarter of the patrol vehicle. ()
## 7210                                                                                                                                                                                                                     EE was turning on a fan and eye began to swell.
## 7211                                                                                                                                                                                                 EE was turning on a floor fan and something was blown in his rt eye
## 7212                                                                                                                                                                                   EE was turning on music and EE wa head butted in the lt cheek and loosened crown.
## 7213                                                                                                                                                                         EE was turning on water faucet to water shrubs/ stood up and turned/shrub scratched his eye
## 7214                                                                                                                                                                                                      EE was turning on water valve when dirt got into his right eye
## 7215                                                                                                                        EE was turning on water when a student came up behind him and put him in choke hold another student punched him in the mouth. Contusion lip.
## 7216                                                                                                                                                                             EE was turning patient when he coughed in my face, and spit/salvia went into right eye.
## 7217                                                                                                                  EE was turning round hand brake wheel to apply brakes on care. EE's foot slipped cauging him to partial fall down and hit chin/mouth. Broken tooth
## 7218                                                                                                                            EE was turning the composter at the poulty unit, using a manure fork to turn. As he got a place of the compost material got into his eye
## 7219                                                                                                                                                    EE was unbuckling client's seatbelt, and client went into a behavior and poked EE in the right eye with fingers.
## 7220                                                                                                                                  EE was unclogging water fountain w/ caustic chemical, splashed up into eyes. EE had removed safety glasses because they fogged up.
## 7221                                                                                                                                                   EE was undressing client, assisting with removing pants. Client head butted EE and then hit EE with fist on neck.
## 7222                                                                                                                                                                                                    EE was unloading a truck when the driver pulled off and EE fell.
## 7223                                                                                                                                                  EE was unloading boxes w/inmate and felt a sting to rt side of forehead.. Hit it & looked to find a black spider..
## 7224                                                                                                                                                                                 EE was unloading elevator when inside doors began to close stricking EE in the head
## 7225                                                                                                                                                                               EE was unloading firewood from dumptruck, a small piece of the bark entered left eye.
## 7226                                                                                                                                                                                   EE was unloading limbs and debris from trailer. Tree branch hit him in right eye.
## 7227                                                                                                                         EE was unloading mulch material with a shovel, and putting mulch around shrubbery. Wind blew mulch in eys. Problem was noticed the next day
## 7228                                                                                                                   EE was unloading project vehicle and hit edge of bback window of another window accidently. He got very door laceration on hil face near his nose
## 7229                                                                                                                                                                               EE was unloading stock from truck, lost balance and fell striking face on truck body.
## 7230                                                                                                                                                                                                           EE was unloading storage building, wind blew trashin eyes
## 7231                                                                                                                                                                 EE was unloading traffic books onto dolly when books hit dolly. Handle went back and hit EE on head
## 7232                                                                                                                                          EE was unlocking door, holding lamenated materialsthe corner of one of the materials scratched EE onthe corner of the eye.
## 7233                                                                                                                                                            EE was unlocking entrance doors when brace/frame came loose and fell hitting her just above her forehead
## 7234                                                                                                                                                                  EE was unlocking the gate and her hand slipped andher mouth hit the fence and broke her frt tooth.
## 7235                                                                                                                                                                              EE was unpacking plants when a tree limb from one of the boxes hit her in the left eye
## 7236                                                                                                                                                     EE was unsecuring records from a cart that was secured by a bundgie cord and cut chin and inside of lower mouth
## 7237                                                                                                                                                                                 EE was unstacking chair and EE wsa pulling and lift and the chair fell on EE' head.
## 7238                                                                                                                                                                                             EE was unstopping a tolit, plunger popped back, cleaner got in left eye
## 7239                                                                                                                                                                                                                  EE was unstopping an lavatory drain and drain stoo
## 7240                                                                                                                                                                                 EE was untangling a telephone cord and the cood popped up and struck EE in the eye.
## 7241                                                                                                                                                               EE was unwrapping electrical cord, fell on floor & splashed stripper in right eye. Injured right eye.
## 7242                                                                                                                                                                                                              EE was using a backpack blower and nose began bleeding
## 7243                                                                                                                              EE was using a broom and approximately 2 gallons of chemical to clean a trash can. Some of the chmeical splashed up and hit EE in eye.
## 7244                                                                                                                                                                EE was using a chainsaw to cut rhodendron. Dust generated from the chainsaw irritated his right eye.
## 7245                                                                                                                                      EE was using a chipping hammer to remove slag/wearing face sheild/piece of slag hit EE in chest and went under shield into eye
## 7246                                                                                                                    EE was using a grin on wall window cord blown from inside window sill into grinder brush wrapping instantly around brush hitting EE int he face.
## 7247                                                                                                                            EE was using a letter opener to remove plastic wrap which was wrapped around calendar, slipped & the tip of opener went into her lt eye.
## 7248                                                                                                                                                   EE was using a plasma cutter in body shop to cut up metal and wasn't using protective goggles irritation to eyes.
## 7249                                                                                                                                                                                              EE was using a pressure washer when foreign objectflew into her lt eye
## 7250                                                                                                                                                            EE was using a syringe to take a chemical and got a small amount of reactive chemical in eye. Right eye.
## 7251                                                                                                                                         EE was using a wire brush to polish a piece of steel when a piece of wire flew off, he inhaled it& it lodged in his throat.
## 7252                                                                                                                                                                                 EE was using air hose to blow debris and EE dropped hose - blowing debris in rt eye
## 7253                                                                                                                                                                             EE was using air ram to clean a drain, materials in drain splashed back into EE's eyes.
## 7254                                                                                                                EE was using an auger to drill holes in the soil for a new shelter post. Auger got hung on a root causing handle to swing around hitting EE in mouth
## 7255                                                                                                                                                                EE was using an iron pull rod to pull postcom in the rain and the rod slipped hitting EE in the nose
## 7256                                                                                                                                                                                                    EE was using belt sander and realized something was in EE's eye.
## 7257                                                                                                                                                                                               EE was using bleach to clean & it splashed in eye causing irritation.
## 7258                                                                                                                                  EE was using bmnc(chemical) in garbage disposal then filled bucket w/water & threw water under thetray belt water splashed in eye.
## 7259                                                                                                                                                   EE was using bolt cutter to cut a padlock off of a storage building. ??? Flew back and hit EE underhis right eye.
## 7260                                                                                                                                                                                                                EE was using cleaning spray and got some in her eyes
## 7261                                                                                                                                                       EE was using force on inmate, inmate swung over theshield and struck EE in the l eye. Abrasion over left eye.
## 7262                                                                                                                         EE was using ladder to clean windows, retrieve the window squeegee, that dropped, started back up ladder, ladder kicked out from under him.
## 7263                                                                                                                                                                                                                  EE was using leaf blower and debris went into eyes
## 7264                                                                                                                                                                              EE was using pipe to tighten a binder the pipe slipped off and hit him in the forehead
## 7265                                                                                                                                                       EE was using prune saw and tree was wet causing saw to kick back and hit EE in jaw.. Lost tooth on rt upper..
## 7266                                                                                                                                                                                                       EE was using router and sander when sawdust went into rt eye.
## 7267                                                                                                                                                       EE was using some vice grips to hold a piece of rubber down and the rubber broke hitting EE between the eyes.
## 7268                                                                                                                                                EE was using spray paint-parks sealer primer and had an allergic reaction to the propellant causing infected sinuses
## 7269                                                                                                                       EE was using table saw cutting board when piece of board flew up and hit him on cheek and in eye. Corneal abrasion with swelling and bleeding
## 7270                                                                                                                     EE was using table saw to cut board when dust flew into face when EE took his safety glasses to brush off debris he rubbed some into his lt eye
## 7271                                                                                                                            EE was using telephone, when he finished he leaned over to hang up phone and struck head on water hose bracket mounted on wall. Cut head
## 7272                                                                                                                                                                       EE was using the bathroom and the metal toilet paper dispenser fell open and hit her head. ()
## 7273                                                                                                                                                       EE was using the expose to clean bathroom and accidently rubbed her right eyelid while holding expose bottle.
## 7274                                                                                                                                                                                                                    EE was using transiluminator w/o face protection
## 7275                                                                                                                                                                                               EE was using weedeater and got close to the a/c unit and hit forehead
## 7276                                                                                                                                                                                                               EE was using weedeater and something flew in EE's eye
## 7277                                                                                                                                                                    EE was using welder and auto darkening glasses lightened causing light from arc to flash in eyes
## 7278                                                                                                                                                                                 EE was vacuuming entrance rugs, a object flew backfrom vacuum and hit EE in the eye
## 7279                                                                                                                                          EE was vacuuming in the doorway when the door released from the magnet and closed hitting EE on the right side of her head
## 7280                                                                                                                                                                                                     EE was verbally trying to redirect pt, pt hit EE in the face ()
## 7281                                                                                                                                            EE was verifying type of fiber optic port on a new system. Looking directly into port and eye crossed path of the laser.
## 7282                                                                                                                                                 EE was victim of assault; struck on chin w/pt's fist. Fell back hitting back of head on table; then hehit the floor
## 7283                                                                                                                                                             EE was videotaping artillery fire while wearing ear protection and suffered hearing loss and concussion
## 7284                                                                                                                                                                                                            EE was w/1:1 pt, pt began striking EE in face/upper body
## 7285                                                                                                                                                                           EE was wahsing off vents with oven cleaner and hot water and eyes became blurry and itchy
## 7286                                                                                                                          EE was waiting for incoming traffic before turningwhen a car struck his vehicle from the rear.. EE received a knot on the back of his head
## 7287                                                                                                                                                                                                    EE was waiting for limbs to cut when the saw dust got into eyes.
## 7288                                                                                                                                             EE was waiting in dining hall for duty was struck in left eye by an object that was either thrown or flew into his eye.
## 7289                                                                                                                                                                    EE was waiting on tables - open champagne bottle when the cork came out and hit EE in the rt eye
## 7290                                                                                                                                  EE was waiting to turn left when he saw a vehicle in his rear veiw mirror not slwoing down. EE's vehicle was struck from the rear.
## 7291                                                                                                                                            EE was waking up an inmate that was on work release inmate woke up swinging his arms and his finger went into EE's eye's
## 7292                                                                                                                                                                    EE was walking a student back to the cottage and ajuvenile threw a rock striking EE in the face.
## 7293                                                                                                                                                                EE was walking across parking lot and slipped and fell due to icy conditions. Injured head and back.
## 7294                                                                                                                                                                                                    EE was walking across parking lot and slipped causing concussion
## 7295                                                                                                                                                          EE was walking across parking lot to come into front of building when she slipped on ice/snow and fell. ()
## 7296                                                                                                                                                                             EE was walking across parking lot, slipped on ice causing her to fall and hit her head.
## 7297                                                                                                                                              EE was walking across the dayroom into a patient'sroom and feet shot out from undedr EE and injured back, head, wrist.
## 7298                                                                                                                                    EE was walking aisle, felt dizzy & fell down to the floor. Witness stated EE appeared to be out for 20-30 sec. Bruise on temple.
## 7299                                                                                                                               EE was walking along side patient, talking with patient, when suddenly the patient drew fist back & hit EE on the left side of jaw ()
## 7300                                                                                                                                                                                                                  EE was walking and fell on ice. EE hit head on ice
## 7301                                                                                                                                                                          EE was walking and struck his head causing him to black out and fall on his back and side.
## 7302                                                                                                                                                                                  EE was walking and stumbled and fell forward landing on hands and rt side of face.
## 7303                                                                                                                                                                                        EE was walking around at batc and fell in a hole striking nose and upper lip
## 7304                                                                                                                               EE was walking around doing inspections and trippeover water faucet and fell hitting his face on the panel. Trauma to upper rt tooth.
## 7305                                                                                                                                                               EE was walking around low duct work and beams and struck head on low beam - laceration to top of head
## 7306                                                                                                                                                      EE was walking around side of dorm unit to get inmate out of rain when she hit her head on windowthat was open
## 7307                                                                                                                                                                                               EE was walking at the gym and a patient name tag flew into EE rt eye.
## 7308                                                                                                                                   EE was walking back down fire line after flagging area. Hit dead pine branch and it snapped off flying upward striking right eye.
## 7309                                                                                                                      EE was walking back from irp and stumble on unevenpavement and fell stricking head on left side causing glasses to puncture skin near left eye
## 7310                                                                                                                         EE was walking back from the ramada inn when she sslipped & fell, hitting & causing pain in her rt foot, ankle, knee, & right side of head.
## 7311                                                                                                                                                                     EE was walking back from trailor, stumbled over an unlevel brick and fell and hit head on walk.
## 7312                                                                                             EE was walking back to her office in ragsdale hall from joyner. EE tripped on broken/uneven sidewalk and fell forward on chest, striking chin and cheek on sidewalk. ()
## 7313                                                                                                                                                                     EE was walking beside pt, pt suddenly grabbed EE's hair, pulling hard, EE later had headache ()
## 7314                                                                                                                                                                                      EE was walking between packing house to the field and fell down on the lt side
## 7315                                                                                                                                                      EE was walking briskly down hallway to mailroom when she slipped on dry hallway, appeared she hit head on wall
## 7316                                                                                                                                                                          EE was walking by and immate pulled broom out of the coset and struck EE above he's lt eye
## 7317                                                                                                                                                             EE was walking by door and was hit by protruding metal arms of closing mechanism-laceration to forehead
## 7318                                                                                                                                                              EE was walking by file cabinet and tripped over drawer hitting head and injuring rt leg and right hand
## 7319                                                                                                                                                                                 EE was walking client and wind started to blow andee felt something blow in rt eye.
## 7320                                                                                                                                                                              EE was walking client to room and client swung his arm up and hit EE above the rt eye.
## 7321                                                                                                                                                                     EE was walking client, bent down and client raisedhand resulting in EE getting rt eye scratched
## 7322                                                                                                                                                                                                  EE was walking clients to work and was stung by a flying insect ()
## 7323                                                                                                                          EE was walking down breezeway when a bug flew in his eye. He went home, used eyedrops and slept, but when he woke his eye was swollen shut
## 7324                                                                                                                      EE was walking down hall and another staff was working with rock file. EE stopped to speak to other staff and turned walking into open drawer.
## 7325                                                                                                                                                                 EE was walking down hall carrying an arm load of files and ankle gave way and fell hitting her head
## 7326                                                                                                                                                                                       EE was walking down hall when she experienced a burning feeling in right eye.
## 7327                                                                                                                                                    EE was walking down hall, turned around to look at something, when he turned back aroung he ran into a structure
## 7328                                                                                                                                                                                                         EE was walking down hallway and something got into EE's eye
## 7329                                                                                                                                    EE was walking down hallway of sally port at maintenence shop of albemarle correctional center when partical fell into left eye.
## 7330                                                                                                                                                              EE was walking down hallway, some water was on floor from washing racks. EE slipped in water and fell.
## 7331                                                                                                                                                           EE was walking down hill to enter building, feet slipped in mud EE fell backwards. Injured neck and head.
## 7332                                                                                                                                                                                                         EE was walking down ramp and slipped and fell striking head
## 7333                                                                                                                                                                                                     EE was walking down sidewalk and a gnat flew into her left eye.
## 7334                                                                                                                                                                             EE was walking down sidewalk, a truck past him, debris fm road blowed in to left eye ()
## 7335                                                                                                                                                                   EE was walking down sidewalk, and her foot struck an uneven part of sidewalk causing her to fall.
## 7336                                                                                                                                                                                                                                   EE was walking down stairs & fell
## 7337                                                              EE was walking down stairs to teach class, carrying class materials and walking stick. Her foot turned and was unable to support her weight and she fell from the third step to the middle landing. ()
## 7338                                                                                                                                                                                  EE was walking down stairwell-- tripped, fell, hit her head/neck and left foot. ()
## 7339                                                                                                                                                                                                           EE was walking down steps when something flew into lt eye
## 7340                                                                                                                                                                                 EE was walking down the 1st floor ramp and the wind blew dust got into his left eye
## 7341                                                                                                                                                   EE was walking down the corridor and slipped on the linoleum floor and hit his head against a concrete column. ()
## 7342                                                                                                                    EE was walking down the stairs and fell down the stairs causing swelling, bruises, abrasions to her left ankle, left hand, knuckles and chin. ()
## 7343                                                                                                                                                                                                       EE was walking down the stairs when she slid and fell down ()
## 7344                                                                                                                                           EE was walking down the steps leading to the sidewalk off of 10th street, and slip and fell face forward on the steps. ()
## 7345                                                                                                                                                                                 EE was walking down the steps when she lost her footing and fell on rt side of body
## 7346                                                                                                                                                                                                     EE was walking from back of truck when something blew in rt eye
## 7347                                                                                                                                  EE was walking from carrying tools when a mechanicplugged an air hose to lance. Trash blew out of lance hitting injured EE in eye.
## 7348                                                                                                                                                                         EE was walking from director's office to state vehicle when she tripped on uneven pavement.
## 7349                                                                                                                         EE was walking from east deck coming in to work. It was raining, EE says she slipped and fell on the wet crosswalk injuring chin and wrist.
## 7350                                                                                                                                                                              EE was walking from gray house to mossman and a bee stung her just inside her left ear
## 7351                                                                                EE was walking from her administrative office to her clinical office to see patients. When going down the steps between the buildings she slipped on the icy steps and fell down. ()
## 7352                                                                                                                                                             EE was walking from office to car and slipped on steel grate and fell hitting head and rt hip and elbow
## 7353                                                                                                                       EE was walking from one bldg to another and tripped in a pot hole and fell in the street injuring head, neck, back, arm, shoulder and stomach
## 7354                                                                                                                                                 EE was walking from one work activity to another and fell when her shoe caught in a broken uneven sidewalk segment.
## 7355                                                                                                                                                                                          EE was walking from parking going to work and dust blew into EE's left eye
## 7356                                                                                                                                                                                         EE was walking from post office and tripped and fell on the broken sidewalk
## 7357                                                                                                                                          EE was walking from resturant in greenville, nc and reached down to pick up a coin and struck head on corner of metal sign
## 7358                                                                                                               EE was walking from student union to martaena hall& stumped her foot on raised part of a sidewalk, stumbled forward hit face first on sidewalk,... ..
## 7359                                                                                                                                                                                                 EE was walking from the parking lot and tripped on the sidewalk. ()
## 7360                                                                                                                                       EE was walking in cutover area checking tree planting. He stpped in limb which snapped loose and hit him in the face and eye.
## 7361                                                                                                                                                                        EE was walking in front of the elevator and slippeon water on floor, hit head on brick wall.
## 7362                                                                                                                                                                                                         EE was walking in gym when she felt something in rt eye. ..
## 7363                                                                                                                                                                              EE was walking in hallway and was struck by a door opened by a student in the forehead
## 7364                                                                                                                                                                     EE was walking in her office & tripped over a bag, falling forward & hitting her face on a fan.
## 7365                                                                                                                                                                                       EE was walking in rain & wind to board shuttle bus- struck head on bus mirror
## 7366                                                                                                                                    EE was walking in south wing when he felt tingl- ing in right eye and burning sensation. EE says he was not around any chemicals
## 7367                                                                                                                                                        EE was walking in the courthouse and slipped and fell, hitting her head on the marble molding on the wall ()
## 7368                                                                                                                                              EE was walking in the hallway when he apparently lost his balance and passed out causing him to fall forward face down
## 7369                                                                                                                       EE was walking in the kitchen when she slipped on food on the floor & hit her head & left arm, leg & hip causing a concussion and contusions.
## 7370                                                                                                                     EE was walking in the shop EE turned to a answer a worker's question in another part of the shop grinding metal a piece of metal flew in EE eye
## 7371                                          EE was walking in to work; walked out of the 2nd floor of the biotech building towards the brody outpatient center and slipped and fell on the ice. She hit her head and developed a large egg-sized raise on her head. ()
## 7372                                                                                                                                                  EE was walking into building as another EE was blowing debris from sidewalk. Injured EE felt debirs go into eye ()
## 7373                                                                                                                                                               EE was walking into gene barrett bldg when some- thing flew into EE's eye, does not know what it was.
## 7374                                                                                                                                                       EE was walking into his dorm room EE slipped and fell onto the floor and struck on the dorm room door causing
## 7375                                                                                                                                           EE was walking into parking level and her right foot slipped out from under her and she fell rightcheek first onto floor.
## 7376                                                                                                                                EE was walking into stall of men's bathroom and door came off of hinges and struck EE in the forehead-did not seek medical attention
## 7377                                                                                                                                                                                                 EE was walking into the building and a moth flew into her right ear
## 7378                                                                                                                  EE was walking into the courtroom to take a file another EE came out of courtroom and hit EE in head causing EE to see stars and fall backwards ()
## 7379                                                                                                                     EE was walking looking up at mixers inappropiatelystored when she bumped into the door of a wire cage that had been left open cutting her nose.
## 7380                                                                                                                                                                                                       EE was walking on a research site & hit eye with under brush.
## 7381                                                                                                                                                                                       EE was walking on campus around bookstore and feltsomething hit his left eye.
## 7382                                                                                                                                  EE was walking on concrete sidewalk and slipped and fell when entering building - forehead, left eye, sprained hand, chipped tooth
## 7383                                                                                                                                                 EE was walking on sidewalk and contractors ladder was extended from truck and EE walked into ladder striking rt eye
## 7384                                                                                                               EE was walking on the left side of the carpentry building and walked into a window air conditioner he hit the top of his head on the unit and cut it.
## 7385                                                                                                                   EE was walking on the sidewalk along side of tower1 when she came around corner the sun was directlyin EE eyes. She did'nt see the basket hanging
## 7386                                                                                                                                                                                                        EE was walking on the sidewalk when EE stumbled and fell. ()
## 7387                                                                                                                                                                         EE was walking out door. Another EE pushed door into EE. The door hit the EE on the head ()
## 7388                                                                                                                                                                     EE was walking out of bldg and tripped over the edge of rug and fell into the door hitting nose
## 7389                                                                                                                  EE was walking out of elevator and walked right into glass wall/door with full force. Sustained injuries to face/head/lip/tooth. Cannot bite food.
## 7390                                                                                                                                                EE was walking out of office and slipped and fell hitting rt upper side of face above eyebrow bemnt frame on glasses
## 7391                                                                                                                                                                                  EE was walking out of the cpi building and something blew into EE's lt eye corner.
## 7392                                                                                                                                              EE was walking out the dor & pt came up & put hand on door to try & leave. Pt scratched the left side of EE's face. ()
## 7393                                                                                                                                                                    EE was walking out, just past the flat irons, the fans were running & blew something in her eye.
## 7394                                                                                                                                                         EE was walking outside of u3 bldg, and tripped over yellow door in midle of sidewalk with raised hinges. ()
## 7395                                                                                                                                         EE was walking outside to check to see if the door was locked and something flew into EE's eye. *denied*per gen stat 97-2**
## 7396                                                                                                                                                                  EE was walking resident to class when resident became agitated and hit staff in chin with his head
## 7397                                                                                                                                       EE was walking resident to class, who started to sib on a pole, EE went ot intervene and resident turned, grabbed EE by neck.
## 7398                                                                                                                     EE was walking through dark storage room. EE ran into shelf that was at eye level. No light switch was readily accessible. Abrasion to left eye
## 7399                                                                                                                                                                             EE was walking through doorway from storage area and hall ceiling tile fell on her head
## 7400                                                                                                                             EE was walking through forest while nest searching. She brushed a branch of a tree aside and it snapped back and hit her in the eye. ()
## 7401                                                                                                                                                                               EE was walking through guardhouse gate and slippedon wet floor hitting head and back.
## 7402                                                                                                                                                                                   EE was walking through service tunnel and hit head on concrete reinforcement beam
## 7403                                                                                                                                                                                        EE was walking through the corridor, speck of dust lodged into EE right eye.
## 7404                                                                                                                                                                             EE was walking through the parking deck and the parking gate arm came down on her head.
## 7405                                                                                                                                                        EE was walking through the parking lot that had several layers of ice on and fell hiting head on thepavement
## 7406                                                                                                                                         EE was walking through woods, tripped and hit head on tree limb sticking out, cutting left crown area requiring 3 stitches.
## 7407                                                                                                                                                                                 EE was walking thru woods during manhunt sch and a tree branch struck his right eye
## 7408                                                                                                                                                   EE was walking to another building when she slipped on ice and fell, landing on her back and hitting her head. ()
## 7409                                                                                                                                                                                    EE was walking to back door to come in and slippedon some ice, hitting her head.
## 7410                                                                                                                                                                                                      EE was walking to barn with head down and walked into a/c unit
## 7411                                                                                                                                                                                                  EE was walking to bathroom. EE tripped and fell. Contusion to head
## 7412                                                                                                                                                                            EE was walking to check on the heat in a school building and the wind blew trash in eye.
## 7413                                                                                                                             EE was walking to her car after work when she slipped in the snow and fell, hitting her left elbow. Elbow was dislocated and fractured.
## 7414                                                                                                                   EE was walking to her car after work, she tripped an fell on loose stones in the parking lot. EE was seen by her own dentist on 6-4-09. EE hurt h
## 7415                                                                                                                                                    EE was walking to her car in the parking deck and slipped on the stairs and fell injuring back of head, and back
## 7416                                                                                                                                                                                             EE was walking to her car in the parking lot and tripped over big rock.
## 7417                                                                                                                                                                                                       EE was walking to his office and foriegn object struck rt eye
## 7418                                                                                                                                                                                                                EE was walking to lakeside and bug flew in left eye.
## 7419                                                                                                                                                           EE was walking to life science building to pull bio-medical waste, when something got in his left eye. ()
## 7420                                                                                                                                                                                                  EE was walking to meeting and fell on steps hitting right forehead
## 7421                                                                                                                                                                                                     EE was walking to nutritional building and trash flew into eye.
## 7422                                                                                                                                                                                                     EE was walking to office and passed out in hallwaycutting head.
## 7423                                                                                                                                                                                               EE was walking to office and was caught by a low hanging tree branch.
## 7424                                                                                                                                                                                                     EE was walking to parking lot and fell over a parking lot bump.
## 7425                                                                                                                                               EE was walking to rear of truck to retreive notebook and hit face on corner of camper top window; injury to l-eyebrow
## 7426                                                                                                                                                                                             EE was walking to riddick hall and went to step up on the curb and fell
## 7427                                                                                                                                                                   EE was walking to the courier mail box to mail courier mail when the wind blew debris into rt eye
## 7428                                                                                                                                                                                          EE was walking to truck, slipped and fell hitting back of head on ice/snow
## 7429                                                                                                                                 EE was walking toward electronic sensored rollup door. As he walked through door it came down and struck EE on head/right shoulder.
## 7430                                                                                                                                                            EE was walking toward register when a student swung a tray over his shoulder and struck EE in the lt eye
## 7431                                                                                                                                                                                                      EE was walking toward stairs and ran into a bar striking mouth
## 7432                                                                      EE was walking towards desk/work area and caught the corner of a box with left foot and tripped, falling forward into the desk chair where the left temple/eye area hit the corner of chair ()
## 7433                                                                                                                                                                          EE was walking tried to avoid dip in sidewalk & tripped over the curb causing her to fall.
## 7434                                                                                                                                          EE was walking under workers who were repairing ceiling. Workers dropped a piece of ceiling and debris flew into EE's eye.
## 7435                                                                                                                                                                                          EE was walking up dam and a limb struck him in the face, injuring lt. Eye.
## 7436                                                                                                                                                            EE was walking up sidewalk in court yard. Fell on hand and hit face on brick. Stumbled on uneven bricks.
## 7437                                                                                                                  EE was walking up stairs at night in unlit parkinggarage & missed step. Sustained gash on right for ehead, bruised &scraped l knee & l ring finger
## 7438                                                                                                                                            EE was walking up stairs. Tripped up the stairs and hit knee and head on concrete wall. Rt knee and rt backside of head.
## 7439                                                                                                                                                                                            EE was walking up steps from parking lot and passed out at top of steps.
## 7440                                                                                                                                                                       EE was walking up the stairs in tower 4 heading to his post and a wasp stung his left ear. ()
## 7441                                                                                                                           EE was walking up the stairs when she tripped over the top step causing EE to hit her head on the hand rails and injure her left knee. ()
## 7442                                                                                                                                                  EE was walking up the steps and foot got hung on the rug on the porch. EE fell and hit forehead on the door frame.
## 7443                                                                                                                                                                         EE was walking up wet stairs trying not to step inwater and hit head on box out over steps.
## 7444                                                                                                                                                                 EE was walking w/cient in hallway and client hit EE in the eye broke glasses and glass in EE's eye.
## 7445                                                                                                                                                                                                              EE was walking when his lt eye began to itch and swell
## 7446                                                                                                                                                                            EE was walking when she fell face down on a ramp EE damaged her glasses(lens and frames)
## 7447                                                                                                                                                                                                                       EE was walking when something got in her eye.
## 7448                                                                                                                                                                      EE was walking with patient to couch and patient turned and bit EE on the rt side of the face.
## 7449                                                                                                                         EE was was holding the elevator door open and didn't realize that the door closed the other way and slammed into the left side of his head.
## 7450                                                        EE was was running radar beside southbound lane of I95 at exit 61. EE entered the roadway in the southbound lane to stop a vehicle and entered the path of asnother vehicle which struck him in the rear. ()
## 7451                                                                                                                            EE was was trying to stop patient from throwing lotion on a peer patient hit her w/fist on her nose forcing her eyeglasses into her nose
## 7452                                                                                                                        EE was washing asphalt walkway with a fire pumpeer. He had filled the tank with water. The pressure rose and the fire hose struck in eye. ()
## 7453                                                                                                                                                       EE was washing back fender of vehicle and water splashed causing debris to fly into eye causing an infection.
## 7454                                                                                                                                                          EE was washing cells off the hemacytometer and a small amount of water and bleach splashed onto EE's lips.
## 7455                                                                                                                                                                           EE was washing hands and soap dispenser malfunctuioned and soap splashed in her right eye
## 7456                                                                                                                                                                      EE was washing hands when hit head on the metal cabinet adjacent to the sink when standing up.
## 7457                                                                                                                          EE was washing inmates clothes, she wasn't aware that the gloves she was wearing were laced with powder. She removed gloves & rubbed eyes.
## 7458                                                                                                                                                                                                                    EE was washing laundry when she got soap in eye.
## 7459                                                                                                                                                                                            EE was washing pots and pans, EE told supvr. He got sanitizer in his eye
## 7460                                                                                                                                                                                                      EE was washing silver spoons and detergent splashed into r eye
## 7461                                                                                                                                                       EE was washing stairway, rinse water splashed in eye while rinsing off chemical cleaner. Irritation left eye.
## 7462                                                                                                                                                         EE was watching a patient's injury get cleaned and passed out falling backwards and hitting head on cabinet
## 7463                                                                                                                        EE was watching as inmate was mowing grass, mower ran over a rock throwing it out from under the mower hitting EE in the head over left ear.
## 7464                                                                                                                      EE was watching juvniles play basketball-she was struck by stray ball on side of her head.. ***pay *only*payments for head- not arm/shoulder**
## 7465                                                                                         EE was watching patients eat in the dining room. Two patients started fighting, EE came to separate them & one of the patients struck EE on the right side of EE's face. ()
## 7466                                                                                                                                                            EE was watering a plant when she turned it around & a leaf scratched her eye causing a corneal abrasion.
## 7467                                                                                                                                                                                                                     EE was waxing floor when insect bit him in eye.
## 7468                                                                                                                                                                                                              EE was weedeating and a rocl flew up and struck rt eye
## 7469                                                                                                                                                         EE was weedeating grass, wearing safety glasses. Something flew under his protective glasses in to his eye.
## 7470                                                                                                                                                           EE was weedeating with safety glasses on and another EE was blowing off walks when a particle blew in eye
## 7471                                                                                                                                                                                          EE was welding a metal pipe and a piece blew off and flew into EE's rt ear
## 7472                                                                                                                                         EE was welding a tractor implement and stopped he then proceeded to walk across the shop and an object flew into his rt eye
## 7473                                                                                                                                   EE was welding a weight bench in class when the weight of the bench shifted. EE fell backwards on his head and fell to the floor.
## 7474                                                                                                                                                                                           EE was welding and got welding slag in left ear work # clmt- 919-575-1190
## 7475                                                                                                                EE was welding and grinding metal on a vehicle metal fragments flew into eyebrow when he wipped the fragments from his brow a particle fell into eye
## 7476                                                                                                                                                                                           EE was welding and lense popped out of helmet- welding burns to both eyes
## 7477                                                                                                                                                                EE was welding metal together, lifted hood to check weld slag popped off weld, hitting EE in rt eye.
## 7478                                                                                                                                            EE was wiping down tables turned around and ran head on into a pole located directly behind the table in the dining area
## 7479                                                                                                                   EE was wiping sweat from forehead and piece of rust fell into his eye from back of hand. He had not washed his hands thoroughly, replacing brakes
## 7480                                                                                                                                                                                                   EE was with 1:1 pt standing in food line, pt struck EE in nose ()
## 7481                                                                                                                        EE was with a resident. When she turned around, he hit her on the r. Side of the face. She heard herjaw pop. It hurt from her chin to her r.
## 7482                                                                                                                                                                           EE was wored with resident with conjunctivitis. EE complains of left eye red and burning.
## 7483                                                                                                                                                          EE was workin in medical area, opened cabinet doorto pull supplies and door caught EE nose. Bruise to nose
## 7484                                                                                                                                                        EE was working above the ceiling running conduit and a piece of ceiling tile fell and hit EE on the forehead
## 7485                                                                                                                                                                                                                     EE was working and splashed bleach in her eyes.
## 7486                                                                                                                                                         EE was working as a flagman on road work, was struck by a passing motorist. Injuring his face, nose, groin.
## 7487                                                                                                                      EE was working at computer when she tried to sit in chair. Chair slipped, EE slipped fell, hit lt rear side of head on the corner of the wall.
## 7488                                                                                                                       EE was working at her at her desk and could smell strong fumes coming from a janitor closet. **irritation to rib cage from coughing so much**
## 7489                                                                                                                                                       EE was working at the blacksmith forge behind the architecture building, foreign particles blew intoee's eye.
## 7490                                                                                                                                                                                                   EE was working at the computer when something wentinto his lt eye
## 7491                                                                                                                                                                                                     EE was working behind uv light for 1 hour received burn to face
## 7492                                                                                                                                                                                          EE was working c-yard and due to gusty winds, sand blew in EE's right eye.
## 7493                                                                                                                                                    EE was working east yard, outside recreation, wheninmate threw a rock and hit her on the top lt sideof her head.
## 7494                                                                                                                                             EE was working fifth floor at the time inmate threw an unknown liquid hitting in her eyes face and all over her uniform
## 7495                                                                                                                                        EE was working floding shirts both client and staff reached for the shirtat the same time and clientscratched EE in the eye.
## 7496                                                                                                                                                                                      EE was working in an area w/low ceiling, stood up hit head on duct overhead ()
## 7497                                                                                                                                                                                                                 EE was working in basement and struck head on pipes
## 7498                                                                                                                                                                         EE was working in beauty shop getting equipment ready for the day when rt eye was irritated
## 7499                                                                                                                                                                                  EE was working in boiler rm, door was propped open something flew in to his eye ()
## 7500                                                                                                                                                                           EE was working in chemical area, fainted and fell on floor hitting left side of forehead.
## 7501                                                                                                                                                                                                            EE was working in classroom and got something in her eye
## 7502                                                                                                                                                                                                              EE was working in cottage and was exposed to pink eye.
## 7503                                                                                                                                                                                    EE was working in dark room accidentally expose to uv ray light and burned eyes.
## 7504                                                                                                                         EE was working in fie room where construction had recently taken place and dust was present and got under contact lenses and scratched eye.
## 7505                                                                                                                                         EE was working in holding area, removing rugs fromcages, turned around and bumped into a sliding door handle hitting rt eye
## 7506                                                                                                               EE was working in kitchen when inmate hit her in face & head area with silver pan with cheese on itpushing EE against wall. Also hit EE with his fist
## 7507                                                                                                                                                               EE was working in lab transfer syringe to syringe without proctive eyewear and chemicals got into eye
## 7508                                                                                                                   EE was working in lower control room- called sgt and stated she was feelig faint. EE was found laying on back complaining on head pain/ dry mouth
## 7509                                                                                                                                              EE was working in nsoe and while walking under thesteps, he struck his head on the bottom of the first flight of steps
## 7510                                                                                                                                                                                               EE was working in orchard he stepped in a hole andrt knee was twisted
## 7511                                                                                                              EE was working in segregation control and was coming from downstairs restroom back to the control room he tripped over top stair throwing him head fir
## 7512                                                                                                                                                                                  EE was working in shop. Another EE was welding causing a flash burn to EE left eye
## 7513                                                                                                                                                                             EE was working in the dishroom and water seeped into gloves and rash appeared on hands.
## 7514                                                                                                                                                                                                 EE was working in the eoc warehouse when he inhaled dust particles.
## 7515                                                                                                                                                                                                      EE was working in the shop when something flew into his rt eye
## 7516                                                                                                                           EE was working lower e post and in day room area of b wing. Inmate became angry removed arm from his wheel chair and hit him over rt eye.
## 7517                                                                                                                                           EE was working off ladder removing damaged ceiling tile and replacing it with new. Particles from tiles fell into eye. ()
## 7518                                                                                                                                                          EE was working on a chain saw in the service garage. EE cranked the chain saw and debris flew into his eye
## 7519                                                                                                                                                        EE was working on a life boat. Raised up and struck head on outboard motor. Sustained 2 lacerations to head.
## 7520                                                                                                                                                                                            EE was working on a pipe when EE slipped and hit his head on a valve. ()
## 7521                                                                                                                                                                       EE was working on a pipe when the pipe slipped outof the vise and fell hitting EE on the head
## 7522                                                                                                                                      EE was working on a roof top hvac unit. Soldering some copper piping and working with refrigerants, EE alleges eye discomfort.
## 7523                                                                                                                                                                                       EE was working on a transmission - looked up and piece of metal was in rt eye
## 7524                                                                                                                       EE was working on a tv tower using a 6ft ladder. EE fell from ladder coming down. Injured rt elbow, rt shoulder, & chipped right front tooth.
## 7525                                                                                                                                           EE was working on an air handler and he raised his head too early and hit his head. EE was cleaning an overflow drain. ()
## 7526                                                                                                                                                                                                       EE was working on chute carwalk, bumped hea on overhead brac.
## 7527                                                                                                                                                                   EE was working on computer and was pulling paper out of printer and hit eye with a piece of paper
## 7528                                                                                                                                         EE was working on computer looing @ the monitor started getting tunnel & blurred vision which thenresulted into a migraine.
## 7529                                                                                                                 EE was working on dump truck, attempting to removeair chamber diaphram. As it was being removed, part of the chamber blew off and hit him in forhea
## 7530                                                                                                                                                                       EE was working on handrill, when an object went inhis eye, he was wearing his safety glasses.
## 7531                                                                                                                                                                  EE was working on ladder with partner. The hammer fell & hit the EE on the right side of his head.
## 7532                                                                                                                                                          EE was working on light while on step ladder and timer went of spraying air-freshner into face down throat
## 7533                                                                                                                                                                                             EE was working on loading dock when bee stung him behind his right ear.
## 7534                                                                                                                                                                             EE was working on machine tightening a bracket, metal shaving fell down into right eye.
## 7535                                                                                                                                     EE was working on making bacteria plates and had to walk from section b to section c. She fell on floor and hit mouth on tubes.
## 7536                                                                                                                                                                                                           EE was working on road squad and limb hit EE in right eye
## 7537                                                                                                                                                                           EE was working on road squad and was walking through woods when limb hit him in right eye
## 7538                                                                                                                                                                                                EE was working on top of elevator and hit his headagainst steel beam
## 7539                                                                                                                                                       EE was working out front of gate while walking through the gate a yellow jacket stung him under the left eye.
## 7540                                                                                                                                                     EE was working out of his issued highway patrol car. EE stated his vehicle had been leaking carbon monoxide. ()
## 7541                                                                                                                                                                EE was working outdoors sawing wood, the wind was blowing and dust particles blew into face and eyes
## 7542                                                                                                                                                                                                        EE was working outside when stung on side of headtree times.
## 7543                                                                                                                                                                   EE was working overhead using a wrench when it slipped & hit him in the forehead cutting his head
## 7544                                                                                                                                                                               EE was working to remove snow and ice from campus sidewalks when ice melt got in eyes
## 7545                                                                                                                                                                     EE was working trying to open a attic access when a piece of wood fell and hit him on the head.
## 7546                                                                                                                                                             EE was working under car, he bumped his head on a bolt protruding down from the rear axle. Cut on head.
## 7547                                                                                                                                                                                                 EE was working under one of those trucks and something fell in eye.
## 7548                                                                                                                                                              EE was working under sink to stop it from leaking when some of the white porcelin fell into his lt eye
## 7549                                                                                                                                                     EE was working underneath a desk in th hsb 1310's observation area and got some dust/debris in his left eye. ()
## 7550                                                                                                                                              EE was working underneath specimen to prepare instrumentation when a bit of dust/dirt fell down and went into his eye.
## 7551                                                                                                                                                                              EE was working up under a unit and when EE looked up a drop of oil fell into EE's eye.
## 7552                                                                                                                                            EE was working w/nursing student to take clients vital signs- client threw breakfast tray and hit EE in lower right jaw.
## 7553                                                                                                                                                                                      EE was working when inmate threw unknown fluid. Hit EE's face, shirt, & pants.
## 7554                                                                                                                                                                                      EE was working with a child in the home and was hit by a toy in the right eye.
## 7555                                                                                                                                                                                                     EE was working with a client who has conjuctivities of the eyes
## 7556                                                                                                                   EE was working with a forklift when he was trying to get the forklift out of the dirt the handle slipped and struck EE on the rt side of the nose
## 7557                                                                                                                                                                              EE was working with a hand cart stacked with boxesand bruised his upper body and head.
## 7558                                                                                                                                     EE was working with a microfilm machine and leaned forward and hit head on the corner of the shelf above the microfilm machine.
## 7559                                                                                                                                                                  EE was working with a water hose with cleaner whensome of the hand cleaner splashed into EE rt eye
## 7560                                                                                                                                    EE was working with another EE who picked up squeeze bottle of ink remover. Some of the fluid accidentally got in EE's left eye.
## 7561                                                                                                                                                                       EE was working with client packaging screws. Client drew back and hit EE just below left eye.
## 7562                                                                                                                                                                                                             EE was working with clients and notice left eye was red
## 7563                                                                                                                                                                                                                EE was working with inmate. Inmate spit in left eye.
## 7564                                                                                                                                                                                               EE was working with push lawn mower when felt something in his rt eye
## 7565                                                                                                                                      EE was working with road squad removing a dead tree when a limb from the tree fell and struck EE on the head and shoulder area
## 7566                                                                                                                                             EE was working with young colt-colt kicked out sideways catching door-causing door to spring openand hit EE in the face
## 7567                                                                                                                                                                             EE was working witha camel jet used to blow out pipes and something blew into EE's eye.
## 7568                                                                                                                                                                         EE was wrapping a bungee cord around legs of tent when it slipped and hit EE in the face ()
## 7569                                                                                                                                                                     EE was wringing wet mop out, handle slip out of his hand & hit EE in the face above the rt eye.
## 7570                                                                                                                                          EE was writing on message board, w/ patient standing beside her. Patient then struck her on left side of face, unprovoked.
## 7571                                                                                                                                     EE was wrking the dormitory when inmate assaulted EE by striking her in face w/ closed fist causing laceration needing stitches
## 7572                                                                                                                                            EE wash pulling the trash, pulled the bag out of the trash can and hit her head and cut her forehead on the mail box. ()
## 7573                                                                                                                                             EE washing hands at shop sink something in left eye. Had used table saw & compressed air earlier had saftey goggles on.
## 7574                                                                                                                                                           EE washing pans-2 stuck together EE attempted to get them apart and pans slipped and hit EE in the mouth.
## 7575                                                                                                                                  EE wast taking paperwork to impact office and fellon ice that covered street & hit back of head on street. Head injury (concusion)
## 7576                                                                                                                                                                   EE waswalking in th student ctr & slipped on wet floor just inside the door. Injuring head, face.
## 7577                                                                                                      EE watching 1:1 for aggression. Patient threatened EE fo following her. EE stepped back from patient & patient came to EE and was pounding EE on head/neck. ()
## 7578                                                                                                                                                                           EE watching crew install steel water line a piece of steel from grinder hit EE in lft eye
## 7579                                                                                                                                                                                           EE weedeating and came in contact with poison ivy spread to face and eyes
## 7580                                                                                                                                                      EE went assisted another staff with out of controlstudent and student turned and hit EE in the face with fist.
## 7581                                                                                                                                                                              EE went in closet to get lunch box and the cover fell down and hit him on the head. ()
## 7582                                                                                                                          EE went into EE restroom, svr heard EE fall & found EE lying on floor - abrasion to back of headon rt side, elbow, middle finger & rt ribs
## 7583                                                                                                                                        EE went into client's room to straighten curtains as EE reached for curtains client took both hands & hit EE on top of head.
## 7584                                                                                                                                                        EE went into closet to get ladder- 2 lightbulbs were on ladder and fell, bursting-debris went into both eyes
## 7585                                                                                                                                                                          EE went into hall to bring cleint into dayroom and the client head butted EE in the mouth.
## 7586                                                                                                                                      EE went into pt room as iv beeping occlusion, pt swung rt open hand into EE face stricking rt side of mouth split lip on teeth
## 7587                                                                                                                                                                                              EE went into room to give pt an injection & pt punched EE in the nose.
## 7588                                                                                                                                                 EE went into room to put away laundry and coworkerfound EE getting up off floor, she had passed out from being hot.
## 7589                                                                                                                                                                                 EE went ot check vital signs and client became aggitated and struck EE in the head.
## 7590                                                                                                              EE went out to the water tower to attend to get possible radio transmission problem. EE arrived at the pump station to find other EE sprayed inside pu
## 7591                                                                                                               EE went over to unit to escort an inmate back over from delta EE tried to stop door from closing in the process she stumbled and fell forward**atty**
## 7592                                                                                                                                      EE went through automatic opened doors entering facility action of doors opening blew something in rt eye. Dirt & dust rt eye.
## 7593                                                                 EE went to assist in de-escalation of patient and patient turned around & hit me squarely in the nose causing EE's glasses to fly off her face. Abrasions across top of nose & facial contusion. ()
## 7594                                                                                                                                      EE went to boiler room to check on cat5 cables stopped on base of volleyball support and the metal pipe struck EE on rt temple
## 7595                                                                                                                                                                                            EE went to check to see it client was soiled-clients hand hit EE on nose
## 7596                                                                                                                                                               EE went to door to check on noise and client fell into door, causing door to hit EE's head and rt arm
## 7597                                                                                                                                                                                                      EE went to get into truck - door caught left eye cut above eye
## 7598                                                                                                                                   EE went to get something to change a resident and door came back open when she turned around she hither eyebrow area on the door.
## 7599                                                                                                                 EE went to help w/behavioral resident, he became aggressive & pulled out handful of hair on topsideof head, hit EE's rt breast & rt side of stomach
## 7600                                                                                                                                                                                                EE went to look @ gel and forgot face sheild exposed eye to uv light
## 7601                                                                                                                                                                            EE went to pick up her pin that fell to the floor and slid and hit her head on the wall.
## 7602                                                                                                                                                   EE went to pursue violator in car without seatbelton-went through a yard into a ditch and hit head on roof of car
## 7603                                                                                                                                                                               EE went to push chair out to stand up and chair tipped-hit head on counter behind her
## 7604                                                                                                                              EE went to put something in trash bag under the counter. As he bent down to put bag in the garbagehit head on counter. Head concussion
## 7605                                                                                                                                EE went to remove a paper towel from the metal paper towel holder on the wall. The corner of the metal holder was not was not locked
## 7606                                                                                                                                                                                    EE went to shut car door and the corner hit EE's temple cutting and bruising it.
## 7607                                                                                                                                                                           EE went to sit down in chair that slid out from under her causing her to hit head on wall
## 7608                                                                                                                                                                    EE went to sit in chair it moved and caused EE to fall to ground hitting neck, shoulder and head
## 7609                                                                                                                            EE went to sit in chair with wheels-chair rolled out from under EE causing EE to hit head on sharp edge of cabinet and ending on buttock
## 7610                                                                                                                                                       EE went to sit in rolling chair when it rolled outfrom under him causing him to fall and hit head on concrete
## 7611                                                                                                                                                EE went to sit on sofa and went to lean back and struck back on head on pool table legs-table was stored behind sofa
## 7612                                                                                                                                                       EE went to stand up while turning around causing him to strike the metal stairwell inflecting injury to head.
## 7613                                                                                                                                                                                                                    EE went to wash hands and soap went into rt eye.
## 7614                                                                                                                     EE went up to dunking booth and release arm slipping in mud causing hand to slip off arm relseand release came back and hit EE on nose and face
## 7615                                                                                                                                      EE were @ regular duties monitoring students. Students attacked all the staff members EE was hit over the head with an object.
## 7616                                                                                                                                                      EE while cleaning showers using liquid cleaner some of the cleaner splashed into lt eye. Chemical burn lt eye.
## 7617                                                                                                                       EE while holding a hand rail which was being weld into place. A welding flash burned rt eye. Turned his head but far but enough. Burn rt eye.
## 7618                                                                                                                                                               EE while in pepper spray training he was sprayed in face with pepper spray. Nose bleed in rt nostril.
## 7619                                                                                                                                             EE while working very weeded area of hwy64 he was bitten on forehead by insect. Swollen rt eyebrow bigger than quarter.
## 7620                                                                                                                                                                            EE wiped his forehead with gloves on that May havebeen in contact with foreign chemical.
## 7621                                                                                                                                         EE wiped vaseline off resident's face with a kleenex, then washed her hands. She later wiped her eye with the same kleenex.
## 7622                                                                                                                                                                                          EE woke up in am and left eye was red and swollen. Resident confrontation.
## 7623                                                                                                                                                                                            EE worked during a music concert that was very loud-pain in rt/left ears
## 7624                                                                                                                              EE working a deer decoy, while attempting to conceal ees location in broom straw area a grass became lodged in corner of right eye. ()
## 7625                                                                                                                                                                                     EE working around client that had conjuntivites eye was red and began swelling.
## 7626                                                                                                                                                                EE working duck hunting enforcement on foot. Exposed to poison ivy or oak on face and now in eye. ()
## 7627                                                                                                                                                                                              EE working in control room when something got in eye & irritated it ()
## 7628                                                                                                                                                                                                             EE working in greenhouse and bumped head on metal pole.
## 7629                                                                                                                     EE working in the ceiling of bldg-looking up and some debris fell in from the ceiling onto his faceand slid underneath safety glasses - rt eye.
## 7630                                                                                                                                                    EE working in the mechanic area in walker dorm andhit his head on some pipes that were hanging from the ceiling.
## 7631                                                                                                                                                                                                                  EE working in training hit in the head by resident
## 7632                                                                                                                                                                                            EE working in voc school. Inmate cleaning floor; EE slipped and fell. ()
## 7633                                                                                                                                                                                  EE working kitchen. Went outside to wali-in cooler, fan blew trash into right eye.
## 7634                                                                                                                                                                                      EE working on an overhead battery light-battery acid fell into EE's right eye.
## 7635                                                                                                                                                                                           EE working on camp fire-wood and metal got in eye whiel building campfire
## 7636                                                                                                                                                            EE working on compressed air pipe, pipe broke and air struck EE on the left side of head---left ear pain
## 7637                                                                                                                    EE working on corridor trail, crouched down to step under fallen tree, a small sapling growing there & when he bent down it struck him in rt eye
## 7638                                                                                                                                                                                                             EE working on craft projects, material entered left eye
## 7639                                                                                                                                                                   EE working on engine block using basic hand tools eyes became irritated and had to visit a doctor
## 7640                                                                                                                                                                                     EE working on greenhouse drilling and accidently wiped metal shavings into eye.
## 7641                                                                                                                                                                                  EE working on removing debris sawdust from saw flew into eye. Foreign body in eye.
## 7642                                                                                                                                                                               EE working outside in windy conditions-metal shavings were blowing into EE's left eye
## 7643                                                                                                                                  EE working w/clients in media group, client hit staff on head. EE requested to see a Dr Complaining of headache. Sending EE to er.
## 7644                                                                                                                                                                    EE working w/student drainage dryed on student eyepopped up in EE's eye. Irritant conjunctivitis
## 7645                                                                                                                                                         EE working with client that had nose bleed during treatment client spit blood into EE face (mouth and eyes)
## 7646                                                                                                                                                                                                                     EE working with client that has conjunctivities
## 7647                                                                                                                                                                                                                                EE working with client with pink eye
## 7648                                                                                                                                                                                                  EE working with clients that have pink eye contacted same in eyes.
## 7649                                                                                                                                 EE working with horse-horse kicked out sideways hitting door-spring on door popped off causing door to open and hit EE in the face.
## 7650                                                                                                                                                                                                                     EE working with two clients that have pink eye.
## 7651                                                                                                                                                                                                      EE working with uv light was overexposed causing injury to eye
## 7652                                                                                                                                                                                         EE working, ceiling leaking, particles fell from ceiling into EE right eye.
## 7653                                                                                                                                                           EE works from basement of home & slipped & fell down stairs to basement hitting head/shoulders at landing
## 7654                                                                                                                                                                     EE works in utility and was cutting pipe with a saw when a pc of the pipe flew in the EE's eye.
## 7655                                                                                                                                                                                                          EE works with fabric. Rash on face began couple weeks ago.
## 7656                                                                                                                                       EE wqas attempting to place juvenile under controljuvenile reached with free hand and scratched below rt eye of staff member.
## 7657                                                                                                                                                                                                                                           EE ws assaulted by inmate
## 7658                                                                                                                                                                  EE ws patrolling single cell, inmate stopped him at cell to ask question and then spit in his face
## 7659                                                                                                                                    EE ws removing a rubbermaid container from store's van. He hit his head on the top door latch, which scraped the top of his head
## 7660                                                                                                                                                              EE ws stopped at light when dump truck ran into the back of her vehicle. Pushed car into intersection.
## 7661                                                                                                                                                                                                 EE wsa emptying mop bucket, neutra #3 cleaner splashed in right eye
## 7662                                                                                                                                                               EE wss pursuing a suspect on foot in a wooded area and fell down an embankment and struck his chin ()
## 7663                                                                                                                                                                                                      EE's blood level went down and he stumble and hit head on wall
## 7664                                                                                                                                               EE's blood pressure medicine was to strong and caused EE to black out and fall hitting ground injuring mouth and eye.
## 7665                                                                                                                                             EE's eye was irritated when he arrived at work. Activities during the previous day could have caused the irritation. ()
## 7666                                                                                                                                              EE's illness is dur to extreme stress due to on the job pressures. This condition has developed into acute depression.
## 7667                                                                                                                                                EE's shoe caught edge of step, lost balance and head hit brick wall injury to cheekbone and temple on left side face
## 7668                                                                                                                                                                                                EE's shoe caught on tile causing left side of head to hit brick wall
## 7669                                                                                                                                                      EE's shoe gotvcaught on the 3rd step and EE fell backwards down steps landed on back of head, ankle hit steps.
## 7670                                                                                                                                                                                                                      EE's tooth broken when patient hit her in face
## 7671                                                                                                                              EE's vehicle was struck by another motorist. The impact caused his head and face to striker the driver's side window of his patrol car
## 7672                                                                                                                                                                        EE. Alleges cleaning restroom in ninth floor dalton tower, cleaning chemical splashed in eye
## 7673                                                                                                                                                                  EE. State he had went on break and had taken off safety glasses when something flew in his lt eye.
## 7674                                                                                                                                                                 EE. State he struck his head on low hanging sprinkler piping in passage way exiting mechanicalroom.
## 7675                                                                                                                                                       EE. State she was examining dog prior to anesthesia, when attempting to anscut chest, dog bit EE on the head.
## 7676                                                                                                                                                                                   EE. Stated that while assigned to the yard the wind blew trash/sand into rt. Eye.
## 7677                                                                                                                                                    EE. States he was attending to out-of-service e2-bo b1 at west deck and was stung over the eye by yellow jacket.
## 7678                                                                                                                                           EE. States he was chipping out putty from window and got object in his eye. He was wearing safety glasses w/ side shields
## 7679                                                                                                                                             EE. States pt. Got upset when she was talking to his mother and he(pt. ) punched him in the right jaw with closed fist.
## 7680                                                                                                                 EE. States she bent down to p/u computer cord-- computer cord w/ adapter fell off computer & hit head--small, small laceration--required 2 stitches
## 7681                                                                                                                     EE. States she had poured from a container of hot liquid. When she sat it on the bench, the liquid splashed out of the container into her eyes.
## 7682                                                                                                                          EE. States she used liquid nitrogen to keep samplefrozen--as she was pounding, some liq. Nitro splashed and she though a drop hit her eye.
## 7683                                                                                                                         EE. States she was changing bedding of wood shavings, dust, or shaving fragment became lodged in rt eye. EE flushed with eye wash provided.
## 7684                                                                                                                      EE. States she was going into restroom when sentinel bottle fell off cart onto the floor and sprayer broke & chemical splashed into her rt eye
## 7685                                                                                                                   EE. States she was repacking unused or unsold magazines in a box. When the EE put the magazinesin the box--particles in the box flew up into eye.
## 7686                                                                                                                                                                                                               EE. States that a piece of plaster flew into his eye.
## 7687                                                                                                                                                       EE. States that client aggressed toward staff and poked staff in the rt. Eye causing some bleeding of the eye
## 7688                                                                                                                                                                                         EE. States that he cut scalp on vest cover, rt. Side of head near hair line
## 7689                                                                                                                                                                         EE. States that he was cleaning flour off of table and the fan blew the flour into his face
## 7690                                                                                                                                                              EE. States that he was drilling holes in hinge forwindows, when something flew off injuring his lt eye
## 7691                                                                                                                                                                                                EE. States that he was going to his job and something got in his eye
## 7692                                                                                                                                     EE. States that he was leaning back in chair when chair slipped out from under EE causing EE to strike his head on brick ledge.
## 7693                                                                                                                  EE. States that he was on bike patrol when he was going through the duncan hall parking lot traffic gate the arm came down & hit him in the mouth.
## 7694                                                                                                                            EE. States that he was walking down the hall looking down at the floor and hit head on the camera bracket on the lt side of the hallway.
## 7695                                                                                                                                         EE. States that he was walking on college avenue by guilford residence hall when some type of insect flew into his left eye
## 7696                                                                                                                                               EE. States that patient was trying to escape--he placed patient in pic hold. Patient head butted him in the left eye.
## 7697                                                                                                                        EE. States that pt asked him for a light for his cigarette--EE told pt it was time to go back to work--when EE turned around--pt punched him
## 7698                                                                                                                 EE. States that pt became compatitive & threw ice tray at another staff--EE attempted to place pt in hold--pt & EE fell against wall--injuring head
## 7699                                                                                                                                     EE. States that pt. Ran out of the dayroom then turned and slammed the door causing the glass to break and fly into her rt. Eye
## 7700                                                                                                                        EE. States that pushing tray w/ the assistance of another staff member. EE turned to get tray when c/w turned w/ id card which hit EE in eye
## 7701                                                                                                                  EE. States that she volunteered to be a target forwater balloon toss. Student threw w/b that didn'tburst and hit EE in rt cheek-injuring EE tooth.
## 7702                                                                                                                EE. States that she was entering wilmington st. Door's when someone else pushed the door to go out& door hit EE in face upper cheekbon. Brus to sore
## 7703                                                                                                                       EE. States that she was looking thru and editing grant forms and one of the forms inadvertently hither in the eye causing a severe paper cut.
## 7704                                                                                                                                                                                EE. States that she was walking toward dorm 1a when an inmate hit her for no reason.
## 7705                                                                                                                                                                                                            EE. States that the wind blew fern frond fiber in rt eye
## 7706                                                                                                                                                EE. States that when he was riding in the back of a truck ----he was struck in the eyes with a branch of poison oak.
## 7707                                                                                                                    EE. States that while assisting a worker (who was installing cable to a computer) was falling thru ceiling-tile fell down & struck EE in lt. Eye
## 7708                                                                                                                                                                      EE. States that while blowing leaves & trash up against the wall - it blew back into his eyes.
## 7709                                                                                                                                                                       EE. States that while cleaning the breakroom-- she bumped her forehead on the kitchen cabinet
## 7710                                                                                                                     EE. States that while he assisting with patient-- patient pushed employee against a linen cart and he hit his head on the iron bar of the cart.
## 7711                                                                                                                                                     EE. States that while serving a weekend call, working on dishwasher, soap granular got into employee's rt. Eye.
## 7712                                                                                                                                                                                  EE. States that while working on the unit #4 yard an object flew in his right eye.
## 7713                                                                                                                                      EE. States was exiting greenhouse with container of growing media-wind from high winds & exhaust fan blew media into left eye.
## 7714                                                                                                                                                                   EE. States when sharpening lawnmower blades, or when cutting grass---he got something in his eye.
## 7715                                                                                                                   EE. States when she went to lift the base of the hand truck she was using to help carry chairs up stairs-she fell b/w hitting EE head on brickwal
## 7716                                                                                                                                                                                          EE. States while buffing floor in oak hall -- something blew into her eye.
## 7717                                                                                                                   EE. States while conducting a drug surveillance in the woods--a tree limb got caught on another officer & suddenly released--hitting EE in rt eye
## 7718                                                                                                                                                   EE. States while cutting w/ radial arm saw- splinterflew off passing under his safety glasses striking his lt eye
## 7719                                                                                                                                                                 EE. States while getting client out of recliner tohave lunch; client swung arm and struck EE's jaw.
## 7720                                                                                                                                                                    EE. States while he was closing door to garbarge dumpster--the door latch struck EE on the face.
## 7721                                                                                                                                               EE. States while he was removing a pipe from its holding collar--it popped free and hit his upper lip--lacerating it.
## 7722                                                                                                                              EE. States while on a field trip to emerald pointe--she was coming down a water slide and hit her rt. Temple on the side of the slide.
## 7723                                                                                                                                                      EE. States while on a hydra-sled on lake---sled overturned causing students knee to hit employee in the mouth.
## 7724                                                                                                               EE. States while on a leadership retreat--group was given time to interact--EE was diving in water& exper. Press. In ear-resulting collaspe in eardrm
## 7725                                                                                                                    EE. Was assisting a co-worker install a 8" pipe. EE was standing holding pipe while c/w hit coupling to secure it to glue. C/w hit EE in rt. Eye
## 7726                                                                                                                                                               EE. Was performing normal duties when his head struck newly instralled low hung piping in passageway.
## 7727                                                                                                                                                                    EE. Was placing labels on envelopes. Corner of envelope hit employee's left eye cutting the eye.
## 7728                                                                                                                      EE. Was states that he was sanding drywall--the dust fell down & got into his eye--he washed it out and applied eye drops from a fist aid kit.
## 7729                                                                                                                           EE: removing cushion on stool pulling it foward when the stool feel backwards. Result back of head& r shoulder made contact with cabinet.
## 7730                                                                                                                                            Ear aching due to another officer placing his rt arm between her upper chest & lower neck during training in dining hall
## 7731                                                                                                                                                                   Ear infection resulted from continuous scuba diving on the queen anne's revenge field project. ()
## 7732                                                                                                                                                                                                            Edging on campus, foreign thrown up under safety glasses
## 7733                                                                                              Edith stated that she was walking down the hall and tripped on the end of carpet. Her toe caught on carpet, and she fell face down. Her glasses went into her face. ()
## 7734                                                                                                                                                    Ees foot got caught on step stool, tripped and fell on the floor. Hit head and r elbow on floor. Head contusion.
## 7735                                                                                                                                      Ees glasses got broke trying to transfer pt with 3 man pic walk to the rest and relaxation room. Broken glasses/facial scratch
## 7736                                                                                                                                                                    Eew as responding to wound consult on patient. While providing patient care, EE contracted lice.
## 7737                                                                                                                                                                                                                         Eew as walking on icy ground on dairy farm.
## 7738                                                                                                                                                                               Ejection of shell casing from mini rifle caused burn to right side of face w/scarring
## 7739                                                                                                                                                                                                                              Elbowed on head while fristing inmate.
## 7740                                                                                                                                                                                                                       Elec. Broke blew apart and hit me in the head
## 7741                                                                                                                                                                                       Emily's nose was hit by the trunk door of her mini van as she was closing it.
## 7742                                                                                                                                                                           Emloyee was using a grinder and slag flew under his eye protection into his right eye. ()
## 7743                                                                                                                                    Emp is legally blind, stooped to pick up briefcase, bent forth and hit helium tank with chin forcing bottom teeth into top teeth
## 7744                                                                                                                                          Emp was standing outside campus building collecting keys from housekeepers & was bitten by ants. Serious allergic reaction
## 7745                                                                                                                                                             Emp. Smith was entering the maintenance area and the fumes he smelled triggered a migraine headache. ()
## 7746                                                                                                                                                                                         Emp. Stated he was walking in the gym and slipped on the floor and fell. ()
## 7747                                                                                                                                                                                            Emp. Was at ppv area when a gust of wind sent debris in his left eye. ()
## 7748                                                                                                                                                          Emp. Was showing students dna gels using a uv light and exposed her eyes to the light for 10 - 15 minutes.
## 7749                                                                                                                                                                                              Empl. Stated prolong exposure to mold and unclean work environmnet. ()
## 7750                                                                                                                                     Employ was standing in classroom, took step backwards, tripped and fell striking a filing cabinet with the back of her head. ()
## 7751                                                Employe started to have ringing in his ears in June of 2012 at which time it was intermittent. Constant ringing on friday January 25, 2013. Over past thirty two years he has always worked with heavy equipment. ()
## 7752                                                                                                                                                                                        Employe was chipping while welding and a piece of hot metal flew in his eye.
## 7753                                                                                                                                         Employe was putting washed nurse's dished back in the cabinet and one of the pitchers fell and hit employee in the face. ()
## 7754                                                                                                                                                         Employe was taking a patients vital signs when another patient hit the employee in the back of her head. ()
## 7755                                                                                                                               Employed stated she was scratching her ear with a pin, when she pulled her pen down, she noticed the end cap was still in her ear. ()
## 7756                                                                                                                                                                                               Employee accidently struck her right eye with the point of the pencil
## 7757                                                                                                                                                                  Employee acidently hit herself in the eye with an ink pen while shaking it to make it write again.
## 7758                                                                                                                                                                                                              Employee alleges eye issues due to work environment ()
## 7759                                                                                                                                                               Employee alleges he was using a drill press and a small piece of metal struck him in the left eye. ()
## 7760                                                                                                                                      Employee alleges that she was attempting to sit in her chair and the chari roll out from under her while teaching her class ()
## 7761                                                                                                                    Employee alleges that when helping inmate at shower, he bent over to pick up a safety razor from thefloor and struck his head against door stop.
## 7762                                                                                                                 Employee alleges that while performing crdt moves his nose was struck by the forehead of his partnerthis contact caused a break in the nose that re
## 7763                                                                                                                                  Employee alleges unlocking the door to her office; as she attempted to enter she looked up and hit her mouth on the door frame. ()
## 7764                                                                                                                                                                                                                                Employee alleges work related stress
## 7765                                                     Employee and co-worker was measuring a tract for tree planting. While walking through the woods, employee tripped on a piece of bobwire that was under some leaves and fell on a limb puncturing left check. ()
## 7766                                                                                                                                           Employee and staff were participating in basketball activity with patients and patient accidentally hit employee in mouth
## 7767                                                                                                                                                                            Employee as watching inmates during a cut job. Tree fell on his forehead cutting him. ()
## 7768                                                                                                                                                         Employee assaulted by inmate, the inmate wrapped arms around EE and jammed his head against the door frame.
## 7769                                                                                                                                                                                         Employee assisting client when the client spit in employee's face and mouth
## 7770                                                                                                                                                                                          Employee assualted by forensic patient closed fistto l forehead, eye, nose
## 7771                                                                                                                                                                                                Employee attempted to enter the bathroom and slipped on the floor ()
## 7772                                                                                                                                    Employee attempted to reach between two bunks in cell to retrieve something from the window, she bumped her head on the top bunk
## 7773                  Employee attempted to step up onto a truck tractor to speak with a driver and grabbed a handle to pull himself up. The door latched released causing him to fall backwards making his flashlight strike himself in the mouth chipping three teeth.
## 7774                                                                                    Employee attempting to turn off projectors in classroom, when he slipped on the hardwood stage where an exterminator had just sprayed bug killer behind the podium on the floor.
## 7775                                                                                                                                                         Employee behind home plate-ball bounced on field and struck EE in left lower jaw chipping lower moler tooth
## 7776                                                                                                                                                                                Employee believes glass shaving flew in right eye because keys being cut in shop. ()
## 7777                                                     Employee bent down to get a individual a bed sheet from the linen cart, as she raised her head up, her forehead hit the metal handle of a individual walker causing a terrible pain, ache, bruise. Forehead. ()
## 7778                                                                      Employee bent down to measure basket frame to see if it would fit in truck when, another employee came over to help; he touched the lever causing it to swivel; striking tommy on the head. ()
## 7779                                                                                                                                        Employee bent down to pick something up off the ground and when she stood back up she hit her head on the vehicle mirror. ()
## 7780                                                                                                                                                      Employee bent down to pick up pen she had dropped. She hit her head on the edge of a desk as she went down. ()
## 7781                                                                                                                                                                               Employee bent down to pick up something, lost balance and fell, hit head on chair leg
## 7782                                                                                                                                                 Employee bent down to pick up tape and when she stood up, she hit her head on the corner of the metal cabinet door.
## 7783                                                                                                              Employee bent down to puck up wrench and hit his head on the top bracket that is used to support barricades on trailer. List injury as: top of head ()
## 7784                                                                   Employee bent down to pull a specimen box out of an 80 degree celsius freezer. A cabinet door swung open and when he stood he struck the door causing a laceration and contusion to his scalp. ()
## 7785                                                                                                                                           Employee bent down to take items from the bottom of cleaning cart, stood up and struck left side of head on metal box. ()
## 7786                                                                                                                                                                                                                    Employee bent over and hit head on card swipe ()
## 7787                                                                                                                                                   Employee bent over to pick up a piece of paper from the floor and hit her head near right eye on corner of a desk
## 7788                                                                                                        Employee bent over to repair some equipment and saw a flash of light in the corner of his eye. Listed injuries as: pain in right eye, dizzy with headache ()
## 7789                                                                                                                                          Employee bit into a cookie that was provided for employees taking a class; bit into a foreign object which broke tooth. ()
## 7790                                                                                                                                                                                                                 Employee bitten during the night by a bug or spider
## 7791                                                                                                                                                                                                                 Employee breaking up fight and inhaled pepper spray
## 7792                                                                                                                                                                                    Employee bumped head on hanging obstruction during installation of equipment. ()
## 7793                                                                                                                                                          Employee bumped head on hook located in the center of the bathroom door. Employee in handicapped stall. ()
## 7794                                                                                                                                                                                          Employee came in contact with poision ivy which is located on left ear. ()
## 7795                                                                                                                                                                                                                      Employee came into contact with poison ivy. ()
## 7796                                                                                                                                                                                            Employee came up stair to talk to staff member. I/m hit employee in nose
## 7797                                                                                                                                                                                         Employee caught shoe on chair mat, fell and hit cheek/jaw on edge of table.
## 7798                                                                                                                                                                                            Employee changing cages and nest lets or bedding went into right eye. ()
## 7799                                                                                                                                                                                                                    Employee checked, struck by object or person. ()
## 7800                                                                                                                                                                                                          Employee checking gauges struck head on overhead object ()
## 7801                                                                                                                                                                                                               Employee claims allergic reaction to broccoli pollen.
## 7802                                                                                                                                                                           Employee claims allergic rhinitis that she believes is associated with her employment. ()
## 7803                                                                                                                                                                       Employee claims he jumped up on loading dock and hit his head on the air compressor guard. ()
## 7804                                                                                                           Employee claims he was cleaning out the weep holes in the shower drain using mule kick. When the plug was removed, the acid sprayed up onto the employee.
## 7805                                                                                                      Employee claims she rose quickly from her chair in attempt to get to the restroom to vomit. She passed out and fell, hitting her face on the visitor chair. ()
## 7806                                                                                 Employee claims she was cleaning an area, getting it ready to mulch. She picked up a small pile of dry leaves and a stick came up under her safety glasses and hit her left eye. ()
## 7807                                                                                                                                                                      Employee claims she was lighting the pilot light and the gas exploded, due to gas build up. ()
## 7808                                                                                                          Employee claims she was removing recycling paper from a bin. She lifted her head and hit the bottom of an electrical box which was mounted on the wall. ()
## 7809                                                                                                      Employee claims she was restraining a patient (foal). The foal headbutted the employee under the chin, which loosened her tooth, and contusion of her face. ()
## 7810                                                   Employee claims that he got some debris in his right eye, while working under a desk installing a computer. Holes had been freshly drilled underneath the desk to attach the bracket that holds the computers. ()
## 7811                                                                                 Employee claims that he had poured drain chemical in a clogged sink and plunged it with a plunger. A back splash occurred and the chemical splashed into the employee right eye. ()
## 7812                                                                                                             Employee claims that he hit his head while ducking under duct work to perform pm on the air handler, cutting the top of his head and jammed his neck ()
## 7813                                                                                                                                 Employee claims that pollinating broccoli plants have caused her to have problems with her eyes, nose, throat and chest congestion.
## 7814                                                                                                                                              Employee cleaning equipment, welding with safety glasses in welding booth, metal bounced off wall and flew in left eye
## 7815                                                                                                                                                                      Employee collecting firewood for the campground & high winds blew debris in employee's face ()
## 7816      Employee complained to another employee that he was not feeling well and headed to office trailer. On the way to trailer employee was experiencing intense lower back pain and blacked out while operating vehicle. Employee ran off sr 1218. *see note box ()
## 7817                                                        Employee complains of chronic hearing loss over a span of his career (18 yrs) due to operating loud equipment such as but not limited to chain saws, cement saws, jack hammers, bulldozers, chippers etc. ()
## 7818                                                          Employee completed a routine dive from 2:30 to 3:55pm on 5/25/2011. Injury was noticed after her dive when drying ears out with alcohol. She experienced a sharp stinging or burning pain in right ear. ()
## 7819                                                                                                                                                                                                              Employee cut head on electrical box, work on autoclave
## 7820                                                                                                                                                       Employee cut open top of head on metal tracks where drawer was as she was backing out from under her desk. ()
## 7821                                                                                                  Employee developed acute conjunctivitis from working in a lab that is being renovated - excessive dirt and particulate matter resulted in irritated itchy eyes. ()
## 7822                                                                                                                                                                                           Employee developed allergy to rats after repeated handling of animals. ()
## 7823                                                                                                                              Employee directed individual to take a shower and the individual jumped and attached employee causing scratches to employee's face. ()
## 7824                                                                                                                                                                                         Employee discovered another employee at his desk w self inflicted injury ()
## 7825                                                                                                                                                                               Employee doing forced meds and inmate threw urine in her face while entering cell. ()
## 7826                                                                                                                                                             Employee driver on bus a car unexpectedly drove into the bus lane and collided with the bus head on. ()
## 7827                                                                                                                                                                                              Employee drop the bankers box in cart; cart handle struck his nose. ()
## 7828                                                                                                                                       Employee dropped a vial of 1% lidocaine with epinephrine on floor and contents splashed into left eye when the vial broke. ()
## 7829                                                                                    Employee entered her office, which was being painted, and walked into the edge of a shelf that was newly installed. She suffered a cut over her right eye, below her eyebrow. ()
## 7830                                                                                                                                                                 Employee entered restroom and slipped and fell on wet floor where something appeared to be spilled.
## 7831                                                                                                                                                                                                           Employee exited building fall on water in parking garage.
## 7832                                                                                                                       Employee exited his vehicle to start repairs on cctv, while walking from the vehicle to the cctv the employee felt a pain in his left eye. ()
## 7833                                                                                                                                                                                    Employee experienced sharp pain in left ear during a fire drill in the building.
## 7834                                                                                                                                      Employee fell after standing up from sitting on a step; she was light headed upon standing probably due to the extreme heat ()
## 7835                                                                                                                                                                                                                             Employee fell and hit head during p. T.
## 7836                                                                                                                                                                                                                                  Employee fell and hit his head. ()
## 7837                                                                                                                                                                                                              Employee fell from chair and hit his elbow and head ()
## 7838                                                                                                                                                                           Employee fell hit head on corner of wall breaking glasses and causing laceration to face.
## 7839                                                                                                                                                  Employee fell in medical dept. Restroom, found on floor in prone position. Employee 6 months pregnant, struck face
## 7840                                                                                                 Employee fell off of an office chair when the chair rolled backwards causing her to hit her left side of her face on a desk. Contusion to face, scalp, and neck. ()
## 7841                                                                                                    Employee fell on her back and bumped back of her dean on pavement while she was going to the car at the end of the shift. There was ice and snow on pavement. ()
## 7842                                                                                                                           Employee fell when she stepped in puddle on cafeteria floor. Landed on back, banged head on floor. Bruises and swelling on back and knee.
## 7843                                                                                                                                           Employee fell while stepping down from ladder to retrieve more files and hit forehead, cheekbone and upper arm bruised ()
## 7844                                                                                                                                                                                                                      Employee felt faint fell hitting head on floor
## 7845                                                                                                                                                                                                                                 Employee felt pain in right eye. ()
## 7846                                                                                                                                                                                 Employee felt something was in his eye and he was sitting at a desk at the time. ()
## 7847                                                                                                                                                         Employee filled with weedeater with gas from full gas can. Gas splashed out of can and went in left eye. ()
## 7848                                                           Employee flying home from fire assignment. Pressure bulit up in ears but did not pop until the plane landed. Employee was suffering from respriatory infection contract while working fire assignment. ()
## 7849                                                                                                                                                                                      Employee found something in his eye, went to medical, sent to nash urgent care
## 7850                                                                                                                                                             Employee gave meds to patient, after patient handed med cup back to EE, patient hit EE in the mouth. ()
## 7851                                                                                                                                                                                 Employee giving an epee lesson. Two hits to mask, dented a 10 kg resistant mask. ()
## 7852                                                                                                                                                                                                                             Employee got bleach in her left eye. ()
## 7853                                                                                                                                                                                      Employee got debris in eye while removing a light fixture from the ceiling. ()
## 7854                                                                                                                                     Employee got debris in right eye while blowing out cracks in the pavement using an air compressor. List injury as: right eye ()
## 7855                                                                                                                                                                               Employee got on a food druck to go to main kitchen and hit her head on door frame. ()
## 7856                                                                                                                Employee got out of his truck in the parking lot when he slipped and fell on ice causing him to strike his head against the truck causing strain. ()
## 7857                                                                                                                                                                      Employee grinding on metal and a piece of metal went under his safety glasses unto his eye. ()
## 7858                                                                                                  Employee had a sensation in her face with headache and tingling on her tongue. Reported excess discharge from her nose and mouth with some blood in her sputum. ()
## 7859                                                                                  Employee had a vehicle stopped on the shoulder of the roadway while seated in his vehicle when a power transformer next to his vehicle exploded which resulted in hearing loss. ()
## 7860                                                                                                     Employee had been kneeling down hand - pruning ivy, and when he stood up he hit the top of his head on the building he was working next to and cut his head. ()
## 7861                                                                                                                                                     Employee had been plumbing in a hole in the wall when he stepped out the wind blew something into his left eye.
## 7862                                                                                                                          Employee had been recovering from a virus-she was working on computer with student & became light headed and fell out of chair-struck head
## 7863                                                                                                                                           Employee had entered through the gatehouse and was on his way to the main building when a bug flew into his right eye. ()
## 7864                                                                                                                                                Employee had just buckled a patient in the seatbelt in the van and was getting off the van when she hit her head. ()
## 7865                                                                                    Employee had just left a meeting in which his employment was terminated, effective immediately. He walked back into his office and passed out, striking the computer monitor. ()
## 7866            Employee had just returned to the maintenance yard from performing snow and ice removal operations. Employee exited cab of truck and was walking to parking area when, he slipped on ice covered ground. Employee fell on left side and hit his head. ()
## 7867                                                                                                          Employee had just stripped the floor and was swinging the mop and the plastic tie that holds the mop handle on the wall stuck into employee's left eye. ()
## 7868                                                                                                                                                             Employee had left an audit and was sitting at a stop light on hwy 41 and was rear ended by a vehicle ()
## 7869                                                                                                                                                                           Employee had mb-10 on gloves and accidentally touched ears causing unspecified injury. ()
## 7870                                                                                                Employee had tied a rope to the tree and had turned to walk away from the tree when, a twig from the tree branch struck him in the eye. List injury as: right eye ()
## 7871                      Employee had tractor trailer hood propped up to examine engine for instructional purposes. The hood collapsed and hit employee on his head. Left side/front of head large red bump; top/middle/left side of head cut; head tender and sore. ()
## 7872                                                                                                                                                                               Employee has been installing air-conditioning continuously, causing injury to ears ()
## 7873                                                                                                                                                                   Employee has constant irritation of the right ear caused by swimming and led to ear infection. ()
## 7874           Employee has headaches that have increased in frequency with length of employment. They are constant now. 3 months ago employee developed a fungal infections that is resistant to treatment. He has been treated by personal physicians for sometime. ()
## 7875                                                                                                                                                                                                                      Employee has rash on body from weed eating. ()
## 7876     Employee has worked for dot for over 29 years, 17 years has been on the road building crew. Employee is complaining of ringing in his ears. Over the years he operated the following equipment: pan, dozer, motor grader, sheep foot, rock drill, backhoe, etc.
## 7877                                                                                                                                             Employee helping with intervention-resident punched employee on left lower lip causing it to bleed & 3-4 teeth to bleed
## 7878                                                                                                                                                                   Employee hit a fluorscent light fixture cover witha mop handle. The cover hit the EE on the head.
## 7879                                                                                                                                                                                                            Employee hit from behind by patient, knocked unconscious
## 7880                                                                                                                                                                                     Employee hit head on a metal box in a toilet stall. While checking for leak. ()
## 7881                                                                                                                                                                                                                     Employee hit her forehead on an oxygen cart. ()
## 7882                                                                                                                                                                                            Employee hit her head above the left temple on the shelf on the wall. ()
## 7883                                                                                                                                                                                                     Employee hit her head on a bulletin board when sitting down. ()
## 7884                                                                                                                                                                                                Employee hit her head on her desk when bending over to tie her shoe.
## 7885                                                                                                                                   Employee hit her left eye on corner of desk drawer when turning to look at her supervisor that was speaking to her from the door.
## 7886                                                                                                                                             Employee hit his head on I-beam while inspecting under the weight station scales. List injury as: cut to top of head ()
## 7887                                                                                                                                                                                    Employee hit his head on still rollup housing over counter while painting walls.
## 7888                                                                                                                                                                                                                             Employee hit in face with basketball ()
## 7889                                                                                                                                                   Employee hit top of her head on cabinet while she was putting the salt and pepper shakers back in the cabinet. ()
## 7890                                             Employee hooked jump box to battery in bulldozer and then heard a strange noise. Realized something was not correct with hook up do he tried to disconnect cables and during the disconnect battery blew up in face. ()
## 7891                                                                                                                                                              Employee in back seat of car on way to meeting. Another car ran a stop light and employee injuried. ()
## 7892                                                                                                                                      Employee in pepper spray training; was sprayed in eyes; stated was an allergic reaction to the spray; visual acuity decreased.
## 7893                                                                  Employee indicates during a surface training drill, she equalized her ears via the valsalva maneuver but had water in her nose. This action forced water from her nose to her eustachian tubes. ()
## 7894        Employee indicates he was pulling a drag screw pin out of an underwater dive safety reel with pliers, pulling hard on the pliers. The pin and pliers hit above his right eye causing a cut. Employee indicates he was wearing safety glasses at the time. ()
## 7895                                                                                                                                           Employee indicates she does not know what happened but believes she fell asleep while driving rover and hit light pole ()
## 7896                                                                                               Employee indicates she was carrying a graphic id panel up the dock area steps and she slipped and fell striking her right brow bone and eye on the concrete steps. ()
## 7897                                                                                                                                                                   Employee indicates she was pruning shubbery and when she bent over a branch poked her left eye ()
## 7898                                                       Employee indicates she was working on an outside light at the fort fisher aquarium. The allen wrench and the adjustable wrench handle came off and hit her in the mouth and broke her upper denture plate. ()
## 7899                            Employee indicates upon surfacing from a dive in the graveyard of the atlantic tank (nc aquarium on roanoke island), her left ear began to have pain and a feeling of fullness. Employee indicates she did not do any further diving. ()
## 7900               Employee indicates while cleaning an exhibit, she was splashed directly in her right eye with fecal contaminated water. Employee indicates she was wearing a tyvec suit, gloves and protective eyewear, but splash came up underneath the eyewear. ()
## 7901                                                                                                                                 Employee indicates while cleaning work station behind red drum tank, a piece of fiberglass from contruction got in her left eye. ()
## 7902                                                                                                                                           Employee indicates while he was operating a tractor to remove a fence, wind blew dirt into his face. Dirt blew into eyes.
## 7903                                                                                                                                                                                                        Employee injured his left ear while putting in ear plugs. ()
## 7904                                                                             Employee intervened when a patient was being inappropriate with another employee. Patient hit this employee in the face/left eye & headbutted employee when being placed in a cpi hold.
## 7905                                                                                                                                                                            Employee involved in a moter vehicle accident while conducting home visits on offenders.
## 7906                                                                                                                                                                          Employee leaning back in chair and chair legs slipped-fell backwards striking head on wall
## 7907                                                                                                             Employee legs gave way(medical condition applies) and she fell in the lobby hitting her head; she went to the er. List injuries as: head & right eye ()
## 7908                                                                                                                                                        Employee lifted trayline belt for cleaning when part of the belt broke off, striking her in the forehead. ()
## 7909                                                                               Employee lit propane burner and when he placed the burner in the screed holster excess propane ignited and the flash back injured him. List injuries as: right side of face(cheek) ()
## 7910                                                                                                                                                  Employee locating a drainage leak opened cabinet inhaled chemical odors that caused a chemical burnto sinus cavity
## 7911                                                                                                                                                        Employee lost his grip on arm rest while riding ine-z-go cart & fell from cart hitting his head on pavement.
## 7912                                                                                                                                                        Employee making home visits slipped in mud and head and face made contact with frame o fher state vehcile ()
## 7913                                                                                         Employee missed a step in the front of the building and fell. He hit his head and was semi-conscious when ambulance arrived and took him to the hospital for a check-up. ()
## 7914                                                                                                                                                                                                     Employee missed chair and landed on his head and back of arms .
## 7915                                                                                                                                                                             Employee moved a sales fixture and fixture sitting on top of shelf fell on her head. ()
## 7916                                                                                                                                                                              Employee mowing greenway; dust blew around/under safety glasses and into right eye. ()
## 7917                                                                                                                       Employee norman was working outside the warehouse. Wind blew dirt into his eyes; both eyes had to be washed out. List injury as: both eyes ()
## 7918                                                                                                                                                                                          Employee noticed a burning sensation in her eye while grinding fertilizer.
## 7919                                                                          Employee noticed irritation in his right eye after completing his work. Employee attempted to flush right eye with no success. Employee drove to the treatment facility and was treated ()
## 7920                                                                                                                                                                                                  Employee observing patients, a patient walked up and punched EE ()
## 7921                                                                                                                     Employee on business trip. When airplane landed (american eagle flight from boston to raleigh) the cabin pressure caused a rupture in ear drum.
## 7922                                                                                                                                                     Employee opened five gallon container of soap and it splashed in her eye. Employee did not wear safety glasses.
## 7923                                                                                                                                         Employee opened rear hatch, bent over to retrieve item from rear of vehicle, struck top of head on hatch causing laceration
## 7924                                                                                                                                                                                                              Employee opened steamer door, steam burned his face ()
## 7925                                                                                                                                                                                     Employee opened steamer to check on food and a blast of steam went in her face.
## 7926                                                                                                                                                                                                                           Employee opened switch and switch blew up
## 7927                                                                                                                                                          Employee opened the washing machine and something flew out into her right eye-possibly bleach or detergent
## 7928                                                                                                                                                             Employee opened the wicket door to feed inmate, when the inmate threw an unknown liquid on employee. ()
## 7929                                                                                                                                                                Employee opened wicked door to allow inmate to discard trash. Inmate threw a cup of urine on him. ()
## 7930                                                                                                              Employee operating fulltrack on wildfire commentedsomething got in his eye. By morning eye was red/ irritated. Employee was not wearing eye protection
## 7931                                                                                                                               Employee operating tractor moving mulch to mulch plant beds. A gust of wind blew mulch in his face getting debris in his left eye. ()
## 7932                                                                                                                                                                 Employee passed out and fell, bumped head and upper back after hearing of another employee's death.
## 7933                                                                                                                                                                                                                Employee passed out, fell to floor and hit his head.
## 7934                                                                                 Employee performing timber exam for landowner. While looking at a tree and walking, employee turned his head and walked into tree branch. The branch poked employee's right eye. ()
## 7935                                                                                                                                                                                                   Employee poked herself in the eye while putting on safety glasses
## 7936                                                                                                                                               Employee poured cdc revive cleaning chemical in a toilet with bleach in it causing a chlorine gas that made him sick.
## 7937                                                                                                                                                                                      Employee poured chemicals into mop bucket and chemicals splashed into left eye
## 7938                                                                                                                                                                                      Employee pulled pump up on detergent bottle and detergent squirted into rt eye
## 7939                                                                                                                                            Employee pulled sheet of paper from file cabinet and scratched eye with edge of paper. Scratched cornea in right eye. ()
## 7940                                                                                                                                                                                                                               Employee punched in eye by patient ()
## 7941                                                                                                                                                                                                                                 Employee punched in eye by patient.
## 7942                                                                                           Employee raised the overhead garage door to enter the grounds shop. After exiting, then re-entering shop, employee bumped his head on the bottom of the overhead door. ()
## 7943                                                                                                                                                                                                      Employee raised up in attic and hit his head on steel beam. ()
## 7944                                                                                                                                                                                                 Employee ran into a metal sign corner that is on a pole in the deck
## 7945                                                                                                                                                                                                                            Employee rear ended another motorist. ()
## 7946                                                                                                                                              Employee received a headbutt by a client in the nurse station as they were walking to go out of the nurses' station ()
## 7947                                                                                                                                                                                                             Employee received a small amount of sputum in right eye
## 7948                                                                                                                                                                                  Employee received bite and/or sting from insect while working in campus dormitory.
## 7949                                                                                                                                                                                                Employee removed ceiling tile to check leak and water dropped in eye
## 7950                                                                                                                                                                                              Employee removed gloves and rub her right eye, eye became infected. ()
## 7951                                                                                                                                                                                      Employee removing exhaust from rollback when he got rust into his right eye ()
## 7952                                                                                                                                                            Employee repairing water main with a torch and solder. When the pipe got hot, some flux got intohis eye.
## 7953                                                                                                                                                       Employee reported he was going back into building with patient and patient swung and hit him in the mouth. ()
## 7954                                                                                                       Employee reported he was squiring some sentinel cleaner in his bucket and did not realize the pump was broken on the container and his eyes began to burn. ()
## 7955                                                                                                                                                                                       Employee reported he was struck in the mouth during required cpi training. ()
## 7956                                                                                                                                                             Employee reported patient broke light fixture in ceiling and pieces of the light fell into his eyes. ()
## 7957                                                                                                                                  Employee reported patient hit the left side of his jaw breaking his tooth. Employee referred to personal dentist for treatment. ()
## 7958                                                                                                                                                                       Employee reported patient struck her in the face as she was coming out of nursing station. ()
## 7959                                                                                                                                                                               Employee reported patient struck him in the head and was verbally threatening him. ()
## 7960                                                                                                                                                                          Employee reported patient struck him on the side of the head (temple area). Head contusion
## 7961                                                                                                                                                                      Employee reported patient threw washing powder in her face while they were in laundry room. ()
## 7962                                                                                                  Employee reported patient was threatening staff and threw juice on staff. Patient then jumped up and hit employee on the head causing employee to have headache ()
## 7963                                                                                                                                                                                           Employee reported patient was upset and begin hitting her in the head. ()
## 7964                                                                                                                                                                                                     Employee reported patient was upset and hit her in the face. ()
## 7965                                                                                                                         Employee reported she jumped between two patients to keep chair from being thrown and she slipped and fell hitting her head on the wall. ()
## 7966                                                                                                              Employee reported she noticed as she worked that her eyes were blurry. She said they felt dirty. She also noticed exhaust fumes and chemical fumes. ()
## 7967                                                                                                                                               Employee reported she was cleaning shower with mop and cleaning solution splashed in her right eye causing a burn. ()
## 7968                                                                                                                                                                      Employee reported she was hit in the face by patient with a book and her glasses were bent. ()
## 7969                                                                                                                                         Employee reported she was on the elevator and when she walked off a patient walked up to her and struck her in the face. ()
## 7970                                                                                                                                                                                     Employee reported she was potting some seedlings and her eyes began to burn. ()
## 7971                                                                                                                                                                                                                                 Employee reported she was replacing
## 7972                                                                                                                                                                                                                Employee reported she was telling patient to stop ()
## 7973                                                                                                                                                                                                        Employee reported struck by patient in the face/lip area. ()
## 7974                                                                                                                                                              Employee reported that patient became aggressive and hit the side of her head and broke her glasses ()
## 7975                                                                                                                                   Employee reported while assisting patient, patient became agitated and hit employee in the face with her elbow causing bruise. ()
## 7976                                                                                                                                            Employee reported while escorting patient back to the building, the patient hit him on the side of the head and neck. ()
## 7977                                                                                                                                            Employee reported while placing patient in cpi hold, patient kicked employee in the side of face and spit in his eye. ()
## 7978                                                                                                                                                                       Employee reported while walking from parking lot to building, something flew into his eye. ()
## 7979                                                                                              Employee reports after operating a brake lathe he was cleaning up area in automotive shop metal brake shavings/debris when he felt something go into his right eye. ()
## 7980                                          Employee reports assisting antoher officer in cuffing a suspect while making an arrest. The supsect was combative and resisted arrest pushing her iface causing her to hit the back of her head against the door frame. ()
## 7981              Employee reports driving a pole into the ground using a handheld pole driver in setting up for a cross country championship when she lost control of the tool; it struck her in the head, she bit down cracking a tooth on the right front, bottom. ()
## 7982                 Employee reports driving a t3 three wheel vehicle during a training course; when she got to the last cone she hit the accelerator instead of the brake during a sharp turn and was thrown from the vehicle landing on her back hitting her head. ()
## 7983                   Employee reports leaving the shop; once in the parking area he realized he left the paperwork. He turned walking back to shop when his right foot caught a rock. He lost his balance and fell hitting the left side of his face on the ground. ()
## 7984                                                                                                                    Employee reports she was performing perimeter fence check and unlocked fence. Saw hornets and relocked fence. Stung as relocked perimeter fence.
## 7985                                                             Employee reports sitting on a stool proctoring an exam when she started to feel dizzy; she put her head on the table in front of her. She fainted and fell sideways onto the floor hitting her head. ()
## 7986                                  Employee reports trying to cuff a suspect in making an arrest. While the suspect was combative, resisiting and fleeing arrest, the suspect pushed the officer agaisnt the wall; he hit his left elbow and the back of his head. ()
## 7987                                                                              Employee reports walking down the ramp in the parking deck when she slipped on ice; she fell forward on the left side of her body hurting her cheek bone, left foot, hand and knee. ()
## 7988                                                                                                           Employee reports walking through corridor just past the entry way of oak hall when he walked into a low hanging exit sign hitting the top of his head. ()
## 7989                                                                                                                                 Employee reports while cleaning the copper pipes that fee water to the water heater, dust fell from the pipes into his left eye. ()
## 7990                                         Employee reports while driving an electric utility vehicle, he was stopped at a crosswalk awaiting a pedestrian to cross the street when he was struck (rear-ended) by another vehicle; he hurt his head, neck and back. ()
## 7991                                                                                                                      Employee reports while he was folding a ladder for transport a wrench fell off the top of the ladder and struck him on the top of his head. ()
## 7992                                                                                                                                                                   Employee reports while she was cleaning a shower she fell and hit her head on the shower wall. ()
## 7993                                                                                                                                                                                Employee restraining day for pre-anesthetic blood work. Dog turned and bit employee.
## 7994                                                           Employee returned from purchasing material in a dot truck. He parked and exited vehicle when, the door swung back and hit him in the bottom lip; loosening two teeth. List injury as: two bottom teeth ()
## 7995                                                                                                                                                                           Employee riding in company truck on campus, brakes hit and employee's head hit windshield
## 7996                                                                                                                                                                                                        Employee riding on gator from vineyard to ware -deris in eye
## 7997                                                                                                                                                         Employee routinely unlocking entrances when a gustof wend blew debris into his left eye casuing irritation.
## 7998                                                                                                                                   Employee sat in her office chair and one of the legs broke causing her to fall and hurt her head, shoulder, ear, and upper thigh.
## 7999                                                                                                                                             Employee searching undercarriage of vehicle using a mirror-when employee stood up she struck her head on vehicle mirror
## 8000                                                                                                                    Employee sitting at desk working on computer. A construction worker, installing pipes above employees head, dropped a 12 in. Metal level on head
## 8001                                                                                                                                           Employee slide off tailgate; landed on his feet but the gravel shifted under him causing him to fall and hit his head. ()
## 8002                                                                                                                                                                                                                  Employee slipped & fell due to ice on parking lot.
## 8003                                                                                                                                                                                                             Employee slipped in parking lot on ice and hit head. ()
## 8004                                                                                                                                                                                     Employee slipped on floor mat in post office while completing unit business. ()
## 8005                                                                                                                                                               Employee slipped on ice head injury from fall resulting in 3 cm head laceration to occipital scalp ()
## 8006                                                                                                                                                                                                Employee slipped on icy sidewalk walking outside to take a break. ()
## 8007                                                                                                                                                                                         Employee slipped on wet floor and fell hitting the left side of her head ()
## 8008                                                                       Employee started hauling unit to warm up engine prior to driving. After about 20 minutes employee entered vehicle when a flying insect entered his right ear and lodged deep inside canal. ()
## 8009                                                                                                                                                                                                Employee state he raised up and hit head on door over cell window ()
## 8010                                                                                                                                                                    Employee state he took an incoming call by pressing on the headset and he heard a loud noise. ()
## 8011                                                                                                                                 Employee state he was pulling materials up a pole with a hand line when debris came off the hand line and got into his left eye. ()
## 8012                                                                                                                                              Employee state she was walking down the stairs and her left leg gave out. She hit her left side of head on the wall ()
## 8013                                                                                                                                                                                                        Employee state that getting into truck he hit top of head ()
## 8014                                                                                                                                                                       Employee stated - driving van with the window down and think something flew in his left ey ()
## 8015                                                                                                                                                                              Employee stated another employee accidently sprayed her in the face with pepper spray.
## 8016                                                                                                                                                           Employee stated assisting inmate in decontamination shower, inmate spat on his right facial area and arm.
## 8017                                                 Employee stated at crdt training at beaufort county community college in washington, nc while shooting the revolver felt cramps in left and right hands and left and right feet, vision blurred and spotty glare ()
## 8018                                                                                                                                                               Employee stated attempting to remove an inmate from the shower when the inmate struck him in the eye.
## 8019                                                                                                                                                                  Employee stated bent over to pick up an ink pen, and hit his head on the table as he was coming up
## 8020                                                                                                                                                   Employee stated bent over to pick up something off the floor and when she raised up she hit her head on the door.
## 8021                                                                                                                                          Employee stated carry boxes, reaching for one of the boxes in the back seat, struck forehead on thecorner of the left door
## 8022                                                                                                                                                                             Employee stated climbing the tier in b pod and an inamte sprayed him with disinfectant.
## 8023                                                                                                                                                                                                     Employee stated conducting receration & was struckby an inmate.
## 8024                                                                                                                                                               Employee stated due to the sun exposure all day, her face started to severely swell and her left eye.
## 8025                                                                                                                                                                                                    Employee stated during the use of force inmate spit in his eyes.
## 8026                                                                                                                                                                                            Employee stated employee hit head on a locker while conducting a search.
## 8027                                                                                                                                                             Employee stated escorting an inmate to his cell after a use of force when the inmate spit blood on him.
## 8028                                                                                                                                       Employee stated feeding inmates when an inmate struck him on the right side with a sock that had a solid substance inside it.
## 8029                                                                                                                                                 Employee stated fire extinguisher hose seperated from the extinguisher, substance released struck employee in face.
## 8030                                                                                                                                                                                               Employee stated had his head down and hit his headon the open window.
## 8031                                                                                                      Employee stated had overhead assistance call and she responded and assisted staff by using nci to help hold resident leg when they kicked her in the mouth. ()
## 8032                                                                                                                                                                Employee stated he assisted in the take down of an inmate, fell on ground with inmate, hitting head.
## 8033                                                                                                                                                                                               Employee stated he has something blow off a bath blanket into his eye
## 8034                                                                                                                                                                  Employee stated he responded to a code 4 attempting to restrain the inmate he spit in his face. ()
## 8035                                                                                                                                                               Employee stated he tripped over a rope in the badin control room. Hit his forehead on window sill. ()
## 8036                                                                                                                                                                     Employee stated he was assisting inmate canteen and the inmate hit him in the face and head. ()
## 8037                                                                                                                                                                              Employee stated he was cuffing another inmate and an inmate struck him from behind. ()
## 8038                                                                                                                                                                               Employee stated he was doing crdt with another officer and his knee hit his tooth. ()
## 8039                                                                                                                   Employee stated he was escoriting an inmate to his cell and he was removing the cuffs off and the inmate hit him in the left side of his head. ()
## 8040                                                                                                                                                            Employee stated he was escorting an inmate to be shave and the inmate dame out of cel and restraints. ()
## 8041                                                                                        Employee stated he was escorting inmates from the union unit to the kitchen and an inmate grabbed and attempted to hit him. He fell and was stuck by an object or person. ()
## 8042                                                                                                                            Employee stated he was giving cpr and was giving breath to inmate, salva/food particals came throughthe mouth piece he was using for cpr
## 8043                                                                                                                                                                 Employee stated he was hit in the face (nose) by an inmate while conducting a search of the inmate.
## 8044                                                                                                                                              Employee stated he was in the moore unit in the inmate cell and he struck him twice on left side of face with fist. ()
## 8045                                                                                                                                                                                        Employee stated he was making rounds and inmate punched him in the mouth. ()
## 8046                                                                                                                                                                            Employee stated he was monitoring inmates in the dinning hall when an inmate hit him. ()
## 8047                                                                                                                                                         Employee stated he was moving from ladder to top shelf and slipped from ladder and landed on right knee. ()
## 8048                                                                                                                                                  Employee stated he was providing nursing assessment/blood pressure check to inmate when inmate spit on his face ()
## 8049                                                                                                                                                                                    Employee stated he was relocating an inmate to the moore unit and he hit him. ()
## 8050                                                                                                                                                                                          Employee stated he was searching an inmate cell and he was head butted. ()
## 8051                                                                                                                                                       Employee stated he was sitting in a chair, laid back and the chair turnover hitting his head on the floor. ()
## 8052                                                                                                                                                                                         Employee stated he was struck by another vehicle while doing curfew checks.
## 8053                                                                                                                                                                                      Employee stated he was supervising an inmate and he punched him in the jaw. ()
## 8054                                                                                                                                                                 Employee stated he was supervising inmates in the kitchen and the inmate struck him in the face. ()
## 8055                                                                                                                                                        Employee stated he was taken a pair of boots from an inmate and he swung and hit the left side of his mouth.
## 8056                                                                                                            Employee stated he was trying to restrain an inmate assisting staff and had to take inmate to the ground. Employee stated his head and eyes were hurting
## 8057                                                                                                                                                         Employee stated he was walking pass an inmate cell door and the inmate threw a liquid susbtance in his eye.
## 8058                                                                                                                                                                          Employee stated he was welding when a spark flew into welding shield and hit his left eye.
## 8059                                                                                                                                                                                         Employee stated inmate assault him by hitting him in the ear with his fist.
## 8060                                                                                                                                                                             Employee stated inmate being escorted to the shower and inmate spit in employee's face.
## 8061                                                                                                                                                                               Employee stated inmate hit her in the face on the right cheek below the eye twice. ()
## 8062                                                                                                                                                                                                                      Employee stated inmate hit her in the face. ()
## 8063                                                                                                                                                                                                                      Employee stated inmate hit him in the face. ()
## 8064                                                                                                                                                                                Employee stated inmate punched him in the left side of arm and head, chipping teeth.
## 8065                                                                                                                                                         Employee stated inmate reached through the bars of cell with pointed finger, entering employee's right eye.
## 8066                                                                                                                                                                                                                                   Employee stated inmate shower. ()
## 8067                                                                                                                                                                                                                             Employee stated inmate spit in her face
## 8068                                                                                                                                                                          Employee stated inmate struck the officer in the head with his hand pushing her head back.
## 8069                                                                                                                                                                                                         Employee stated inmate threw a cup of urine in his face. ()
## 8070                                                                                                                                                             Employee stated inmate threw an unknown liquid substance, hitting officer in the facial area and chest.
## 8071                                                                                                                                                                                                              Employee stated it wasn't any ventilation in the unit.
## 8072                                                                                                                                                   Employee stated missed sharp curve while driving in the rain and on an unfamiliar rd., vehicle went in the ditch.
## 8073                                                                                                                                                                                              Employee stated patient attacked him causing his head to hit the wall.
## 8074                                                                                                                                                             Employee stated placing inmate in decontamination shower, the inmate spat on right side of facial area.
## 8075                                                                                                                                                                          Employee stated removing backhoe from lowboy trailer & machine fell off with driver in it.
## 8076                                                                                                                                                                                Employee stated returning inmate back to his cell inmate spit in officers face area.
## 8077                                                                                                   Employee stated she bumped her head while walking up the stairs from the basement to the first floor in the raney building while going on break. Employee said ()
## 8078                                 Employee stated she tripped on the concrete in the back parking lot as she was stepping up to cross the brick cross walk into building. She fell causing contusions to left side upper lip, forearm, elbow, cheek and lower back ()
## 8079                                                                                                                                          Employee stated she was answering the phone in operations and the phone slipped from her hands and struck her on her head.
## 8080                                                                                                                                                                                           Employee stated she was called to a code and was hit in the face area. ()
## 8081                                                                                                                                                                                                             Employee stated she was laughing and bit her tongue. ()
## 8082                                                                                                                                                                              Employee stated she was making rounds & inmate threw urine on her hitting facial area.
## 8083                                                                                                                                                         Employee stated she was monitoring loading dock and inhaled dust from clothing sprayed by fire extingisher.
## 8084                                                                                                                                            Employee stated she was putting mop up and lifted handle too high and hit light fixture and fixture hit her on the head.
## 8085      Employee stated she was removing defaulted stapler from manual stapler(in process of stapling records copy of the roster. After removed of the stapler the latch holding the stapler closed and in the process a stapler flier/pop out and hit my right eyebal
## 8086                                                                                                                                                                                   Employee stated she was shredding papers and hit her head on the shedder door. ()
## 8087                                                                                                                                                                                           Employee stated she was sitting in the truck and it was leaking fumes. ()
## 8088                                                                                                                                                                Employee stated she was taking an inmate out of the shower and he began stricking her repeatedly. ()
## 8089                                                                                                                                                                  Employee stated she were in the patrol ppv#3 and the fire extingisher fell over and discharged. ()
## 8090                                                                                                                                            Employee stated sitting on stool he was sitting on slipped away from him. He fell and hit his head on the corner of desk
## 8091                                                                                                                                                                                              Employee stated standing in the door, sliding door closed on his head.
## 8092                                                                                                                                                                    Employee stated supervising work crew, bee's nest was disturbed, bee stung him on his upper lip.
## 8093                                                                                                                    Employee stated taht he was in in-service-training and while doing the back break fall, him and another officer head collied with each other. ()
## 8094                                                                                                                                Employee stated that after exiting the gatehouse, he slipped in snow and fell, hitting the back of his head and neck on sidewalk. ()
## 8095                           Employee stated that after he unloaded the pavement marking remover, he pushed it through the door, and when the back wheels hit the threshold it mashed his finger between the handle on the machine & door. List injury as: left eye ()
## 8096                                                                                                       Employee stated that as she was starting the state vehicle at forsyth corr. She stated that a bee or spider was flying and had bit her on her right ear lobe.
## 8097                                                                                                                                                                                                  Employee stated that cover of ice machine fell off and hit head ()
## 8098                                                                                                                       Employee stated that cronic use of loud equipment while employed with ncdot has caused damage to his hearing. List injury as: hearing/ears ()
## 8099       Employee stated that grinding metal off of a shank piece that he had welded on in the shop. The supervisor's report that the employee was wearing his prescription glasses under his welding helmet. It states this happened on the 10th but treated 11th. ()
## 8100                                                                                                                                 Employee stated that he tripped and fell on his way to get coffee. (no additional information provided as to how fall occured. ) ()
## 8101                                                                                                                                                                                      Employee stated that he tripped foot on walkway and hit head over left eye. ()
## 8102                                                                                                                         Employee stated that he was assisting in a pert search for a missing person, when a tree branch snapped and struck him in the right eye. ()
## 8103                                Employee stated that he was getting out of his vehicle at work and closed his vehicle dool and took a step to go to the back of his vehicle to get his duty belt, employee stated that he lost his footing and he went air borne. ()
## 8104                                                            Employee stated that he was on ashokie firing range and was shooting the rifle when a round from the rifle went unter his safety glasses and burned the top of his eye which cause him face to swell. ()
## 8105                          Employee stated that he was on hospital duty with an inmate which was cut and the doctor was giving the inmate shots in the face wher he had been cut and he fainted. Employee stated that when he fainted he hit his head on the wall. ()
## 8106                                                                                                                                                                               Employee stated that he was responding to a code 4 and was assualted by an inmate. ()
## 8107                                                                                                                                       Employee stated that he was sitting co 1:1. Patient turned around and grabbed staff by the head and hit him in the rt eye. ()
## 8108                                                                                                                                                                    Employee stated that he was supervising inmates, inmate threw a handful of hot water in his face
## 8109                                                                                                                                                        Employee stated that he was talking to the inmate and the inmate turned on him and struck him in the eye. ()
## 8110                                     Employee stated that he was trying to get patient to calmed down. While trying to move to safety, staff had patients lt leg while she was in the wheelchair. Patient punched staff in the face on the rt side with her fist. ()
## 8111                                                                                                                                                                                      Employee stated that he was walking & tripped overa drain plug in the concrete
## 8112                                                                                                                                                                                        Employee stated that he was walking after coming down stairs and tripped. ()
## 8113                                                                                                                 Employee stated that his forehead was injured when he was punched in the head by the inmate and his finger was injured when he fell to the concrete
## 8114            Employee stated that in the process of surgical extraction with highspeed handpiece got sprayed in eye with handpiece. Handpiece had been in patient's mouth. Incident ocurred while cleaning up after procedure and saftey glasses had been removed. ()
## 8115                                                                                                                                                                                                  Employee stated that inmate struck her on face, forehead, and lip.
## 8116                                                                                                                                                                    Employee stated that inmate struck him in the faceand employee complained of pain in right knee.
## 8117                                                                                                                                                                                     Employee stated that inmate struck him in the lip with his fists and handcuffs.
## 8118                                                                                                                                                     Employee stated that inmate threw feces at him. It got in his eyes, mouth, ears, on arms, hands and clothes. ()
## 8119                                                                                                                                                        Employee stated that pulled on shower door to ensure it was locked in segregation and hit himself in head ()
## 8120     Employee stated that she bent over to take cardboard out of the trash container and struck her forehead on a metal piece protruding from the folding machine. Employee was holding her head and said her head hurt. She sat on floor because she felt faint. ()
## 8121                                                                                                Employee stated that she has a rash on the lt side of the face and states that her lt eye keeps tearing. She does not recall touching her face with any irritant. ()
## 8122                                                                                                                                                                                                         Employee stated that she hit her head on a wooden bookcase.
## 8123                                                                                                                            Employee stated that she walked forcefully into the partician after a disturbing telephone call. Busted both lips and hit front teeth ()
## 8124                                                                                                                          Employee stated that she was assisting with patient eating. Patient was being belligerent and began punching staff on the lt side of face.
## 8125                                                                                                                Employee stated that she was cleaning the shower walls and bath tubs after construction was completed. While cleaning, dust flew into her lt eye. ()
## 8126                                                                                                                                                             Employee stated that she was driving a forklift back to get cargo when something blew into her left eye
## 8127                                                                                                                                                                 Employee stated that she was exiting the block door when door struck the right side of her head. ()
## 8128                                                                                                                                                                                       Employee stated that she was injuried in a car accident in a state vehicle ()
## 8129                                                                                                       Employee stated that she was returning from making a work related deposition when she tripped and fell on a broken, unevern sidewalk near the doa building ()
## 8130                                                                           Employee stated that she was sitting doing paper work when a patient came in and stood in the doorway. Patient attacked staff member and scratched her on the lt side of face and lip. ()
## 8131                                                                                                                Employee stated that she was sitting one on one with a patient. While sitting with the patient, patient punched staff on the rt side of the head. ()
## 8132                                                                  Employee stated that she was sitting with co 1:1 a patient. While she was getting ready to unlock the bathroom door, patient with closed fist punched staff on the rt side of the face and eye. ()
## 8133                                                                                                                                                                                 Employee stated that she was struck in her face while she was working chow hall. ()
## 8134                                                                                                                                                                     Employee stated that she was struck in the face by an inmate when she responded to a code 4. ()
## 8135                                                                                                                                                Employee stated that she was talking to a patient when patient attacked staff and hit her several times in the head.
## 8136                                                                                                                     Employee stated that she was trying to assess patient. Patient sat on the side of the bed and started hitting me in the head and the lt jaw. ()
## 8137                                                                                                                 Employee stated that she was trying to stop an inmate from attacking an employee when inmate swung at staff she block it and she was hit in face ()
## 8138                                                                                                 Employee stated that she was walking behind a patient and patient turned around and attacked staff hitting her on the head, bridge of nose and front of forehead ()
## 8139                                                                                                                                                                                                        Employee stated that something in the air blew in his eye ()
## 8140                                                                                                                                                                   Employee stated that the chair that he was sitting in broke and he fell back and hit his head. ()
## 8141                                                                                                                                                                                            Employee stated that the injury occurred after he was pepper sprayed. ()
## 8142                                                                                                                                                                Employee stated that the light in segregation were changed and old bulb was dropped on the floor. ()
## 8143                                                                                                                                                Employee stated that they were picking up christmas boxes and captain blowe accidently dropped a box on her head. ()
## 8144                                                                                                                                            Employee stated that when he was removing wrapping from the cable wire with a knife, it slipped cutting him on the head.
## 8145                                                                                                                                                    Employee stated that while adjusting shower valve in pipe chase, he bumped his head on the metal damper shaft ()
## 8146                                                                                                                                                                 Employee stated that while discussing case with inmate, inmate attacked him causing a use of force.
## 8147                                                                                                                                                  Employee stated that while entering the handicap van to remove inmate he struck his head on the roof of the van ()
## 8148                                                                                         Employee stated that while practicing removing an inmate from cell on fire, he (acting as an inmate) hit his mouth on air pack duirng the exercise and chipped his tooth ()
## 8149                                                                                                 Employee stated that while she was sanitizing her work station with disinfectant liquid spray, the spray got in her eyes causing the right eye to burn and itch. ()
## 8150                                                                                                                                                             Employee stated that while taking inmate to floor after assault on staff inmate struck left side of jaw
## 8151                                                                                                                                                                                                                         Employee stated urine was thrown on him. ()
## 8152                                                                                                                                                                         Employee stated using use of force on inmates that were fighting and was struck in the lip.
## 8153                                                                                                                                                          Employee stated was assisting with inamte recreation, when a inmte hit him in the face with a closed fist.
## 8154                                                                                    Employee stated was running a behavior intervention, back of neck was scratched by resident, later he blacked out in nurse's station, hitting back of head and right forearm. ()
## 8155                                                                                                                                                                                                Employee stated while doing showers, inmate spit in employee's face.
## 8156                               Employee stated while flagging property for timber thinning job, he bent over to cut sapling, his safety glasses were pushed forward. The sapling fell backwards towards him striking him in the face and scratching his left eye. ()
## 8157                                                                                                                           Employee stated while he was monitoring the dayroom, patient stood up to look out the window and hit staff on the rt side of the face. ()
## 8158                                        Employee stated while in c- block the telephone rang and she lean back in the chair to get it off the hook, when she was hanging it back up, she lean back to put it on the hook and it fell and hit her in the forehead. ()
## 8159                                                                                                                                               Employee stated while patting down inmate in gym another inmate threw a basketball, hitting her on right side of head
## 8160                                                                                                                                                       Employee stated while seating inmate gamble in dining hall was struck in face several times with closed fist.
## 8161                                                                                                   Employee stated while standing near another employee pouring floor stripping (bare bones) solution in a 5 gallon bucket some of it splashed into her left eye. ()
## 8162                                                                                                                                                Employee stated while walking from the reciving area he and another employee walked into one another, hitting heads.
## 8163                                                                                                                                                                        Employee stated ws in storage room when an inmate burst into the area and hit her in the jaw
## 8164                                                                                       Employee stated, eyes are inflamed and burning from the condition of the building regarding carpet being wet from rain coming into the building. Have asthma and wheezing. ()
## 8165                                                                                                                                                    Employee stated, while at a stop light in a state car, a large dump truck banged into the back end of my car. ()
## 8166                                                                                                                                                                                            Employee states " patient came twoards hct and hit her on the forehead "
## 8167                                                                                                                                                          Employee states "during shower time in seg, inmate cruz turned and hit me with something in the nose. " ()
## 8168                                                                                                                                                                                    Employee states "while cleaning inmates rooms I had a reaction to substance used
## 8169                                                                                                                                                          Employee states I was clocking out. A employee came to clock out, push me, I fell back and hit my head. ()
## 8170                                                                             Employee states I was removing a playcenter poster from the rear of my van. As I switched the poster from one hand to the other a corner of the poster caught my eye and cut my eye. ()
## 8171                                                                                                                                                                  Employee states I was trying to separate two patients that were fighting & ended up getting hit ()
## 8172                                                                                                                                            Employee states a student became agitated broke a pencil and threw it at the employee, striking her in the right eye. ()
## 8173                                                                                                                                                         Employee states as a result of boxes falling on her she hit her head on the desk. Her right eye is sore. ()
## 8174                                                                                   Employee states as head wrestling coach he was drilling with one of the wrestlers when the wrestlers mouth (with teeth exposed) hit the top of his head, causing a laceration. ()
## 8175                                                                                                                                                                      Employee states as she was standing up she hit her head on the end of cabinet in front of her.
## 8176                                                                                Employee states crdt partner placed ball of hand under nose, lifted up agressively, took him off balance causing hand to slide to left side of nose & heard grinding & felt pain. ()
## 8177                                                                                                                    Employee states driving vehicle and checking a fire, tires dropped into hole causing him to bounce up, striking head on metal clip on sun visor.
## 8178                                                                                                                                                                                                Employee states during pepper spray training, her eyes were inflamed
## 8179                                                                                                                                                                                                         Employee states during pepper spraying, her eyes were burnt
## 8180                                                                                                                                          Employee states he bent down and when he raised up, he hit the top of his head on the corner of a podium in the courtroom.
## 8181                                                                                                                                                                            Employee states he fell to the ground while taking control of inmate's arms and legs. ()
## 8182                                                                                                                                                                                                     Employee states he has headaches sustained in a car accident ()
## 8183                                                                                                                                                                                                                              Employee states he pulling/laying 2 ()
## 8184                                                                                                   Employee states he was bleeding pressure off a vehicle coolant tank when his hand slipped off the air nozzle and it sprayed antifreeze into his face and eyes. ()
## 8185                                                                                                                                                                                                      Employee states he was changing air filter in mechanical room.
## 8186                                                                                                                                         Employee states he was drilling on a steel post and the wind was blowing when a piece of debris blew into his right eye. ()
## 8187                                                                                                                           Employee states he was exercising a lft great toe lifted from nail bed, toe nail slipped from hemostate blood splattered about face/eyes.
## 8188                                                                                      Employee states he was feeding chow and an inmate came out of his cell pod running toward him and started swinging at him. He grabbed the inmate using restraint technique. ()
## 8189                                                                                                                                                                                          Employee states he was hit in left ear by a closed fist from an inmate. ()
## 8190                                                                                                              Employee states he was holding a ladder for another employee when a fish tape device was accidentally dropped from top of the ladder onto his head. ()
## 8191                                                                            Employee states he was holding and leveling piping using a hammer to adjust alignment. After striking the pipe he immediately heard a ringing and minor hearing loss in his left ear. ()
## 8192                                                                                                                                                                            Employee states he was involved in an altercation with an inmate/attempt to restrain. ()
## 8193                                                                                                                                                                            Employee states he was leaving b-pod and was hit on the head with a broken horseshoe. ()
## 8194                                                                                                                                                      Employee states he was moving field hockey goals when one of the goals turned over and hit him in the head. ()
## 8195                                                                                                                                                   Employee states he was pepper sprayed as a new employee and the pepper spray caused irritation to his left eye ()
## 8196                                                                                                                               Employee states he was performing a water quality inspection, when a tree limb struck him in the right eye, resulting in bruising. ()
## 8197                                                                                                                                                                       Employee states he was placing inmate in cage when he was hit by the door huritng his head ()
## 8198                                                                                                                                            Employee states he was sprayed in the eyes with pepper spray during new employee orientation and it irritated his eye ()
## 8199                                                                                                                                       Employee states he was sprayed in the eyes with pepper spray during training and thus results in an infection in his eyes. ()
## 8200                                                                                 Employee states he was standing on a ladder drilling a hole in concrete wall when the drill bit became hung in the wall causing the drill to spin and hit him in the head twice. ()
## 8201                                                                                                                     Employee states he was unloading equipment from trailer when a wire caught on top of solar panel and swung down hitting him in the left eye. ()
## 8202                                                                                                 Employee states he was walking an inmate to the inmate segregation recreation area when the inmate got in his face and spit on his nose, cheek and maybe his eye ()
## 8203                                                                                                                                                                                  Employee states he was walking into a building and something went into his eye. ()
## 8204                                                                                                                                 Employee states he was walking on the east yard with his umbrella at which point the wind forced the umbrella into his left eye. ()
## 8205                                                                                                                                                               Employee states he was walking past an air duct and hit it with his head on the corner of the duct ()
## 8206                            Employee states he was walking through the 4th floor women's restroom when construction dust fell from above and got into his eyes. He was wear hard hat, eye glasses, gloves and safety vest. States next time he will wear goggles. ()
## 8207                                                                                                                                Employee states he was working out with a wrestler when his bottom lip was cut from direct impact with the other wrestler's head. ()
## 8208                                                                                                                                                 Employee states he was wrestling with another wrestler when he received an accidental elbow above his right eye. ()
## 8209                                                                                                                                                                                                                     Employee states patient struck her in the nose.
## 8210                                                                                                                                                                                  Employee states possible chemical on her hands that was rubbed in her left eye. ()
## 8211                                                                                                                                                           Employee states resident hit her in the face causing her to hit the back of her head on the door frame ()
## 8212                                                                                                             Employee states resident hit his head while he tried to block him wut with all his force but he still hit his head then hit him again on top of head ()
## 8213                                                                                                                                                                   Employee states she leaned down to floor to pick up id badge & struck forehead on metal shelf. ()
## 8214                                                                                                                                             Employee states she picked up a curtain rod to place on couch when rod slipped out of the curtainstriking her right eye
## 8215                                                                                                                                        Employee states she pulled out a piece of paper to make a copy and it struck her in the right eye before she could blink. ()
## 8216                                                                                                                                                   Employee states she was accidently hit in the right eye as a fellow employee handed her back her manager card. ()
## 8217                                                                                                                                  Employee states she was assigning equipment out -after unlocking handcuffs, she rubbed her eye & it started burning & watering. ()
## 8218                                                                                                                 Employee states she was attempting to handcuff an inmate that refused to put his hands behind his back twice, she sprayed inmate and he punched her
## 8219                                                                                         Employee states she was cleaning a window in hoey hall lobby when she bent over to clean the window a sign in the window fell and caught the corner of her right eyelid. ()
## 8220                                                                                                                       Employee states she was cranking down the basket.. The crank stopped because the basket got caught on fence and crank handle hit her in mouth
## 8221      Employee states she was doing a dressing change on inmates wound; advised inmate not to touch wound with dirty hands. Employee put hand sanitizer in inmates hands, told him to rub them and inmate slung hands causing sanitizer to get in employees eyes. ()
## 8222                                                                                                                                      Employee states she was explaining to pt about taking meds when the pt jumped up and attacked her causing bump on her head. ()
## 8223                                                                                                                                                                             Employee states she was getting file folders out of car and a paper hit her left eye ()
## 8224                                                                                                                 Employee states she was getting more chairs out of closet and a table fell on head and a table leg swung out and whacked her on top of her head. ()
## 8225                                                                                                                    Employee states she was getting supplies from supply cabinet when the overhead sliding cabinet door slid down and hit the bridge of her nose. ()
## 8226                                                                                  Employee states she was leaving her office and when she got in front of the building her shoe got caught on the tip of uneven cement squares which caused her to trip and fall. ()
## 8227                                            Employee states she was on the playground working with a child and he wanted to get on the swing. Employee reached down to pick him up and when she did, he moved his hand up and his finger went into her right eye. ()
## 8228                                                                                                                                                                     Employee states she was proceeding through the slider when the door abruptly closed on her head
## 8229                                                                                                                                                Employee states she was redirecting a pt who was naked in hallway and pt stuck employee causing swelling to face. ()
## 8230                                                                                                   Employee states she was shifting things around in the office, when plugging in the microwave, she struck her head on the corner of the cabinet in the kitchen. ()
## 8231                                                                                                                       Employee states she was sitting in chair at computer and reached to get something and the next thingshe remembers was waking up on the floor.
## 8232                                                                                  Employee states she was stacking books on a shelf when someone called her name and as she turned the plastic strip that holds the shelves together struck her in the right eye. ()
## 8233                                                                                                                                       Employee states she was swimming and diving in the tombigbee river collecting mussel samples for extended periods of time. ()
## 8234                                                                                                                                                                                    Employee states she was walking and fell on right side of head and right knee ()
## 8235                                                                                                                 Employee states she was walking to meeting when she missed a short step in the front entrance, stumbled and fell head first into the brick wall. ()
## 8236                                                                                                  Employee states she was walking toward her office from parking lot when another employee with leaf blower was cleaning sidewalks and debris blew into her eyes. ()
## 8237                                                                                                                                                                                         Employee states something fell into eye while in front of computer-left eye
## 8238                                                                                                                                                                                              Employee states something went in his eyes when he was working on roof
## 8239                                                                                                                                                           Employee states that a client tried to get by her in the hallway and his elbow made contact wiht hernose.
## 8240                                                                                                                Employee states that after firing the shotgun during inservice firearms training, she removed the earphones and heard a rumbling in her left ear. ()
## 8241                                                                                                                                     Employee states that an incorrect cell door was opened and inmate jones came out and struck him with his fist several times. ()
## 8242                                                                                                                                                                                                Employee states that an inmate hit him in the face through the trap.
## 8243                                                                                                               Employee states that as he was doing inventory in the clotheshouse, a piece of plastic poked in his eye that had been wrapped in a piece of clothing.
## 8244                                                                                                                                                                    Employee states that bleach fumes were inhaled while hallway in hu was being mopped, eyes burned
## 8245                                                                                                                                                                             Employee states that employer implanted electrodes into her brain and electrocuted her.
## 8246                                                                                                                                                                            Employee states that he came out of t-1 building and was stung in the face by a wasp. ()
## 8247                                                                                                                                    Employee states that he had an altercation with an inmate in housing unit #6 and was struck in the back of the head and neck. ()
## 8248                                                                                                                                                      Employee states that he hit his head on a air conditioner unit at the min. School while searching some bushes.
## 8249                                                                                                                                                                             Employee states that he slipped on florr and fell hitting the right side of his face ()
## 8250                                                                                          Employee states that he was assaulted by an aggressive inmate, who struck him in the mouth, he lost his balance and fell backward onto floor and cut back of head open. ()
## 8251                                                                                                                                                                                                              Employee states that he was assaulted by an inmate. ()
## 8252                                                                                                                                                             Employee states that he was attempting to restrainan inmate when he sustained a scratch to his rt. Ear.
## 8253                                                                           Employee states that he was checking the road squad bus after unloading inmates, he hit his head above the back door when exiting the back door of the bus, knocking him to the floor. ()
## 8254                                                                                                                                 Employee states that he was coming down stairs of tower #4 lost his grip and fell down the stairs hitting head, left knee and ankle
## 8255                                                                                                                    Employee states that he was coming down stairs out of sgts. Office & missed the last step causing him to fall - and hit his head on the wall. ()
## 8256                                                        Employee states that he was coming out of the back of the laundry truck after inspecting the inside of the trailer, he slipped and fell off the step, hitting his head on pavement and right leg on step. ()
## 8257                                                                                                        Employee states that he was removing a shirt from around an inmates neck who had attempted to hang himself when his radio antenna poked in his right eye. ()
## 8258                                                                                                   Employee states that he was restraining an inmate (holding him down on the floor), when EE lifted his head he struck his head on underneath side of cell bunk. ()
## 8259                                                                                                                                                          Employee states that he was supervising an inmate when the inmate punched him in the lip and right jaw. ()
## 8260                                                                                                                                                 Employee states that he was talking with an inmate when the inmate became upset and combative and assaulted him. ()
## 8261                                                                                                                                                      Employee states that he was trying ot break up arguement between inmates, when he was hit in the back of head.
## 8262                                                                                                                                                                            Employee states that he was trying to secure an inmate when the inmate assaulted him. ()
## 8263                                                                                                                                Employee states that he was walking backwards on shoulder of road, tripped on a wire or root, fell on back and left side of body. ()
## 8264              Employee states that he went to g&h dorm (min. Unit) and found inmate in blood. He got inmate up, inmate ran, he pursued inmate, caught up with inmate, got struck by inmate in the mouth and face, also got sprayed while trying to subdue inmate. ()
## 8265                                                                                                                                                                                                Employee states that he woke up on the ground withhis head bleeding.
## 8266                                                                                                                                    Employee states that inmate refused orders to submit to cuffs, oc pepper spray, inmate began fighting striking me in left eye ()
## 8267                                                                                                                                                                               Employee states that she swallowed a straight pin while taking pins out of a curtain.
## 8268                                                                                                                        Employee states that she was directly exposed to oc pepper spray as mandated for certified correctional officers in new employee orientation
## 8269                                              Employee states that she was doing a security check of dining room doors. After checking to ensure that the dining room door was locked, I turned to walk to the back of the dining room and slipped and fell down. ()
## 8270                          Employee states that she was in route in a state owned vehicle to hart industrial clinic to be evaluated for a w/c reported injury that occured earlier that day when the vehicle she was in was struck from behind by another vehicle. ()
## 8271                                                    Employee states that she was monitoring d-1 south wing when 2 inmates began fighting, while trying to restrain inmates she stated that her glasses were knocked off and she was struck in the cheekbone area. ()
## 8272                                                                                                                                                         Employee states that she was on the firing range shooting the shotgun and something got in her left eye. ()
## 8273                                                                     Employee states that she was pulling lab tubes from centrifuge. As she pulled blood vile out of centrifuge, cap came loose and tube fell and splattered everywhere and possibly in left eye. ()
## 8274                                                                                                                                       Employee states that she was putting umbrella down and raised head up and while turning hit the cover or overhang at canteen.
## 8275                                                                                                                                                           Employee states that she was sruck by an aggressive individual while trying to remove a pen from hishand.
## 8276                                                                                                              Employee states that she was supervising inmates on 6th floor south when an inmate spat at another inmate and the spit got on her face & eyes also. ()
## 8277                                                                                                Employee states that something bit her on the left side of the face while she was on post in g & h dorm. She stated that she began to itch and swell immediately. ()
## 8278                                                                                                                                                                                                      Employee states that the inmate struck him in the left temple.
## 8279                                                                                                                                                                                                               Employee states that the pepper spray burned his eyes
## 8280                                                                                                              Employee states that their was construction work going on in the building and she started to smell strong odor. Nose started to burn & throat hurting.
## 8281                                                                                                                            Employee states that when he got up from the desk in the trust fund office, he struck his head on the corner of the wooden wall cabinet.
## 8282                                                                                                                                        Employee states that while changing a leaky air coupler it popped off the air line and was acoomplanied with a loud blast ()
## 8283                                                                                                                                                       Employee states that while doing door checks on the yard, he was stung twice by a bee, above the left ear. ()
## 8284                                                                                                                                         Employee states that while feeding chow, he had analtercation with an inmate who hit him in his lefteye with a closed fist.
## 8285                                                                                                                                                                       Employee states that while he was attempting to restrain an inmate the inmate punched him. ()
## 8286                                                                              Employee states that while he was restraining an inmate he reached out to grab the inmate's hand. He stated the inmate jerked away causing his elbow to hit the officer's forehead. ()
## 8287                                                                                                                                                                               Employee states that while hoeing in flower bed anobject flew up & scractched her eye
## 8288                                                                                                                                                                             Employee states that while in crdt training she fell hard to the floor on her left side
## 8289                                                                                                                                                     Employee states that while moving items in van to free fire extenguisher for inspection debris got in right eye
## 8290                                                                                                                              Employee states that while opening fire door on johnson yd as she bent over the handle struck her on the right top part of her head ()
## 8291                                                                                                                                                                                             Employee states that while sanding copper pipe he breathed in the dust.
## 8292                                                                         Employee states that while she was cleaning behind the desk in hu#7 she was picking up some paper towels and notebook off the floor and hit her head on a receptical box under the desk. ()
## 8293                                                                                                                 Employee states that while she was getting out of van at autobrite (having vehicle washed) foot slipped off the step and she fell and hit her head.
## 8294                                                                                                                                                        Employee states that while shooting 40 caliber handgun her left ear started hurting due to noise exposure ()
## 8295                                                                                                                                                  Employee states that while standing under a covered shelter a unidentified partical/insect entered right eye area.
## 8296                                                                                                                              Employee states that while supervising inmates cooking lunch he walked by a fan in the kitchen and something blew in both his eyes. ()
## 8297                                                                                                                                       Employee states that while talking to inmate a small drople of spit went into corner of his eye, he wiped it with his finger.
## 8298                                                                                                                                                                              Employee states that while working in wood pile, he fell, sustained cuts to lower lip.
## 8299                                                                                                                                                                                                                 Employee states the pepper spray irritated his eyes
## 8300                                                                                                                                                          Employee states upon entering student health, she experienced hoarseness, cough, sore through, headache ()
## 8301                                                          Employee states when she finished baking bread she was rolling the rack over the threshold out of the oven when the wheels got caught and a hot sheet pan slid out and struck her in the face and arms. ()
## 8302                                                                                                                                                          Employee states while carrying a box of printer cartriddges he fell down steps, hurting head, knee, & hand
## 8303                                                                                                                                                                                   Employee states while collecting water samples debris blew into his right eye. ()
## 8304                                                                                                                              Employee states while cutting a tree for city of claremont, a tree limb fell, knocking off hard hat and striking his rt. Side of head.
## 8305                                                                                                                 Employee states while escorting an inmate to seg, the inmate turned to another staff member, began shouting and spit blood into his mouth and eyes.
## 8306                                                                   Employee states while on a road test customer was moving to get out of the way of a emergency vehicle when, another vehicle struck the rear of the customer's vehicle. List injuries as: headache
## 8307                                         Employee states while participating in an instructor course for swift water rescue he had to swim in the tuckaseegee river for 4 days. On 5/5/10 he contracted a middle ear infection due to water quality in the river. ()
## 8308                                                                           Employee states while removing fence rails by hand he pulled a little too hard and the rail suddenly came loose and struck him in the chin, cutting his lip and puncturing his tongue. ()
## 8309                                                                                                                                                                            Employee states while running showers in segregration and inmate spit on him-in his eyes
## 8310                                                                                                                                                                     Employee states while standing at laundry shot holding shotgun when his left eye began to swell
## 8311                                                                                                                          Employee states while using a hammer to drive out lower ball joint on a vehicle, debris hit his front tooth and broke it off on impact. ()
## 8312                                                                                                                                Employee states while walking down sidewalk during evacuation from the building due to a fire alarm, that she turned to look at a ()
## 8313                                                                                                                                              Employee states working in f1 control room leg numb, knee gave way, fell hit back of head on panel in control room. ()
## 8314                                                                                                                                                    Employee states, I was looking in a window on passenger door while driver was shutting the hood & was struck. ()
## 8315                                                                                                                            Employee states, I was standing by the bunk takingthe pillow down to search through it and I pulled it down, it bumped against my mouth.
## 8316                                                                                                                                                                                                                Employee states, assaulted from behind by inmate. ()
## 8317                                                                                      Employee states, elevated pipe was dropped striking my head giving me a concussion and ruptured c-4, strained shoulders, and neck causing dizziness, nausea and concussion. ()
## 8318                                                                                                                                              Employee states, just finished oral surgery, walked by hand piece, scratched right bottom check on contaminated bur ()
## 8319                                                                                                                                                                   Employee states, trying to stop inmate running and fleeing from other staff. Struck by person. ()
## 8320                                                                                Employee states, was in conference room on segregation & when I sat down, chair slid across concrete floor. I fell back & hit head on electrical socket & chair landing in floor. ()
## 8321                                                                                                                                                                             Employee states, when inmate started to wake up, he coughed blood into my right eye. ()
## 8322                                                                                     Employee states, while restraining assaultive inmate by grabbing his leg, inmate kicked & threw me off balance, causing me to hit my head on the food trap on the cell door. ()
## 8323                                                                                                                      Employee states/alleges he was working in the kitchen and while sitting at the desk, the fan wasturned on and an object flew into his left eye
## 8324                                                                                                                                                                                                                                                 Employee states: ()
## 8325                                                                                                                                                   Employee states: aggression from resident occurred causing confrontation which resulted in intense aggression. ()
## 8326                                                                                                                                                             Employee states: an inmate started throwing punches at his head & I ducked down & took his legs out. ()
## 8327                                                                                                     Employee states: another staff and mindy was moving a resident from one chair to another. The resident became aggressive and hit mindy on left side of face. ()
## 8328                                                                                                                                                                                 Employee states: assisting a resident during a behavior and he hit her in the nose.
## 8329                                                                                                                                               Employee states: assisting nurse putting helmet back on resident. Resident threw up her arms and hit the left eye. ()
## 8330                                                                                                                                                                                             Employee states: assisting resident and resident hand hit in right eye.
## 8331                                                                             Employee states: attempted to pat search an inmate, inmate refused, &attempted to punch her. He missed & she backed up&sprayed him& he punched her on left side of chin on the bone. ()
## 8332                                                                                                                                    Employee states: attempting to lock residents wheelchair. When bending over the resident punch me I the left side of my face. ()
## 8333                                                                                                                                                       Employee states: bathing resident. Resident became agitated. Put her in chair and my eyes started burning. ()
## 8334                                                                                                                                                                                               Employee states: bent down to pick up toy and hit head on cabinet. ()
## 8335                                                                                                                                  Employee states: billie was helping a resident w/supper. The resident hit billie in the face with their arm that has a cast on it.
## 8336                                                                                                    Employee states: bringing resident out of bedroom in lift. Didn't have the lift all the way down. The lift hit the curtain rod and it fell and hit me in lip. ()
## 8337                                                                                                                                             Employee states: changing a residents diaper. He had toy and lifted it up and popped her in the mouth and hit tooth. ()
## 8338                                                                                                                                     Employee states: entering wheelchair van driver'sside, I stepped up & hit top of head on door framecausing head to go backwards
## 8339                                                                                                                                                          Employee states: he was cleaning buggie room and a steel bar fell from cabinent hitting him in the head ()
## 8340                                                                                                                                                              Employee states: he was cutting key blanks a piece of key bounced over the top of my safety glasses ()
## 8341                                                                                                                                                Employee states: he was felling a tree. Before he started he looked up to observe the tree something went in eye. ()
## 8342                                                                                                                                                            Employee states: he was walking down hallway when inmate splashed him with urine in eyes, nose, & mouth.
## 8343                                                                                                                                                                                                        Employee states: hit head on shelf while picking up trash ()
## 8344                                                                                                                                                                                        Employee states: housekeeper spraying too much come & bleach in bathroom. ()
## 8345                                                                                        Employee states: inmate involved in fight, sprayed with pepper spray. Inmate told to stop spitting. He was move from dayroom to a hall at which time he spat in his face. ()
## 8346                                                                 Employee states: laid keys on shelf at bathroom sink. The keys fell into trash. My automatic reaction to keys falling into trash was try to catch them and I hit my head on the towel dispenser. ()
## 8347                                                                                                                                                                                  Employee states: laundry detergent squirted in eye while putting it back on shelf.
## 8348                                                                                                                                                                                                  Employee states: paper cut to the eye while movinga piece of paper
## 8349                                                                                                                                                                                          Employee states: patient coughed & oral matter splattered in both eyes. ()
## 8350                                                                                                                                                                                    Employee states: pouring bleach in washer and bleach splattered in right eye. ()
## 8351                                                                                                                                                            Employee states: putting a lift cover under resident. Piece flew back and hit the right eye and face. ()
## 8352                                                                                                                          Employee states: putting resident to bed and changing his brief. Resident hit her in the right side of face, split the inside of mouth. ()
## 8353                                                                                                                                                                               Employee states: removing broom cover off broom. Something fell off into left eye. ()
## 8354                                                                                                                                                                                                   Employee states: resdient head butted her in the left eyebrow. ()
## 8355                                                                                                                                                                                              Employee states: resident became aggressive and scratched left eye. ()
## 8356                                                                                                                                                                           Employee states: resident became aggressive. I fell and resident kicked me in head twice.
## 8357                                                                                                                                                                           Employee states: resident behavior intervention and was poked in left eye by resident. ()
## 8358                                                                                                                                                                           Employee states: resident flung his head back striking me on the left side of my face. ()
## 8359                                                                                                                                                               Employee states: resident grabbed hair and shirt. Resident kicked her head and was trying to bite. ()
## 8360                                                                                                                                                                                       Employee states: resident had aggressive episode and hit left ear and eye. ()
## 8361                                                                                                                                                                                    Employee states: resident had conjunctivitis. Employee contracted conjunctivitis
## 8362                                                                                                                                                                                                                               Employee states: resident hit eye. ()
## 8363                                                                                                                                                                                                             Employee states: resident kicked injured in the head ()
## 8364                                                                                                                                                                                                                Employee states: resident slapped her across face ()
## 8365                                                                                                                                                                                                          Employee states: resident turned and his head hit my head.
## 8366                                                                                                              Employee states: resident went out door running. Asked the resident to go back to cottage and resident hit open handed down the right side of face. ()
## 8367                                                                                                                                                                     Employee states: responding to a help call and slipped and fell hitting the wall face first. ()
## 8368                                                                                                                                                                                          Employee states: sanding a repair patch in wall. Some dust fell in eye. ()
## 8369                                                                                                                                                                        Employee states: scraping glasses fogged up took off to clean and pain chip went into eye ()
## 8370                                                                                                                                                                             Employee states: setting up christmas tree and eye was stabbed with tip of a branch. ()
## 8371                                                                                                                                                   Employee states: standing at counter in canteen. Resident was coming behind me and hit me in the back of head. ()
## 8372                                                                                                                                                         Employee states: taking lid off detergent bucket when hose to lid hit bucket lid and splashed up on lip. ()
## 8373                                                                                                                                   Employee states: trying to deal with a behavior intervention and resident lifted foot and kicked me in the face on right side. ()
## 8374                                                                                                                                                    Employee states: walked into hall of another building and was struck by a resident in the face at her right eye.
## 8375                                                                                                                                             Employee states: walking back from canteen area to shop and started to feel hurt in right eye from wind blowing debris.
## 8376                                                                                                                                                                                                      Employee states: walking down hall & client hit him in hose ()
## 8377                                                                                                                                          Employee states: walking down hallway. Feet slide out from under and fell on left side of face and hit floor with face. ()
## 8378         Employee states: walking out of residents bedroom into hallway; slipped on rt side of body & hit head on door. Employee states she gave permission to housekeeping to mop the living rm &dining area (not hallway). Wet signs must have been moved by resid
## 8379                                                                                                                                                                                    Employee states: walking resident when he headbutted me, struck side of face. ()
## 8380                                                    Employee states: was sitting with a resident one on one. The resident became agitated while in a recliner and kicked employee in the knee cap. This caused employee to fall and hit her head on coffee table. ()
## 8381                                                                                                                         Employee states: was taking my break in my car and when I went to get out of my car, I slipped on leaves and acorns and fell face first. ()
## 8382                                                                                                                                       Employee states: went to pump laundry detergent in cup and lid was not put back on it and it came off and squirted in eye. ()
## 8383                                                                                                                           Employee states: while cleaning residents fingernails, he started attacking me with both fists and his feet. I was in seat beside him. ()
## 8384                                                                                                                     Employee states: while painting crafts at houst 324m she was shaking a small bottle of paint when the lid came off and hit her in the left eye.
## 8385                                                                                                                                                             Employee states: while physician was checking a resident, resident became aggitated & hit nurse in nose
## 8386                                                                                                                                                                   Employee states: while plugging in christmas treesglitter fell across her face & got in her eyes.
## 8387                                                                                                                                            Employee states: while stapling on upholstery using an air staple, the exhaust from the tool blew debris in left eye. ()
## 8388                                                                                                                                   Employee states: while walking a resident to class, he head butted me, hitting my left eye brow causing swelling and bruising. ()
## 8389                                                                                                                                                                          Employee stepped between patients on elevator and patient punched employee in the face. ()
## 8390                                                                                                                      Employee stepped off curb, twisted her foot & fellshe received a contusion on her forehead & face & an abrasion on her face from the pavement.
## 8391                                                                                                                                             Employee stepped off stairs on to a floor that had been recently mopped and fell hitting her head on the floor tile. ()
## 8392                                                                                                      Employee stepped on top of retaining wall - one of stone blocks moved - employee fell and the garden hoe he was holding hit him in the upper right eye lid. ()
## 8393                                                                                                                                                                                                            Employee stepped on uneven payment and fell on her face.
## 8394                                                                                                                                                                                                         Employee stepped under doorway and hit top of framework. ()
## 8395                                                                                                                                                                               Employee stood up from chair and bumped her head on the overhead shelf in cubicle. ()
## 8396                                                                                                                                 Employee struck her head on a bookshelf while picking up a pen off the floor in her cubicle. List injury as: head-top right side ()
## 8397                                                                                                                                                            Employee struck his head against a metal panel boxas he exited the staff restroom inside f-unit control.
## 8398                                                                                                                                                                                             Employee stumbled & fell and hit her head against the cinderblock wall.
## 8399                                                                                                                                                                                                        Employee suffered tick bite to rt ear, bite site red/swollen
## 8400                                                                                                                                                                                Employee sustained hearing loss in his left ear over the years from 1984 to 2011. ()
## 8401                                                                                                                                  Employee sweeping out the floor bed of a dump truck. Employee sustained debris in his right eye causing redness and irritation. ()
## 8402                                                                                         Employee taking patient to dayroom in his wheelchair. Patient pushed the snack cart, EE attempted to redirect, patient hit EE int the (left) face breaking EE's glasses. ()
## 8403                                                                                                                                            Employee talking to claimant, claimant pulled gun & shot employee in the head. Employee died as a result of the gunshot.
## 8404                                                                                                                                                                                                   Employee to resident up and something could have flown in her eye
## 8405                                                                                                                                                                 Employee took a drink from his drink bottle in which an inmate alledgedly poored window cleaner in.
## 8406                                                                                                    Employee transporting chart rack off elevator & rollers got caught, chart rack went forward and came back striking employee on the left side of her forehead. ()
## 8407                                                                                                                                                         Employee tripped and fell on her right side, injuring her right forearm and hitting her head on a chair. ()
## 8408                                                                                                                                                                                                       Employee tripped coming into a building and fell on her face.
## 8409                                                                                                                                                                                  Employee tripped entering talley student center and hit forehead on door frame. ()
## 8410                                                                                                                                                                                                Employee tripped on a drain and hit her head on an electrical box ()
## 8411                                                                                                                                                    Employee tripped on carpeted floor in effort to avoid wasp. Employee fell and hit back of head on door frame. ()
## 8412                                                                                                                                                                Employee tripped on concrete and fell on face, causing unspecified injuries to her chin and hand. ()
## 8413                                                                                                                                                 Employee tripped on leg of a table, fell, struck her head on drawer handle of another desk. Head andlow back injury
## 8414                                                                                                                                                                                  Employee tripped on uneven sidewak and fell forward on face causing nose to bleed.
## 8415                                                                                                                                                                                                                               Employee tripped over a fence support
## 8416                                                                                                                                                                            Employee tripped over a rock while conducting a site/monitoring visit in hyde county. ()
## 8417                               Employee tripped over a table leg which caused her to fall forward and hit the left side of her face on the chair. She stated she then fell backward and hit the back of her head on floor. She also hit her rt knee on something. ()
## 8418                                                                                                                                                                  Employee tripped over a wheelchair and fell on the floor on her left side and bruised her face. ()
## 8419                                                                                                                                                                                      Employee tripped over opened file cabinet drawer causing contusion to nose. ()
## 8420                                                                                                                                                                Employee tripped over parking riser in parking lot causing her to fall backwards hitting her head ()
## 8421                                                                                                                            Employee tripped over raised concrete in parking lot. Employee fell hitting face on concrete and breaking her nose and multiple brusies.
## 8422                                                                                                                                              Employee tripped over the threshold while walking into the baton training area. Employee was @ in-service training. ()
## 8423                                                                                                                                 Employee trying to get into attic-pulled on a piece of wood to boost up-board came loose hittingemployee in head causing laceration
## 8424                                                                                                                                                                            Employee trying to intervene with patient altercation, patient hit employee in the face.
## 8425                                                                                                                                                                                  Employee turn on air condition in work vehicle; debris blew into his right eye. ()
## 8426                                                                                                                                                                              Employee turned on fan coil heater and particulate matter was ejected into his eye. ()
## 8427                                                                                                                                                                                                   Employee turned on irrigation valve to flush out system. The 2 ()
## 8428                                                                                                                                Employee turned too quickly and tripped. Fell backward hitting right side of head on door frame then fell onto back on the floor. ()
## 8429                                                                                                                             Employee typing in l&d boardroom, intern opened an upper cupboard and teaching model fell 3' on employee head. Bruised on upper head ()
## 8430                                                                                                                                                   Employee unhooked a bungee cord, holding items in place in back of pickup truck, cord broke and hit his mouth. ()
## 8431                                                                                                                                                                   Employee unstopping clogged sewer line-drain opener/cleaner splashed into EE's eyes and onto body
## 8432                                                                                                                                                                               Employee using a spray bottle it malfunctioned splashing the employee in the eyes. ()
## 8433                                                                                                                                                                                       Employee using goof off to clean marks off wall, afterward - blurry vision ()
## 8434                                                                                                                                                       Employee using laminated ir-card to follow weak laser beam. Reflection off shiny surface entered left eye. ()
## 8435                                                                                                                                                                            Employee using paper shredder. Bent over and struck head on bracket on door to shredder.
## 8436                                                                                                                                                                                  Employee walked down the hall and slipped on floor. Floor was waxed 2-3 weeks ago.
## 8437                                                                                                                             Employee walked down to the main floor to get somesupplies when she slipped on floor stripper/wax eefell hurting her head and buttucks.
## 8438                                                                                                                                                                                        Employee walked toward entrance of building, tripped and fell on concrete ()
## 8439                                                                                                                                                                         Employee walking about campus making visits to the homes, something flew into her left eye.
## 8440                                                                                                                                                                                Employee walking in lab hallway and tripped over and hit face right side on floor ()
## 8441                                                                                                                                               Employee walking on sidewalk to enter bldg., slipped and fell forward injuring face, hands and chipped front tooth ()
## 8442                                                                                                                                                                                                        Employee walking to car outisde & wind blew trash in eye. ()
## 8443                                                                                                                        Employee walking up steep hillside towards fire, EE paused to rest then turned head back downhill & into a small twig poking EE in right eye
## 8444                                                                                          Employee was 1:1 with patient trying to calm patient down after an altercation with peers on ward. Patient was taken to middle area and patient hit EE in the left eye. ()
## 8445                                                                                                                                                               Employee was a passenger (blind), car he was riding in was involved in an accident at intersection ()
## 8446                             Employee was acting as an undercover agent when a patron became argumentative. One patron put him in a headlock, while the other struck him in the facial area around the right eye. The strike caused a laceration above right eye. ()
## 8447                                                                                        Employee was adding cryofuge tubes to a rack in a liquid nitrogen tank. A cryofuge tube that was already in the tank exploded. The cap hit the employee in the right eye. ()
## 8448                             Employee was adjusting position of chair when the back part broke causing me to fall and hit my head on the floor. Caused a hematoma and cut on the back of head. Employee taken to hospital by ambulance; was admitted to hospital. ()
## 8449                                                                                                                                                                                                Employee was administering meds, when patient hit EE in the face. ()
## 8450                                                                                                                                               Employee was administering nursing care. Patient hit employee while employee was putting on gloves to give injection.
## 8451                                                          Employee was arresting a suspect for driving while impaired and leaving the scene of an accident of a motor vehicle collision. The suspect struck the employee several times in the face with his fist. ()
## 8452                                                                                                                                                                                                       Employee was assaulted by a juvenile, without provocation. ()
## 8453                                                                                                                                                                                                                              Employee was assaulted by an inmate ()
## 8454                                                                                                                                  Employee was assaulted by an inmate hitting her in the face, knocking her to the ground, then kicking her in the face and head. ()
## 8455                                                                                                                                                                                                          Employee was assaulted by an inmate with a closed fist. ()
## 8456                                                                                                                                   Employee was assigned to the old dorm, heard a noise outside, went to see what it was, came back in fan blew something in her eye
## 8457                                                                                                                                               Employee was assisiting the client in the bedroom and the client struck him in the rt eye with his lft hand and palm.
## 8458                                                                   Employee was assisting a chainsaw operator felling trees. Full ppe was in place. Sometime during the operation, a piece of very small debris passed by his eye protection and entered his eye. ()
## 8459                                                               Employee was assisting a customer on the telephone. Storm was occuring at the time with thunder and lightning. Employee reported she received an electrical shock through the phone to the right ear.
## 8460                                             Employee was assisting a handicap motorist with changing a flat tire when, he went to retrieve lug wrench the van operator began lowering wheelchair ramp and struck imap employee on the head. List injury as: head ()
## 8461                                                                                                                                                       Employee was assisting an individual in putting onsocks when the individual head butted employee in the nose.
## 8462                                                                                                                                                           Employee was assisting an individual into the van when he fell backwards hitting employee in the nose. ()
## 8463                                                                                                                                             Employee was assisting another staff member putting a patient in restraints and patient punched him in the left eye. ()
## 8464                                                                                                                          Employee was assisting another staff with an individuals restraint and the individual turned his head and spat food in employee's eyes. ()
## 8465                                                                                                                                                                                                Employee was assisting client and the client hit him in the mouth ()
## 8466          Employee was assisting fellow employee in removing a damaged sign post from the ground located in a traffic median of nc hwy 87 in sanford. As tension increased on the chain, the post came free from the ground and struck employee on the chin area. ()
## 8467                                                                                                                                             Employee was assisting in clearing out dorm inmates during a code red, there was lots of smoke inhaled, throat and eyes
## 8468                                                                                                                                                                  Employee was assisting in restraint of an individual and hit the back of his head on the floor. ()
## 8469                                                                                                                             Employee was assisting medication nurse during med pass. Patient approach staff, made a comment & hit her in the face, nose and rt eye.
## 8470                                                                                                                                                                     Employee was assisting patient with shower. Patient struck employee on the side of her head. ()
## 8471                                                                                                                                       Employee was assisting pt from bathroom back to room and pt struck employee on left jaw causing tooth to fall from bridge. ()
## 8472                                                                                                                                                                                            Employee was assisting resident-abraision between eyes and chipped tooth
## 8473         Employee was assisting staff member with resident (student) who was exhibiting behavior problems. Student knocked employee's glasses off of her face and his finger jabbed her left eye. Left index and middle finger was injured while trying to block. ()
## 8474                                                                                     Employee was assisting the catawba county sheriff's office in the apprehension of a wanted fugitive and discharged his issued rifle resulting in hearing loss in his right ear.
## 8475                                                                                                                                                                       Employee was assisting the client with dressing and client stuck his finger in employee'e eye
## 8476                                                                                                                       Employee was assisting the contractor while he was welding. The employee recieved flash burns to his eyes. List injuries as: left & right eye
## 8477                                                                                 Employee was assisting the regional maintenance staff with measuring for a fire surpressent hood system when he walked into one of the above sprinkler system of the hood system ()
## 8478                                                                                                                                                      Employee was assisting walking an individual to the unit was scratched on the left cheek by the individual. ()
## 8479                                                                                                                                                                             Employee was assisting with an individual and the individual spit in employee's eye. ()
## 8480                                                                                                               Employee was assisting with an individual at the nurse's station. Individual became aggressive towards employee and hit employee in the right eye. ()
## 8481                                                                                                         Employee was assisting with an individual trying to get him to take a shower, when he became aggressive and hit employee in the right eye with his fist. ()
## 8482                                                                                                                                                      Employee was assisting with feeding an individual and the individual hit her in the face on the right side. ()
## 8483                                                                                                                                                                   Employee was assisting with individual transfer and the indiviudal spit in employee's left eye ()
## 8484                   Employee was assisting with loading an asphalt distributor truck with crs-2 from a bulk storage tank. The transfer hose separated from the truck and sprayed the employee with crs-2 on the head and neck. The clmt fell when hit by the hot tar.
## 8485                                                                                                                           Employee was assisting with manuel restraint. During carry of struggling patient, the patient struckemployee left eye area with his head.
## 8486                                                                                                                                          Employee was assisting with releaseing a patient and the patient's left leg hit employee on the right side of her face. ()
## 8487                                                                                                                                                                                       Employee was assulated by 2 juveniles beating him in the head, face and nose,
## 8488                                                                                                                                                   Employee was assulted by a juvenile, he was hit in the face breadking his glasses and cut & bruising under rt eye
## 8489                                                                                                                                                                          Employee was at a campfire when a foreign particleentered her eye and it became irritated.
## 8490                                                                                                                                                                      Employee was at a meeting and reached for her purse when chair broke and EE fell hitting head.
## 8491                                                                                                                                                        Employee was at lunch, trying to sit down and chair rolled out from under EE & EE hit her head on a wall. ()
## 8492                                                                                                       Employee was at the vocational gym stripping floors. The stripper caused the floors to be slippery and employee clipped and fell hitting back of his head. ()
## 8493                                                                                                                  Employee was at unarmed self-defense training during manuever employee was pushed to mat causinghead to strike mat-force of fall broke front tooth
## 8494                                                                                                                                                         Employee was attacked by patient. Employee was hiton head and scratched. He also injured his left shoulder.
## 8495                                                              Employee was attempting to arrest a suspect when the suspect began scuffling with employee. They went to the ground during the scuffle and the suspect used his elbow to strike the agent in the nose.
## 8496                                                                                                                                                                                                                           Employee was attempting to break a 3/4 ()
## 8497                                                                                Employee was attempting to check the fluids in his truck. He raised the hood and as he stepped up he hit his head on the raised hood causing a laceration to the top of his head. ()
## 8498                                                                                                                                                                      Employee was attempting to obtain vitals and patient punched her on the right side of face. ()
## 8499          Employee was attempting to overtake a violator vehicle when his vehicle went left of center and ran off road. Employee's vehicle struck a ditch culvert and embankment and overturned onto its top causing a concussion, and lacerations to head and arms.
## 8500                                                                                                                                  Employee was attempting to place an agressive individual in a t-hold, and the individual threw a dresser striking the employee. ()
## 8501     Employee was attempting to remove a stuck universal joint cap with a hammer & chisel. The chisel bounced free when struck with hammer, hitting the employee in the mouth. Employee did not go to dentist on doi, went on 03/20/14. Chipped left top front tooth
## 8502                                                                                      Employee was attempting to remove dirt off of dump truck tarp. Employee removed horizontal cross brace, tarp arm sprung back and hit employee in head. List injury as: head ()
## 8503                                                                                                             Employee was attempting to secure resident during a behavioral outburst, when the resident suddenly reared his head back smacking staff in the nose. ()
## 8504                                                                                               Employee was attempting to separate vacuum hose from handle and while pulling, the employee struck himself in the mouth. Employee sustained a cracked front tooth. ()
## 8505                                                                                                                                                                   Employee was attempting to shake the mop, dust entered her right eye causing itching and pain. ()
## 8506                                                                                                                                                                                      Employee was attempting to sit in chair and chair rolled out from under her ()
## 8507                                                                         Employee was attempting to slide a rack of video monitors forward to make repairs when a 21 lbs speaker was knocked off the top and fell 5 ft striking employee on the back of his head. ()
## 8508                                                                                 Employee was attempting to stop a suspect by tackling him when the suspect turned and threw the employee into a brick wall. The employee's right side of his forehead hit the wall.
## 8509                                                                                                                    Employee was attempting to unplug a clogged aerosol sealant can. When blockage was removed, contents sprayed onto his face and into his eyes. ()
## 8510                                                                                      Employee was backing into parking lot and hit guard post. He quickly turned his head to look out the window and hit the window frame with his cheek cutting a gash on his face
## 8511                                                                                                                                                                     Employee was backing up when she tripped over a parked pallet jack that was moved behind grader
## 8512                                                                                                                                          Employee was backing up, did not see pallet jack and fell as he was stepping back, hitting his head on a convey belt motor
## 8513                                                                                                                                     Employee was being trained to boil media solution and pressure built up causing solution to spray up and down into left eye. ()
## 8514                                                                  Employee was bending down to plug in a surge protector. She stood up quickly and struck the top of her head on an open cabinet. She sustained concussion and unknown injuries to neck and back. ()
## 8515                                                                                                                                                      Employee was bending down to take restraints off an inmate and hit his head on the corner of fire hose box. ()
## 8516                                                                                                                                                                    Employee was bending over and struck her head on a box mounted on the wall when she stood up. ()
## 8517                                                                                                                                                                                    Employee was bending over resident when resident struck employee in the left eye
## 8518                                                                                                                 Employee was bending over to pick up roll of toilet paper, while standing up from bending hit her head on a metal shelf on the wall of the restroom
## 8519        Employee was bending over to pickup a log where they had been cutting right of way when he felt a sensation go through his shoulders and arms. He did not know what happened until coworkers stated that a limb fell from a tree striking him on the head ()
## 8520                                                                                                                                                           Employee was bending to pick something up. He lost his balance and fell on his head causing laceration ()
## 8521                                                                                                                               Employee was bent over in the trunk of a state vehicle to retrieve state property when the trunk lid fell and struck her on the head.
## 8522                                                                                       Employee was bent over placing leg rest back on the wheelchair when the lapboard that was inside the seat of the wheelchair fell and hit employee on the back of the head. ()
## 8523                                                               Employee was bent over to the lathe looking for a piece of metal, and when he raised up a black streak came across his right eye. He thought maybe some dust from the lathe had gotten in his eye. ()
## 8524                           Employee was beside thermo machine when they were loading thermo into machince and the hot thermo came out of the top of the thermo plastic machine and splashed on top of head, neck, right ear and right cheek. He was sent to medac ()
## 8525                                                                                                                                                                                                             Employee was blowing debris when nose starting bleeding
## 8526                                                                                                                                                      Employee was blowing dust out of a computer with a can of compressed air when and debris flew in right eye. ()
## 8527                                                                                                                                                           Employee was blowing leaves at the student health building when debris flew in eyes, causing drainage. ()
## 8528                                                                                                                                                                                         Employee was blowing mulch when an unknown object entered his right eye. ()
## 8529                                                                                                                                                 Employee was blowing when the wind changed and blew debris in his face. An unknown object flew in his right eye. ()
## 8530                                                                                          Employee was breaking up a fight between two students. During this time a student jumped in staff member and proceeded to punch staff member in the head several times. ()
## 8531                                                                                                                                                 Employee was bushing bridges and was stung by a wasp behind right ear. List injury as: right ear, neck, and face ()
## 8532                                                         Employee was called back in after normal work hous to help with storm damage. As he was helping get trees out of roadway he got into some poison oak. List injuries as: both arms, stomach, and left ear ()
## 8533                               Employee was called out after hours for a damaged bridge repair. Second employee was driving a nail when it deflected and hit employee under left eye and traveled upward across eye. List injuries as: left eye and lower eye lid ()
## 8534    Employee was carrying erosion control matting from trailer to the area the crew was working in on his left shoulder when he felt something on his left cheek. That evening his cheek swelled up and he requested medical treatment. List injury as: left cheek (
## 8535                                                                                                   Employee was carrying items to dumpster. One item was carried over shoulder and by a strap. Item slipped and swung around and hit employee in the back of head ()
## 8536                                                                                       Employee was carrying tools in his hands and had 2 shovels in one hand and tripped and one of the shovels kicked back and up into his mouth chipping his left front tooth. ()
## 8537             Employee was casting magnesium alloy into a plaster mold using vacuum centrifugal casting machine. While spinning casting arm while watching through observation window, an explosion happened from inside the machine. The blasted open hitting me. ()
## 8538                                                                           Employee was changing a heavy duty truck tire on the tire changer when, the long pry bar slipped and struck the employee above his forehead. List injuries as: head contusion to forehead
## 8539                                                     Employee was changing a highway sign when a red wasp came out of the sign post and stung employee on his nose. Employee later passed out from reaction to sting. List injury as: nose sting & later anaphylaxis
## 8540                                                                                                                                                  Employee was changing a tire on tractor using a tire tool. The tire tool slipped and hit him over his left eye. ()
## 8541                                                                                                                                                                               Employee was changing an individual in bed the individual hit employee in the eye. ()
## 8542                                                                                                                              Employee was changing mops& went to leave when bottle of tilex fell. Employee went to pick it up & it discharged in employees face. ()
## 8543                                                                                                                                                    Employee was chasing a loose chicken. He chased the chicken under a truck and bumped his head in the process. ()
## 8544                                                                                                                     Employee was checking blood sugar of client when the client went into behavior, swung his hand and blood came off his finger into her right eye
## 8545                                                                                                                                                                      Employee was cleaning a restroom. She rubbed her right cheek causing an unspecified injury. ()
## 8546                                                                                                                                                                                Employee was cleaning and hit head on the corner of metal cover hanging on the wall.
## 8547                                                                                                                                                             Employee was cleaning apartment 3 dayroom when the treadmill fell over and hit employee in the head. ()
## 8548                                                                                                                                            Employee was cleaning bathroom and lost her footing due to damp floor and hit her head on the bathroom counter. Head/eye
## 8549                                                                                                                                                                                           Employee was cleaning battery cables when his left eye started burning ()
## 8550                                                                                                                          Employee was cleaning bookcase in her office and a picture fell and hit her in the head. The glass broke and a piece cut her left foot. ()
## 8551                                                                                                       Employee was cleaning chalkboard in rm 303, lyon science bldg when the projector screen fell and hit him on the right side of his head, neck and shoulder. ()
## 8552                                                                                                                      Employee was cleaning chalkboard with cleaner for dry erase surfaces near air conditioner which caused the mist from cleaner to blow into eyes
## 8553                                                                                                                                                                                                   Employee was cleaning debris when a wood chip hit him in his eye.
## 8554                                                                                                                                                                  Employee was cleaning in proctoer hall she bend down and bumped her head on the edge of a desk. ()
## 8555                                                                                                                                                     Employee was cleaning nurse supervisor's office and the ceiling vent fell down and hit employee on the head. ()
## 8556                                                      Employee was cleaning off shoves & lute that had asphalt on them using tuff stuff(asphalt remover degreaser) while spraying traffic came by blowing the spray into his right eye. List injury as: right eye ()
## 8557                                                                                                                                             Employee was cleaning out cooling towers, tripped on a hose on ground, hit head on concrete pillow that holds up towers
## 8558                                                                                                                                                                 Employee was cleaning out the grease traps and bumped his right eye on the ansul system sprayers ()
## 8559                                                                                                                  Employee was cleaning out water from the refrigerator and felt something dripping down and it was then she realized that her nose was bleeding. ()
## 8560                                                                                                                                                                                                  Employee was cleaning shower and cleaner splashed in both eyes. ()
## 8561                                                                                                                                                                           Employee was cleaning table in break room with product named tbq. Tbq splashed in her eye
## 8562                                                                                                                                                                       Employee was cleaning the patcher when the air hose came off and hit her in the right eye. ()
## 8563                                                                                                                                                                      Employee was cleaning weapons, experienced swelling in the tongue, mourth, throat and lips. ()
## 8564                                                                                                                                                     Employee was clearing boundary lines. A tree limb swung and struck his right eye causing a corneal abrasion. ()
## 8565                                                                                                                                                                                         Employee was clearing brush when he was stung on the lip by a yellow jacket
## 8566                                                                                                        Employee was clearing bushes away from signs and got into some posion vines. The next morning his right cheek and right eye was swelled and he had a rash ()
## 8567                                                                                                                                                                Employee was clearing debri from the yard in front of the canteen. Something stung her right eye. ()
## 8568                                                                                          Employee was clearing some small trees, brush, and vines from around a rain gauge using a machete. Debris from the clearing activity got into the eyes of the employee. ()
## 8569                                                                                           Employee was climbing a ladder that leads into an attic in the dorm to check on a motor. The steel door leading the the attic closed and struck his head causing pain. ()
## 8570                                                                                 Employee was climbing front end loader steps and fell onto ground. He missed a step on the ladder. List injuries as: concusion, laceration to back of head, abrasion on right elbow
## 8571                                                                                                                                                                                             Employee was climbing into state van and bumped top of head on vehicle.
## 8572                                                               Employee was climbing out of truck bed when his foot slipped causing him to twist and fall off of the truck. He hit his head/nose as he fell. His wrist was injured while trying to catch himself. ()
## 8573                                                                                                                                                                                                         Employee was closing gate to hog pen and fell into the gate
## 8574                                                                                                                                                 Employee was closing the blinds when he struck his head against the lower section of the ceiling (drop ceiling). ()
## 8575                                                                                                        Employee was coming out of bathroom in pharmacy lobby area when she tripped over marble threshold and fell face first and hit head on large coffee table. ()
## 8576                                                                                                                          Employee was coming out of dayroom, individual was coming in and employee did not see him. His helmet struck employee in the right eye. ()
## 8577                                                                                                                                                                                                Employee was coming out of patient's room when patient attacked her.
## 8578                                                                                                                                                        Employee was coming out of the unit dining room when an indiviudal ran into her causing her to fall down. ()
## 8579                                                                                                                                                                                                             Employee was conducting a cell search. Inmate struck ()
## 8580                    Employee was conducting a forest survey and preparing to take a height of a tree. Employee was pacing away from the tree and went through a pile of forest debris. A dead limb broke and a piece flew up and struck employee in the left eye. ()
## 8581                                  Employee was conducting a timber stand evaluation on bladen lakes state forest. Employee had window down while driving and a limb came into the cab of the truck and struck the driver in the right eye and scratched forehead. ()
## 8582                                                                                                                                                                                                  Employee was conducting cell searches when confronted by inmate ()
## 8583                                                                                                      Employee was cutting a down tree, as he was cutting a limb under pressure struck him on left side of head. List injuries as: abrasions on left side of head ()
## 8584                                                                                                                                                                        Employee was cutting a metal pipe when a piece of metal shaving lodged into his left eye. ()
## 8585                                                                                                     Employee was cutting a tree that fell into the roadway. Employee had a reaction to poison oak that was on the tree. List injury as: rash on arms and eye lid ()
## 8586                                                                                      Employee was cutting a tree that had fallen into the roadway when, private vehicle failed to stop and struck employee from behind. List injuries as: fatality/head injuries ()
## 8587                                                                                     Employee was cutting brush on hwy 194 north with chainsaw on tues, 3/27/12; complained next morning of something in left eye when arriving at work. List injury as: left eye ()
## 8588                                                                                                                                                     Employee was cutting concrete with a saw. Dust from saw flew under his safety glasses and into his left eye. ()
## 8589                                                                                                                                         Employee was cutting debris with a chainsaw and a branch caused a kickback & hit the employee in thenose & gashed his nose.
## 8590                                                                                                                                   Employee was cutting grass w/lawn mower and flyingdebri got into employee's eye. Had on approved safety glasses. Bruising cornea.
## 8591                                                                                                                                           Employee was cutting hedge and was stung by a saddleback caterpillar four times on left head and one time on right elbow.
## 8592                                                                                                          Employee was cutting plow bolts with a torch, the slas popped and hit him in the right ear. Employee was wearing safety glasses, face shield and gloves ()
## 8593                                                                                                                                                                            Employee was cutting some bushes and some fragments from the bushes flew in his left eye
## 8594                                                       Employee was cutting tree from right of way; the tree was pushed over by another employee, tree was entangled in vines, and began to fall striking Mr. Allred on the head. Employee list injury as: cut scalp
## 8595                                                                                                                                                   Employee was cutting tree limb with chain saw when the limb struck him in the face knocking him to the ground. ()
## 8596                                               Employee was cutting tree limbs when one flew up and hit him in the face. Scratches to face and nose. Employee did minor first aid on wounds; did not go to doctor for treatment. Refusal of treatment was signed. ()
## 8597                                                                                                                                                Employee was delivering laundry and was in the back of the moving truck the truck hit a pothole and he fell out back
## 8598                                                                                                                Employee was descending stairs, when at the top of the 1st flight, when she felt a thread snag her heel, she fell, hitting her head on the handrail.
## 8599                                                                                           Employee was directing traffic for several hours as students were moving into gleason hariston resident hall. Employee developed 2nd degree sun burn to face and head. ()
## 8600                                                                                   Employee was diriving a loaded dump truck when he dropped off the shoulder of the road and overturned. Employee suffered head and knee contusions. List injury as: head & knee ()
## 8601                                                                                                                                                       Employee was disinfecting a dog room with virkon-swhen the nozzle broke and chemicals splashed into her eyes.
## 8602                                                                                                                                                                    Employee was dispensing acetone, dropped bottle and managed to splash over glasses. Left eye. ()
## 8603                                                                                                                                                                        Employee was doing a distillation when the top flask fell spraying the employee with hot lye
## 8604                                                                                                                                                                           Employee was doing a pest survey when a tree branch hit his face and scratched his eye ()
## 8605                                                                                                                                Employee was doing a training session with a barred owl and it flew into her face scratching her in the face/eye area with talons ()
## 8606                                                                                                                                            Employee was doing individual's laundry and was pouring bleach in washing machine and some bleach splashed in right eye.
## 8607                                                                                           Employee was doing laundry and was pulling crates off top shelf to place at the bottom and one crate came down unknowingly and hit employee on the bridge of her nose. ()
## 8608                                                                                                                        Employee was doing marijuana eradication in clay county when he was stung by bees and he had an allergic reaction. Taken to murphy hospital.
## 8609                                                                                                                    Employee was doing pushups outside when something bit her right eye(activities associated with fire arms training). List injury as: right eye ()
## 8610                                                                                                                                                 Employee was drilling pop rivet out of wall mould for suspended ceiling causing unspecified injury to right eye. ()
## 8611                                                                                                                                                       Employee was driving a lift through the parking deck when he raised his head and hit the parking structure ()
## 8612                                                                                                                                                                             Employee was driving a mule when debris fell into her right eye, causing irritation. ()
## 8613                                                                                                                                                                                    Employee was driving gator, and a piece of debris, string, flew into his eye. ()
## 8614                                                                                                                                               Employee was driving his vehicle when it was sideswiped causing his vehicle to run off the roadway and strike a tree.
## 8615                                                                               Employee was driving nails into 4x8 piece of lumber. After setting the nail, the nail flew back striking employee in the mouth. List injuries as: bottom lip and upper front tooth ()
## 8616                                   Employee was driving to asheville, nc to the sheraton on woodfin when a dump truck hit employee on driver's side and pushed EE and passender(another trainer) off the road. EE's rental vehicle rolled over at least one time. ()
## 8617                                                                                                                                                                                               Employee was driving truck down road and somethingflew into right eye
## 8618                                                  Employee was driving vehicle on forest dirt road. She indicated that the brake system malfunctioned causing her to lose control and crash into a tree. Employee was taken to county hospital to be checked out. ()
## 8619                                                                                                                                                  Employee was drying the top of an suv and his foot slipped off the tire and his jaw hit the top of the vehicle. ()
## 8620                                                                                                                                 Employee was dumping debris on of the bed of a dump truck when another employee accidentally threw debris in the employee's face ()
## 8621                                                                                                                                                     Employee was dusting pipes in stairway. She bent over and when she stood up she hit her head on lower pipes. ()
## 8622                                                                                                                                            Employee was dusting the webs of top of door and some dust got into her eye. Employee washed eye out still irritated. ()
## 8623                                                                                                                                                                               Employee was emptying livestock footbaths and a small portion got into his right eye.
## 8624                                                                                                                                                                                                         Employee was emptying oil when some splattered in his eyes.
## 8625                           Employee was entering cuffed inmate's cell to place waist chain on inmate when inmate struck the other officer's nose and charged at c/o boyd, tackling him and getting on top of him and beating his head against the floor and wall. ()
## 8626                                                                   Employee was entering the academic building located at the correctional center when he stumbled over the floor mat at the door leading into the building and landed face first on the sidewalk ()
## 8627                                                                                                                                                                        Employee was entering the car of a co-worker. The corner of the door hit her in the head. ()
## 8628                                                                                                                                                    Employee was eradicating marijuana from the side of a hill, and was strucked in the left eye by a thick bush. ()
## 8629                                                                                                                                                   Employee was escorting inmate involved in a fight on albemarle b block from unit when inmate spit in his face. ()
## 8630                                                                                                                                                                                               Employee was exiting building and tripped over the rug at the door ()
## 8631                              Employee was exiting elevator on the 4th floor, took approximately two steps and slipped on very wet floor. Yellow wet caution signs where off to the left of the elevator 8-10 ft. Employee states multiple injuries & body parts. ()
## 8632                                                                                Employee was exiting men's room and slipped. Employee fell after stepping on carpet pad. There was standing water under the pad. Employee sustained injury to his r hip and head. ()
## 8633                                                                                                                                                                                Employee was exiting the bldg for fire alarm and tripped on uneven concrete outside.
## 8634                                                                              Employee was exposed to floor stripping agent being applied by cleaning contractor. Employee was sitting outside the immediate area but wind blew the chemical spray into his eyes. ()
## 8635                                                                                                                                                                      Employee was exposed to high db machine nosies and has developed hearing loss in right ear. ()
## 8636                                                                                       Employee was exposed to paint fumes in his office area that had just been freshly painted over the holidays. Employee has allergy problems and was overtaken by the fumes. ()
## 8637                                                                                                                             Employee was exposed to radiation and intense light while assisting with welding operation causing corneal flash burns in both eyes. ()
## 8638                                                                                                                                   Employee was exting the institution and pulled the door open and the door struck him in the mouth cracking a tooth on his bridge.
## 8639                                                                                                                                                                     Employee was fastening individuals belt and individual head butted employee in the forehead. ()
## 8640                                       Employee was feeding tree limbs & debris into a brush chipper. The chipper whipped the tree limb that was being fed into it causing the tree limb to hit employee; caused a laceration to his lip. List injuries as: mouth ()
## 8641                                                                                                                                                             Employee was feeding when the inmate through a cup of feces out of the door into the employees face. ()
## 8642       Employee was filing materials from test in boxes as required by science department, the boxes she was filling were near her chair and she stood up to leave her office, her left foot caught on a box and she fell. Her head made full contact with the door.
## 8643                                                                                                                       Employee was filling a lawn mower with gasoline. He went to check fill level of tank and gasoline sprayed onto his face and into his eyes. ()
## 8644                                                                                                                                                   Employee was filling gas tank on the van, when thetank became filled it blew gas back on employees face and eyes.
## 8645                                                                                                                                          Employee was fitting a helmet on an individual when the indiviudal spit in his face and hit employee in the mouth area. ()
## 8646                                                                                                                                      Employee was flagging traffic on sweetwater road. As he let traffic pass by, dust from the job site got into his right eye. ()
## 8647                                                                                                                                                                                                  Employee was flagging traffic when something flew into his eye. ()
## 8648                                                                                                                                 Employee was folding a ladder when a pair of side cutters fell from the top & hit him on the lip, causing a laceration & contusion.
## 8649                                                                                                                                                                     Employee was getting a box of soil samples at the loading dock when something flew into his eye
## 8650                                                                                                  Employee was getting on the back of the paint truck to pain the edgeline. He stepped up on truck and hit his nose on teh arrowboard cutting a gash in his nose. ()
## 8651                                          Employee was getting tractor keys from barn he stepped on ramp leading to barn. It was raining. Ramp was slippery and he fell. He twisted as he fell hitting back of head, shoulders left elbow and lower back on ramp. ()
## 8652                                                                                                                                                  Employee was getting up from a desk chair, lost her balance and fell hitting her head on the corner of the desk ()
## 8653                                                                                                                 Employee was getting up post mounted signs in brunswick co. Sometime during the day something got into the employee's left eye causing problems. ()
## 8654                                                              Employee was getting up spill in rm 131 on the first floor of mcnair hall. Employee bent down to look and see the spill, took step forward, and lifted her head and hit the file cabinet above her. ()
## 8655                                                                                                                                                                    Employee was giving a urine specimen cup to a patient when patient hit employee in the temple ()
## 8656                                                                                                                                        Employee was giving directions to another building to a subject when he sneezed in her face and got spit in her left eye. ()
## 8657                                                                                                                                                                                      Employee was going to the bathroom, stumbled, falling forward on broken cement
## 8658                                                                                                                                                   Employee was going to turn off lights in halton theater and tripped on prop box as she was going to light switch.
## 8659                                                                                                                Employee was grinding a piece of metal to fix milling machines, when a piece of metal went under safety glasses and stuck in cornea of right eye. ()
## 8660                                                                                                               Employee was grinding a piece of metal when a small piece of steel broke off and went into his right eye. The employee was wearing safety glasses. ()
## 8661                                                                                                                                                            Employee was grinding a shell plate, when a spark flew into his right eye, causing a burn and strain. ()
## 8662                                                                                                                                                                            Employee was grinding h-pile at wingwall when a piece of metal flew in his right eye. ()
## 8663                                                                                                                                                                                                         Employee was grinding soil when something flew into his eye
## 8664                                                                                                                                                             Employee was grinding using a bench grinder when a spark went under safety glasses and into his eye. ()
## 8665                                                                                                                                                      Employee was hanging a piece of browser over an 8 ft. Fence when a piece of organic matter fell in her eye. ()
## 8666                                                                                                                                Employee was hanging drywall and as he was sanding it, a piece of drywall debris entered his eyes causing irritation and redness. ()
## 8667                                                                                                                               Employee was hanging shade cloth when the ladder moved and a hammer that was on top of the ladder fell and struck her in her head. ()
## 8668                                                                                                                                                                                                              Employee was head-butted while intervening with client
## 8669                                                                     Employee was helping clean up in the lobby of the museum when she tripped on a tablecloth. She fell and hit her head on the floor, which resulted in a laceration beneath her right eyebrow. ()
## 8670                                                                                                                                            Employee was helping co-worker repair primer bulb on weed eater when, gas squirted into his left eye causing burning. ()
## 8671                                                                                     Employee was helping crew install a driveway when the backhoe made an abrupt movement downwards stricking employee on the top of his head. List injury as: contusion to head ()
## 8672                                                                                                                                     Employee was helping doctor do external exam. She removed a tube underneath the body which sprayed blood into her right eye. ()
## 8673                                                                                                                                                                    Employee was helping individual with toileting and individual scratched employee on the face. ()
## 8674                                                                                                                                                                                    Employee was helping nurse and the resident hit her in the face with his fist ()
## 8675                                                                                                                                                                                                Employee was helping set up a tent he walked into a support beam. ()
## 8676                                 Employee was helping to load a desk into a work truck, cardboard being used to move the desk slipped out from under employee and he slipped hitting his left side of face near eye on the truck and his thumb caught under desk. ()
## 8677                                                                                                                                                        Employee was helping with an equine colic and walked into a protruding wall box and hit his head (scalp). ()
## 8678                                                                                                                                                                                         Employee was hit by a cage lid in the mouth and sustained a loose tooth. ()
## 8679                                                                                                                                                                                                                                         Employee was hit by patient
## 8680                                                                                                                                                                                                                             Employee was hit in face by patient. ()
## 8681                                                                                                                                                                                                                           Employee was hit in right eye by juvenile
## 8682                                                                                                                                                                                          Employee was hit in the eye and scratched on the left ear by a patient. ()
## 8683                                                                                                   Employee was hit in the head by a 2 lb dumbell that had been used to prop open a door. When the employee pulled the door closed, the dumbell fell on his head. ()
## 8684                                                                                                                                                   Employee was holding a foal during an emergency. The horse reared and struck employee's head on way back down. ()
## 8685                                                                                                                                    Employee was holding ferret when ferret lunged at her and bit her right upper lip and scraped her lower right lip with teeth. ()
## 8686                         Employee was holding up woven wire fence while repairing fence that had fallen by a tree landing on it and one of the inmates that were helping out accidentally let go and a piece of the woven fence fell and hit employee in the eye. ()
## 8687                                                                                                                        Employee was hooking up milk line to milk tank, hand slipped off the wrench and she fell onto a ladder and busted her nose and upper lip. ()
## 8688                                                                                                                                                        Employee was in golf cart performing exterior park patrol when unknown foreign object flew into left eye. ()
## 8689                                                                                                                            Employee was in kitchen at wake county commons preparing for lunch. Floor was wet, she slipped, and hit her head on the refrigerator. ()
## 8690                                                                                                                                                         Employee was in lower yard waiting to escort work release inmate when heavy wind blew debris into right eye
## 8691                                                                                                                                                                                                           Employee was in parking garage and tripped over cement ()
## 8692                                  Employee was in the medical control area supervising inmates and felt something on her face, a spider was crawling on her face, she killed the spider and 10 minutes later her right eye began to swell and her vision blurred. ()
## 8693                                                                                                                                          Employee was in the nursing office and patient threw a table at window and glass shattered cutting employee in the nose ()
## 8694  Employee was in the process of cleaning out the wand from a tack operation when, the wand got caught on his protective white suite causing the lever to switch to open poistion & spraying hot tack in his face. Tack on head, face, & neck; also got into eyes ()
## 8695                                                                                           Employee was in training and on the firing range qualifying with firearm. An object/substance entered his right eye causing constant burning and pain caused swelling. ()
## 8696                                                                                                                                                              Employee was inflating a balloon using "hi=flo" liquid; the ballon burst hitting her in her right eye.
## 8697                                                                                           Employee was inflating the rear drivers side tire on a state vehicle, when the air hose broke a piece of the hose struck employee in the mouth cracking a front tooth. ()
## 8698                                                                                                         Employee was inflating tire on a tar kettle and tire exploded causing debris to stirke employee in the face. List injury as: cut on face under right eye ()
## 8699                                                                                                                                                             Employee was injecting a rat and the needle slipped off the syringe and sprayed nembutal in her eye. ()
## 8700                                                                                                                                                      Employee was injured during restraint of juvenile. Mr. Williams was gouged in the left eye by the juvenile. ()
## 8701                                                                                                                                        Employee was inspecting a building with 120 cats housed in it when her right eye got infected from unsanitary conditions. ()
## 8702                                                                                                                                                                 Employee was inspecting a void in the vessel. Uhp machine was constantly working creating noise. ()
## 8703                                                                                                                                                                                                                                Employee was inspecting air handler.
## 8704                                                                      Employee was inspecting boom and his feet became tangled in rope or straps, he then fell off truck onto asphalt head first. List injuries as: facial abrasions, contusions, and neck strain ()
## 8705            Employee was installing brake shoes on a truck. While stretching the spring that holds the shoes in place, with a pair of needle nose pliers, the pliers slipped off of the spring causing kick back of his hand and pliers hit him in his right eye. ()
## 8706                                                                Employee was installing duck boxes using pole pounder to set post. He lifted pounder above post and it caught on the lip of the post. The pounder tilted and hit employee on the top of his head. ()
## 8707                                                                                                                                                   Employee was installing the snow plow frames to the trucks when, the wind blew some debris into his right eye. ()
## 8708                                                                                                   Employee was interacting with a patient, employee redirected patient & patient became aggressive towards employee, hitting employee on the left side of the face.
## 8709                              Employee was interacting with resident, and he handed her his ball cap. She playfully put it on her head and he accidentally scratched her on the middle section between nose and upper lip. Possible bloodborne pathogen exposure. ()
## 8710                                                                                                                      Employee was interviewing an inmate. The inmate struck him with a closed fist causing bleeding to his nose and a laceration to his top lip. ()
## 8711                                                                                                                                                                                           Employee was involved in a car accident in a state vehicle 3 weeks ago ()
## 8712                                                                                                                                              Employee was involved in a cell extraction, he slipped due to pepper spray on floor and fell intowall and hit his head
## 8713                                                                                                        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. ()
## 8714                                                                                                     Employee was involved in a personal restraint with an individual, the individual headbutted emp00loyee in the mouth knocking out employee's two front teeth. ()
## 8715                                                                                                                                                                      Employee was labeling crab pots using zip ties. Accidentally poked herself in the left eye. ()
## 8716                                                                                                                                                                                Employee was leaning into a planter and a small twig on a plant scratched rt. Eye ()
## 8717                                                                                                                                                                              Employee was leaning on a safety chain when it brok and employee fell off od the dock.
## 8718                                                                                                                                                                Employee was leaving -walking outside of cubicle-tripped on shoe and fell-hit head on corner wall ()
## 8719                                                                                                                                                Employee was leaving a restroom after police cleaning and was hit in the head by the door as someone was walking in.
## 8720                                                                                                                                         Employee was leaving dayroom looking back and bumped her forehead in the middle on the glass window leaving the dayroom. ()
## 8721                                                Employee was letting pressure off the hyudraulic fitting on truck #20 to put fittings on for the spreader when, the employee bumped the fitting, the pressure blew fluid into his eyes. List injury as: right eye ()
## 8722                                              Employee was leveling ston for pipe bed with a shovel in a sweeping motion. His hand slipped off shovel handle and striking himself in the mouth with his hand knocking cap off tooth. List injury as: capped tooth ()
## 8723                                                                                                                                                      Employee was lifting a chair onto the back of the pickup truck and ran into a bar causing pain to her head. ()
## 8724                                                                                                                    Employee was line-trimming within a shrub bed when, a thorn from a low limb poked him in the head. List injury as: puncture to r side of head ()
## 8725                                                          Employee was listening to me inform him about pdc. I looked up at him and his eyes had rolled back and his tongue was out. I laid him down and yelled for someone to call 911. Employee was unconscious ()
## 8726              Employee was loading a block of rubber asphalt sealant into a cracksealing machine to be heated. The hot sealant in the machine splashed out onto the employee when the block was dropped into the machine. List injury as: burns to nose and mouth ()
## 8727                                                                                                          Employee was loading an indiviudal on the van and when she strapping the wheelchair on the van, employee hit her forehead on the arm of the wheelchair. ()
## 8728                                                                                                                                                                                                           Employee was loading and unloading material on work truck
## 8729                                                                                                  Employee was loading box onto handtrucks from auto. The force of the box made the handtrucks bounce back and the handle of handtrucks hit employee in eye area. ()
## 8730                                                                                                                 Employee was loading linen into dryer and some linen fell on floor, when he picked up the linen, he hit his head on the dryer, when he stood up. ()
## 8731                                                                                                                                                                        Employee was loading trailer with empty pallets and trash (dust, sand dirt) blew in his eye.
## 8732                                                                                                                      Employee was looking for lsot hitch pin, raised up next to fence and cut head on barbed wire, cut was above the hairline on left front of head
## 8733                                                                                     Employee was looking for the hook in the lazy susan, turned the lazy susan around and end of fish tape, which was on top of the lazy susan, struck employee in the left eye. ()
## 8734                                                                                                                                                                                               Employee was looking for water leak. Ran into ac duct jolted neck. ()
## 8735                                                                                                                                                                    Employee was loosening filter when the seal blew out diesel fuel into his eyes causing burns. ()
## 8736                               Employee was lubricating the bed of his dump truck in preparation for hauling asphalt. The hose separated from the spray nozzle causing asphalt lubricant to be release; sprayed lubricant into the face and left eye of employee. ()
## 8737                                                                                                     Employee was lying on a creeper cutting bolts from snow plow blade when, slag from the bolt being cut splattered in his left ear. List injuries as: left ear ()
## 8738                                                                                           Employee was lying on a creepr cutting bolts form a snow plow blade when cutting slag from one of the bolts splattered inot his left ear. Listed injuries as: left ear ()
## 8739                                                                                                                         Employee was making an arrest. During the physical altercation, he was exposed to suspect's blood and sustained a contusion to the head. ()
## 8740                                                                                                  Employee was making dorm rounds and stepped inside a cell to determine a problem with a sink and the inmate struck him several times in the face with his fist. ()
## 8741                                                                                                                                                                                  Employee was making left hand turn and was hit in left front corner of his vehicle
## 8742                                                                                                                     Employee was making mashed potatoes, while stirring mashed potatoes & potatoes popped out of pot splashing EE on the right side of the face. ()
## 8743                             Employee was making repairs to overhead switch with an outside contractor. Employee was observing & supervising the contractor. Employee was struck by actuator arm that fell from the ceiling causing a laceration to his forehead. ()
## 8744                                                                                                                               Employee was making repairs to the shop grinder. A piece of metal flew into his unspecified eye when another student was grinding. ()
## 8745                                                                                                                                                                            Employee was making rounds in segregation when an inmate threw a cup of urine on him. ()
## 8746                                                                                                                 Employee was making rounds, completing a perimeter check. While walking around outside completeing the check the wind blew something in his eye. ()
## 8747                                                                                                                                                                            Employee was manually digging holes in the ground with hole diggers & felt weak and sick
## 8748                                                                       Employee was mixing cement in a bucket by stirring it with a stick when cement splashed in his eye (employee was wearing safety glasses at the time of incident). List injury as: left eye ()
## 8749                                                                                                                                         Employee was mixing clorox with another solution when some of it splashed into her lt eye. Employee was referred to wmh. ()
## 8750                                                                                                                                                                                        Employee was mixing some bleach/water and some splashed in her right eye. ()
## 8751                                                                                                                                                                                   Employee was monitoring patient in bathroom, patient hit employee in the head. ()
## 8752                                                                                                                                                           Employee was monitoring patients and hallway when a patient started swinging & punched EE in the face. ()
## 8753                                                                                                                                                          Employee was moving a metal shelving unit. The unit collapsed and knocked her to the floor on her head. ()
## 8754                                                                                           Employee was moving a tractor tire which was full of antifreeze so he could replace the tire. His vision became blurred in right eye. List injury as: right eye strain ()
## 8755                                                                               Employee was moving a trash can signifying an offensive tackle. His back was turned when a linebacker knocked a wide receiver into him. He sustained a concussion to his left eye. ()
## 8756                                                                                                                                                                            Employee was moving boxes, when he hit his head onthe low clearance under the stairwell.
## 8757                                                                                                                                                                                              Employee was moving chickens and one caused debristo fly into his eye.
## 8758                                                                                                                                             Employee was moving copy paper from basement to 2nd floor. EE states that the elevator door hit him on the side of head
## 8759                                                                                                                              Employee was moving props which were used for prom when one of the props struck him in his left eye. Scratch to corner of left eye. ()
## 8760                                                                                                                                                                                                            Employee was moving steel & picking up sticks and trash.
## 8761                                                                            Employee was mowing along the shoulder of road when, an object struck the front windshild and right flasher. The windshild shattered causing glass or debris to get in his right eye. ()
## 8762                                                                                                                                                                                                                   Employee was mowing grass and was stung by a bee.
## 8763                                                                                                                                         Employee was mowing grass on a riding mower when he got too close to a hive of honey bees and sustained multiple stings. ()
## 8764                                                                                                                                              Employee was mowing grass when debris flew into his right eye causing irritation. Dx: corneal abrasion. Light duty. ()
## 8765                                                                                                                              Employee was mowing with riding john deere mower when she was stung (was wearing safety glasses) on left cheek just under left eye. ()
## 8766                                                                                                                     Employee was observing an electrician. As she walked around the building she hit her head on an air conditioner and has developed headaches. ()
## 8767                                          Employee was observing cell culture when she signed for a package from ups she experienced syncope and hit her chin on the floor and was taken to er in an ambulance. Employee received 13 stitches, no other injuries. ()
## 8768                                                                         Employee was on a collection trip for the zoo and was collecting fish and could not use insect repellent and got a tick off his head which later developed into rocky mtn. Spotted fever ()
## 8769                                                                                                                       Employee was on a fx2 tractor and pushed up a bee nest. The bees stung him 3x. He used his ep-pen hecarries and was taken to bertie hospital.
## 8770                                                                                                                                                       Employee was on a ladder leaned up against kiosk in parking lot taking off shingles - concussion back of head
## 8771                                                                                                                              Employee was on a wildfire participating in a suppression burnout when a tree limb went up under eye glasses and impacted left eye. ()
## 8772                                                                                                                Employee was on back of flatbed for mulching operation when, he fell striking his head/neck on shute of mulch blower. List injuries as: head/neck ()
## 8773                                                                                                Employee was on field trip with horticulture students. Walking through triad farmers market looking at plants. Slipped on ice, fell and hit back of head and arm. ()
## 8774                                                                                                                                                                   Employee was on her way to a meeting and fell in the parking lot on the pavement and hit her head
## 8775                                                                                                                Employee was on his back sitting up to execute a technique when the student dropped his head at thesame time. Student's head impacted EE's cheekbone
## 8776                                                      Employee was on job site shoveling rock out of the back of crew cab when, a very small rock flew up between his face & safety glasses going into his right eye. List injury as: corneal abrasion -right eye ()
## 8777                                                               Employee was on loading dock while carts were being unloaded from the truck. Plastic flaps on dock were swinging due to carts being unloaded and employee turned and a flap struck her in the eye. ()
## 8778              Employee was on one side of wall and inmate was on another side while mounting a core drill stand. Without knowing that the employee was on the opposite side of the wall, the inmate blew dust out of the drill hole into the employee's left eye. ()
## 8779                                                                                                                                                                     Employee was on playground getting toys out of shed when she hit her head on the door frame. ()
## 8780                                                                Employee was on the litter road crew on hwy 24 in clinton, nc. EE was picking up signs and placing them besid the hwy to notify vehicles of inmates working. EE began experiencing blurred vision ()
## 8781                                                                                                                   Employee was on the roller when he was hit by debris in both eyes by a passing state truck. Left eye is still irritated. List injury: left eye ()
## 8782            Employee was on yard working on job site insstalling erosion improvements for yard. He was driving a t post with a hand held diver when, it hit the side of the driver causing it to come back and hit him in the face. List injuries as: front tooth ()
## 8783                                                                                                                                                    Employee was opening a patients locker when the patient hit employee in the back of the head behind left ear. ()
## 8784                                                                                                                                     Employee was opening bedroom door of pt who was requesting to come out the pt hit employee with closed fist above the right eye
## 8785                                                                                                                                                                                    Employee was operating a backhoe and was struck by a tree limb in his right eye.
## 8786                                                                        Employee was operating a backhoe, shaking the dirt of the front of the bucket when the glass shattered and fell back on the employee causing multiple abrasions to the head and left arm. ()
## 8787                                                   Employee was operating a long arm mower. He had the right side glass a jar and a piece of debris from the mowing opeation came through the opening and struck employee in right eye. List injury as: right eye ()
## 8788                                                                                                     Employee was operating a post driving implement attached to a tractor. The implement had a safety guard that malfunctioned and hit the employee on the head. ()
## 8789                                                                                                                                    Employee was operating a tractor with a grass cutter on it when some debris got behind his safety glasses into his right eye. ()
## 8790                                                                                                                                                     Employee was operating bobcat with mowing attachment when a particle entered the right eye causing abrasion. ()
## 8791                                                                                                               Employee was organizing files-attempted to remove a hanging file folder-struck it & when loosened itstruck EE's eyelid and stuck to lid-stratching it
## 8792                                                                                                                                              Employee was out with search team looking a awol individual, and was hit in the eye with a branch from a pine tree. ()
## 8793       Employee was outside, sowing grass seed and mulching with straw on 5/23/13. Employee noticed tick had attached to his head later that day. Symptoms of sweeling, pain and inflammation was noticed on 5/27/13 and employee notified supervisor on 5/30/13. ()
## 8794                                                                                                                                                                                 Employee was packing boxes and a box scraped her eye. Left eye corneal abrasion. ()
## 8795                                                                                                                                                                     Employee was painting top of door frame, standing on a box; lost balance and fell, hitting head
## 8796                                                                                  Employee was participating in a concrete shoot when he rubbed his itching eye with his jacket sleeve. He apparently got concrete dust from his sleeve in the cornea of rt. Eye. ()
## 8797                                                                                Employee was participating in defensive tactics training when he was struck in the head and felt dazed. Employee had trouble seeing and was determined to have a mild concussion. ()
## 8798                                                                                    Employee was participating in nci recertification class and placing instructor in a therapeutic hold and her arm came out of wrap and her elbow hit employee in the left eye. ()
## 8799                                                                                                                      Employee was participating in training exercises when he was hit in the mouth. After arriving homehe realized one of his teeth had been broken
## 8800                                                                                                                                                                         Employee was pepper sprayed during training & had difficulty opening his eyes afterwards ()
## 8801                                                                                                                             Employee was perfoming scheduled maintenance on well hous fan. Upon activating fan, small sliver of metal was impaled into left eye. ()
## 8802                                                                                                    Employee was performing a necropsy on a cat. During the procedure, body fluid from the cat splashed into the employee's mouth. The cat was found to be rabid. ()
## 8803                                                                                                               Employee was performing preventative maintenance on salt spreader, dropped hand tool, bent down to pick it up and hit head on corner of snow plow. ()
## 8804              Employee was performing some housekeeping in lab area, air hose was under some plastic and when the employee pulled on the hose the hose with nozzle came loose from under the plastic hitting the employee above left eye. There was no air pressure.
## 8805                                       Employee was picking up a deer off the shoulder of road when his feet got tangled in the tall grass causing him to loss his balance. Employee fell down a embankment striking a tree; cause cuts to his lip and face area. ()
## 8806                                                                                                                                                                                       Employee was picking up branches off tram road and something flew into eye ()
## 8807                                                                                                                                                                                   Employee was picking up charts inmates were spraying outside of the unit left eye
## 8808                                                                                                                                                            Employee was picking up kitchen supplies from central warehouse when wind blew something into his eye ()
## 8809                                                                                                                                                 Employee was picking up limbs and clippings. As he bent down to pick up one pile, the end of a twig hit his eye. ()
## 8810                                                                                                                                           Employee was picking up limbs when inmate tossed a limb into the truck striking employee on the left side of her head. ()
## 8811                                                                                                                                              Employee was picking up paper towel when driver applied brakes and he hit his head on the right sideof the windshield.
## 8812                                                                                                                                    Employee was picking up squeeze bottle, top came off of bottle dropped and chemicals ( 4l) splashed in employee face and eye. ()
## 8813                                                                                                                                                                                                Employee was picking up sticks and wind blew trash into his left eye
## 8814                                                                                                             Employee was picking up the facilities mail at the post office. Employee slipped or lost footing when getting into the truck and fell to the ground. ()
## 8815                                                                                                                                                                                Employee was picking up trays when inmate threw what appeared to be urine on him. ()
## 8816                                                                                                         Employee was picking up trays, he bent down, wicket door was open and when he began to stand back up, inmate threw unknown liquid substance in his face. ()
## 8817                                                                                                                                                       Employee was picking up tree limbs on the farm path when he bent over and was hit in the eye with a branch ()
## 8818                                                                                                                                                    Employee was placing an individual in a personal restraint and the individual headbutted employee in the jaw. ()
## 8819                                                                                                                                            Employee was placing an individual in an emergency physical restraint, and employe hit his head hard against cabinet. ()
## 8820                                                               Employee was placing books of citations in a lower file cabinet drawer while seated in a chair. The chair she was sitting in slipped from underneath her causing her to hit her head on the floor. ()
## 8821                                                                                                                                                   Employee was placing cardboard in dumpster when the card board fell back at her, hitting her in the right eye. ()
## 8822                                                                                                                                     Employee was placing clothing bins out when she bent over and hit her face against the wall chipping tooth and busting lip open
## 8823                                                                                                                                   Employee was placing individual in a t-hold and slipped on wet floor and lost footing and employee was headbutted in the nose. ()
## 8824                                                                                                                             Employee was placing items in the refrigerator. As she lifted her head she struck it on the freezer door causing unspecified injury. ()
## 8825                                                                                                                                                   Employee was placing one gallon container of carpet cleaner on shelf when top came off and splashed in both eyes.
## 8826                                                                                                                                                                                                 Employee was placing patient in cpi hold, was kicked in the lip. ()
## 8827                                                                                                                                                                Employee was placing saline on a mouse cecum and it back splashed into employee eye. Eye burning. ()
## 8828                                                                                                                                 Employee was placing the seat belt on an individual in the van when the seat belt flew back and hit employee above her left eye. ()
## 8829                                                                                                                                                                                       Employee was pouring concrete when he experience stinging in his left eye. ()
## 8830     Employee was pouring crystal violet (chemical dye) from a large bottle into a small bottle. She noticed the it was a squeeze bottle but didn't realize the plug didn't have a hole. She squeezed, the plug popped out and it splashed into her face and eyes ()
## 8831                                                                                                                                                                               Employee was pouring molten metal and had back splash into the face and neck area. ()
## 8832                                                                                                                                                                                             Employee was pouring mop soap and some of it splashed into her left eye
## 8833                                                                                                                                                             Employee was pouring motor oil in a fork lift, the fork lift battery blew up in the employee's face. ()
## 8834                                                                         Employee was preparing to feed elephants. Used pliers to cut baling wire on hay bale. Tension on wire was released when wire was cut and one end sprund up and struck him in the rt. Eye ()
## 8835                                                                                                                                                                                    Employee was pressure washing a tractor when a piece of debris got in his eye ()
## 8836                                                                                               Employee was providing a fire behavior demonstration. While lighting the prop, the materials lit more rapidly than expected resulting in minor, superficial burns. ()
## 8837                                                                                                                                                                      Employee was pulling a cable out of the wall and cable sprung out and hit him in the left eye.
## 8838                                                                                                              Employee was pulling a file from archives on top of filing cabinet and a box of files fell from the top and hit the employee on the left side of head.
## 8839                                                                                                       Employee was pulling a tree limb down the bank on us hwy 421 with a winch when, the tree limb snapped around hitting him in the head. List injury as: head ()
## 8840            Employee was pumping acetone from drum into a lab bottle. When acetone level in bottle eclipsed noxzzle positio, acetone sprayed from bottle across employee's right eye. Employee was wearing eye protection with splashguard at the time of injury. ()
## 8841                                                                                                                                                                                                           Employee was punched behind the right ear by a patient ()
## 8842                                                                                                                                                                                        Employee was punched in his left eye by a patient during a manuel restraint.
## 8843                                                                                                                                                                                                             Employee was punched in the face on her right cheek. ()
## 8844                                                                                                                                                                                                           Employee was punched in the left eye by an individual. ()
## 8845                                                                                                                                                                                            Employee was pushing tables and one came off and hit him in the face. ()
## 8846                                                                                                                                                       Employee was putting beads on pavement when, wind blew beads into his right eye. List injury as: right eye ()
## 8847                                                                                                                                                        Employee was putting drawers back in refridgerator. Lifted her head up & hit head on freezer door handle. ()
## 8848                                                                                                                                                                                      Employee was putting equipment into shed and was stung on the nose by a hornet
## 8849                                                                                                                                             Employee was putting her bag in the refrigerator. She felt nauseous and coughing and fell and hit the snack machine. ()
## 8850                                                                                                                                                      Employee was putting materials away in a box; she raised her head up and hit it on the bottom of her shelf. ()
## 8851                                                                                                                            Employee was putting the food cart on the elevator when she pushed the cart on the elevator it came back on her hitting her left eye. ()
## 8852                                                                                                                                                             Employee was re-grooming a patient and the two bumped heads and employee glasses busted in his face. ()
## 8853                                                                                      Employee was re-stocking chips and a plywood board used to keep mice out of chip box slid off box and hit employee in the mouth which caused a left front incisor on tooth. ()
## 8854                                                                                                                                            Employee was reaching for a trash bag from the apron around trash can. Aerosol can fell out and sprayed her left eye. ()
## 8855                                                                                                                                           Employee was rear ended by another vehicle, hit ththe left side of her head & then felt sharp pains in her left shoulder.
## 8856                                                                                                                                    Employee was rearranging boxes and raised head and hit corner of wooden mailboxes mounted on the wall, cutting gash in scalp. ()
## 8857                                                                                                                     Employee was rekeying an alarm door; the door bumped the television wall mount, the television fell off the wall mount and hit him on his head.
## 8858                                                                                                                                                     Employee was removing a leg from a desk when the leg fell and hit him on the back of the head/neck. Neck injury
## 8859                                                                                                                                                       Employee was removing a nail from a wall. When he stood up he hit his head on the corner of a soap dispenser.
## 8860                                                                                                                                  Employee was removing a paper jam from the paper copier, and when pulling the caught piece of paper out, it impacted her left eye.
## 8861                                              Employee was removing books and other items from an overhead cabinet behind the desk in order to move them to new office. A plastic sheet cover fell out of cabinet and struck left eye in the far left corner of eye.
## 8862                                    Employee was removing breakfast ray from table, patient hit staff on left side of face and put arm around employee's neck. Other employees intervened, separating employee & patient. Patient kicked employee on the left thigh.
## 8863                                                                                                                              Employee was removing cables from a car. The cables struck him in the face causing blurred vision and inflamation to the right eye. ()
## 8864        Employee was removing ice from winsheild wiper blade by beating it against windshild during snow and ice operation. A piece of ice flew up into employees right eye and scratched it. Employee immediately flushed with eye wash. List injury as: right eye.
## 8865                                                                                                                                    Employee was removing items from the c-store van, when she hit her face on the door latch. This resulted with a cut on her nose.
## 8866                                                                             Employee was removing motor from fan above ceiling. Bolts were very tight and wrench slipped and wrench struck employee in mouth causing a laceration to lip and chipping his tooth. ()
## 8867                                                                                                             Employee was removing snow and ice from his work truck when he slipped on the ice and fell backwards onto his buttocks and hit the back of his head. ()
## 8868                                                                                                               Employee was removing steel nails from a brick wall. When exerting pressure to remove a nail, nail become a flying object and struck employee in eye.
## 8869                                                                                                     Employee was removing wire basket from a tree that was just planted. The bolt cutter handle fell over where he had positioned himself and hit him in the jaw ()
## 8870                                                                                               Employee was replacing a side engine door to a motor grader when, the doors lift came off and the door fell on his head. List injury as: laceration on top of head ()
## 8871                                                                                                                                       Employee was replacing blades on side mold board on motor grader. He stood up under a hydraulic cylinder hitting his head. ()
## 8872     Employee was replacing guardrail back after breaking beaver dam with backhoe. Employee was pulling up on guardrail wrench when, wrench slipped out of hole and hit him on the forehead between the eyes causing a gash. List injury as: forehead between eyes (
## 8873                                                                                                               Employee was replacing wood bulkhead boards. While driving seven inch spikes one flew back striking his left eye (employee had on safety glasses). ()
## 8874                                                                                     Employee was responding to team e support call. Was holding a patient's left leg down, patient's right leg got released & employee was kicked in the right side of her head. ()
## 8875                                                   Employee was restraining a student in the gym to prevent a physical altercation and fell with the student to the floor hitting her head against the block wall, injured her head, rt hand, left knee and low back
## 8876                                                                                                                               Employee was retrieving snacks from a snack machine where the glass had been broken and a small piece of glass entered her right eye.
## 8877       Employee was retrieving transit from pipe trailer and lost footing. Employee fell and hit lip & face on bottom of wheelbarrow. Employee went to sit down and passed out, falling onto the asphalt surface. Ambulance transported employee to the hospital. ()
## 8878                                                                                                                        Employee was returning items to the shelves after doing a balloon order, stumbled, lost her balance, fell and hit her head on display shelf.
## 8879                                                                                                                                                 Employee was returning to her cubby and an insect flew into her eye causing her eye to protrude from the socket. ()
## 8880                                                                                                                          Employee was riding in a boat traveling to a fish sampling site when a flying bat collided with her, striking her in the eyes and face. ()
## 8881     Employee was riding in the back seat of our cone truck. Truck was stopped at a traffic signal. Private vehicle failed to stop and hit cone truck in rear causing employees neck to jerk backwards & forwards stricking head on back glass. Injured: neck & head
## 8882                                                                                                                                                               Employee was riding lawn mower too close to a tree and a limb bent back and hit his face/eye area. ()
## 8883                                                                                                                                                                                          Employee was riding on golf cart and an object flew into his right eye. ()
## 8884                                                                                                                               Employee was rubbing eye, it was iritated, she removed contac lens, she said maybe a metal shaving from opening a can got in her eye.
## 8885                                                                                                                                                            Employee was running a chainsaw in the ball field and the sawdust irritated her eye. ()allergic reaction
## 8886                                                                                                                                                                           Employee was saddling horse; he rearred up & pummelled her in the head with front hooves.
## 8887                                                                                                                 Employee was sanding and grinding the lp tank tower in preparation to repaint, when the metal chipped off and flew into the right eye. Right eye ()
## 8888                                                                                                                                                                                                                                Employee was sawing a motor shaft ()
## 8889                                                                                                                                                       Employee was sawing plywood with a circular saw. Sawdust blew under employee glasses and into my left eye. ()
## 8890                                                                                                                                Employee was scraping lead paint with glasses on and something flew in his eye, left or right unknown causing unspecified injury. ()
## 8891                                                                                                                                                                                            Employee was scratched on the right side of her face by an indiviual. ()
## 8892                                                                                                                                                           Employee was scrubbing shower walls bent over and when she came up she hit her head on the shower faucet.
## 8893                                                                                                                   Employee was searching a vehicle when the front door was blow by the wind causing it to strike his right eye brow causing a 2 inch laceration. ()
## 8894                                                         Employee was searching inmates for contraband. Another officer had a rubberband on his index finger & thumb; rubber band flew off the other officer's finger & thumb & hit injured employee in left eye. ()
## 8895                                             Employee was searching inmates in the admin hallway. Employee describes as feeling extremely hot all day while searching inmates outside. He documented he felt light headed, passedout and hit his head on the wall ()
## 8896                                                                                                                                                                                         Employee was separating two patients fighting and was hit in the right eye.
## 8897                                     Employee was setting up some computer equipment for an autism training for the following week. As she moved some furniture to make connections, she leaned around a filing cabinet and hit her head on a metal window frame. ()
## 8898                                                                            Employee was setting up work zone. He was attempting to unhook arrow board trailer from pickup when, he struck his head on a piece of steel angle. List injury as: cut on top of head ()
## 8899                                                                                                                                                                          Employee was shooting a basketball in the game when dirt from the ball got into her eye ()
## 8900                                                                                                     Employee was shoveling asphalt mix, as he went down with the shovel a piece of asphalt mix flew up and hit him in the corner of his right eye and burnt him. ()
## 8901                                                                                                                              Employee was sitting 1:1 with a patient, when another patient came up & struck EE in the right side of the head with a closed fist. ()
## 8902                                                                                                                                                  Employee was sitting at a desk in health services to get the flu shot and the screen fell hitting her on the head.
## 8903                                                                                                                           Employee was sitting at his desk when he started to get up out of his chair and when doing so he slipped fell face firse to the floor. ()
## 8904                                                                                                                                                            Employee was sitting in a chair when the leg broke causing him to strike his head on the concrete floor.
## 8905                                                                                                                                                                      Employee was sitting in a chair. Felt dizzy and fainted hitting his head on concrete floor. ()
## 8906                                                                                                                                                       Employee was sitting in a traffic shed. The wind blew a foreign object in his left eye causing irritation. ()
## 8907                                                                                                                                                                 Employee was sitting in chair in dayroom, patient came by & punched EE on the left side of face. ()
## 8908                                                                                                                                                                                 Employee was sitting in the gazebo and a wood beam fell down on employee's head. ()
## 8909                                                                                                                                    Employee was sitting in the mower shed fixing a weed eater and a mower trailer fell and hit him on the left side of the head. ()
## 8910                                                                                                                                  Employee was sitting in traffic on her way to school counsel with a student and another car cam up and hit her car from behind. ()
## 8911                                                                                                              Employee was sitting on the couch in dayroom filling out paperwork when an individual came up behind her and punched her in the head with his fist. ()
## 8912                                                                                     Employee was slowly riding an atv in the pool creek area. As the employee was riding under a dead hemlock tree, a branch hit in the employee's face and scratched right eye. ()
## 8913                                                                                                                                                  Employee was spashed with liquid from an open wound while irrigating wound. Liquid splashed on face and into mouth
## 8914                                                                                                                                                   Employee was spraying down shower/tub with Mr2 Bathroom cleaner when it bounced back and got in her right eye. ()
## 8915                                                                                                                                     Employee was spraying down shower/tub with Mr2 Bathroom cleaner. Cleaner flew into her right eye causing unspecified injury. ()
## 8916                                                                                                                                                      Employee was spraying liquid nitrogen fertilizer when a hose broke causing the chemical to splash on his head.
## 8917                                                                            Employee was squatting down to look under a duct for water leaks. He didn't see splitter adjustment the rod beneath, it hit him in the left eye causing a tear to skin in eye socket. ()
## 8918                                                                                                                                                                           Employee was stacking brush when, he was struck on the top of the head by a tree limb. ()
## 8919                                                                                     Employee was standing and reached fro her mouse behind pc. When she straightedn up, she hit her head on the corner of cubicle shelf. She immediately asked witness for help. ()
## 8920                                                                                                                                                 Employee was standing and talking with a coworker. Felt faint and fell to the floor hitting head on a file cabinet.
## 8921                                       Employee was standing at a desk and was turning around to leave. His foot was tangled in two telephone cords causing the employee to fall on his back and hit his head on the concrete floor. List injury as: back of head ()
## 8922                                                                                        Employee was standing at her desk and tried to sit in her desk chair. The chair rolled away, and the employee fell backwards onto the floor hitting the back of her head. ()
## 8923                                                                                                                                                                Employee was standing at ice machine when the plastic cover fell and hit her on the head and face ()
## 8924                                                                                                                                                                               Employee was standing behind a client after treatment. Client headbutted employee. ()
## 8925                                                                                                                                               Employee was standing in line. Employee's supervisor accidentally struck her in the left eye, causing a contusion. ()
## 8926             Employee was standing infront of the door waiting for the shift leader to give her a key to the lottery machine. The shift leader went into his office, the door slammed behind him, a metal pole long fell over and hit linda in the back of her head.
## 8927                                                                   Employee was standing next to patient waiting to get oral meds, patient suddenly swung at employee & followed him through the dayroom. Patient struck employee in the back of the head & neck. ()
## 8928                                                                                                      Employee was standing on a chair, attempting to open an air conditioner vent with a letter opener. Debris flew in her left eye causing pain and irritation. ()
## 8929                                                                                                                                                                  Employee was standing on a table cleaning kitchen cabinets & she fell off the table & hit her head
## 8930                                                                                                  Employee was standing on top of equipment spraying chemial on front of tank while another employee was washing the back. Chemicals wento into his eyes & mouth. ()
## 8931                                                                                                                             Employee was standing outside an exhibit gallery. He looked up a particle fell from an overhead vent into his eye causing irritation ()
## 8932                                                                                                                                        Employee was standing outside of office residence building when employee reentered she began having an allergic reaction. ()
## 8933                                                                                                                                                 Employee was standing outside shop when a gust of wind blew dirt into his right eye. List injuries as: right eye ()
## 8934                                            Employee was standing up a traffic cone that had fallen over when a truck went by creating a breeze. The breeze blew dirt and sand in employees face into his left eye causing it to become red, swollen and painful. ()
## 8935                                                                                                                                          Employee was stepping back from unloading a truck when he struck an open rear window of a camper toplaceration to left ear
## 8936                                                                                                            Employee was stopped at a red light when struck from behind by a 18-wheeler sand truck. Driver of the sand truck received a citation from the police. ()
## 8937                                                                                                                                                       Employee was stopped at intersection of sharp road and lee street waiting to turn when vehicle was rear-ended
## 8938                                                                                                                               Employee was stopped at the bottom of exit ramp when he was rear-ended by another vehicle. Employee experienced equalibrium problems.
## 8939                                                                                                                                            Employee was stopped for left turn in truck and was struck by oncoming traffic. The mirror shattered and struck face. ()
## 8940                                                                                                                                                Employee was stroke by a strut that slipped from the strut press, striking employee on face, wrist and right shin ()
## 8941                                                             Employee was struck in the back of the head multiple times with handcuffs causing a closed head injury and also a contusion of the right hand & abrasions on both elbows caused by juvenile attacks. ()
## 8942                                                                                                                                                                                       Employee was struck in the face by surfactant which got into his left eye. ()
## 8943                                                                                                                                                                                                            Employee was struck in the forehead by an individual. ()
## 8944                                                                                                                                                                                                       Employee was struck in the head by a falling window blind. ()
## 8945                                                                                                                                                                                                                         Employee was struck on left ear by student.
## 8946                                                                                                                                                                                           Employee was struck on the back of his head by another employee's fist ()
## 8947                                                                                                                                                                                             Employee was stung by a bee on her face while repairing a water pump ()
## 8948                                                                                                                                                                                                                         Employee was stung by a bee on his rt. Ear.
## 8949                                                                                                                                                                                  Employee was stung by an unknown insect on the cheek while inspecting blackberries
## 8950                                                                                                                                                          Employee was surveying for tropical spiderwort when an insect flew out of the tall grass and into his ear.
## 8951                                                                                                                                                                                                            Employee was sweeping and bumped her head on a stand. ()
## 8952                                                                                                                                                                                       Employee was sweeping off lowboy when a partical entered in his right eye. ()
## 8953                                                                                     Employee was sweeping the floor, moved an area rug and continued to sweep and stepped backwards and tripped on the rug and struck her the back of her head on the blocked wall.
## 8954                                                                                                                                                                      Employee was sweeping the side of a building & hithis head on an iron bar that was in his way.
## 8955                                                                                              Employee was taking down a heavy box from the outgoing mailbox and the box slipped out of his hands and hit him on the right side of his face and broke his glasses ()
## 8956                                                                                                                                     Employee was taking down some scaffolding when the top piece fell striking him on the top of his head, causing deep laceration.
## 8957                                                                                                                                                                                                    Employee was taking notes and leaned backwards and hit his head.
## 8958                                                                                                                                                                              Employee was taking patient's vital signs when patient punched him in the forehead. ()
## 8959                                                                                                                                                                                  Employee was taking patient's vital signs. Patient struck employee in the face. ()
## 8960                                                                                                                                                                   Employee was talking to another staff. Patient hit staff in the face with a book. Fractured nose.
## 8961                                                                                                                                            Employee was talking with a patient who was anxious, cursing, threatening staff. Patient grabbed nurse in a headlock. ()
## 8962                              Employee was teaching class when incident occurred during medication administration simulation lab. Student was attempting to open ampule appropriately but the ampule exploded sending a chard of glass into instructors left eye. ()
## 8963                                                                       Employee was teaching his class and tripped over a chair, fell into a table, and struck the right side of his head causing a laceration to his right ear and a contusion to his right jaw. ()
## 8964                                                                                                                                                                        Employee was teaching welding. He sustained uv burns to both eyes while inspecting beads. ()
## 8965                                                                                                                                                    Employee was tightening a bolt when a wrench slipped from his hand and struck him in the mouth chipping a tooth.
## 8966                                    Employee was told to get out of the way because of a tree being cut down, did not get far enough out of the way, the tree fell striking him in the head, causing him to fall to the ground sustaining laceration to his head. ()
## 8967                                                                                                                                                                    Employee was training in defensive tactics when he was kicked in the right eye by another cadet.
## 8968                                 Employee was training with ar-15 rifle at the range. Employee reported to the firing line and failed to utilize hearing protection and when the firing started, he reported a ringing noise and hearing impairment in his left ear.
## 8969                                                                                                                                           Employee was transferring an individual to bed and repositioning her when the individual elbowed employee in the chin. ()
## 8970                                                                                                                                                                        Employee was trimming grass when something got past his safety goggles into his left eye. ()
## 8971                                                                                                                                                                                   Employee was trimming hedges over his head when debris fell into his left eye. ()
## 8972                                                                                                                                                             Employee was trying to calm down patient and patient hit employee in the mouth and spit in his face. ()
## 8973                                                                                                       Employee was trying to change an individual, when staff lifted him up her hand slipped off his left leg and individual kicked employee in top of her head. ()
## 8974                                                                                                                                                                               Employee was trying to place handcuffs on inmate when the inmate hit the employee. ()
## 8975                                                                                                                                                               Employee was trying to restrain inmate when inmate starting hitting employee with his closed fist. ()
## 8976                                                                                                                                                                                   Employee was trying to sit down in a chair, when it rolled out from under her. ()
## 8977                                                                                                                                                                                    Employee was turning off an irrigation pump when something hit him in the eye ()
## 8978                                                                                      Employee was under vehicle attempting to remove spare tire, using vice grip pliers to remove the tire bracket. The tire fell on face causing a laceration to the bottom lip ()
## 8979                                                                                                                                                Employee was unloading textbooks from box to shelf, when a book fell hitting her in the mouth, knocking a tooth out.
## 8980                                                                                                                                      Employee was unloading van and did not step far enough away when closing hatchback. Pulled hatchback door down on her head. ()
## 8981                                                                                                                                                                                Employee was unlocking students room when the student hit him repeatedly in the face
## 8982                                                                                                                                                                  Employee was unplugging the vacuum; she pulled up and hit the back of er head on a metal shelf. ()
## 8983                                                                                              Employee was unstrapping propane tankes and they hit one another and some paint came off and hit the top of employee's work glasses and some got into his left eye. ()
## 8984                                                                                                                     Employee was using a buffing machine on wet floor. He slipped & fell hitting his mouth against the buffer splitting his lip and loosening teeth
## 8985                                                                                                                                                             Employee was using a chain to remove a log. The chain broke, striking the employee's head and teeth. ()
## 8986         Employee was using a core drill to drill hole through concrete. The bit of the drill hit a peice of steel rebar causing drill to hang up & twist out of his hand. The handle of the drill hit employee in the mouth & jaw causing his tooth to come out. ()
## 8987                                                                               Employee was using a hand grinder and material got under safety glasses and into right eye logged on first aid did not think it needed attention other than first aid until 3/8/10 ()
## 8988      Employee was using a pick axe to remove solidified asphalt from bed of dump truck. Pick axe handle hit the truck and bounced back striking employee on the left side of his forehead and leaving a laceration. List injury as: forehead laceration on leftside
## 8989                                                                                           Employee was using a working stick to direct/prod cattle into a trailer. Cow kicked the moving stick and it flipped back toward employee and struck him above the eye. ()
## 8990                                                                                                               Employee was using butcher's dispense to fill bottle with disinfectant and the dispenser overfilled the bottle. Cleaner splashed in face & right eye.
## 8991                                                 Employee was using carta stethoscope which was wedged between sharps container and wall of the cart. Employee pulled it out and the bell of the stethescope hit her on the left side of her nose and cheek bone. ()
## 8992                                                                                             Employee was using copier machine to make copies and threw away some papers accidently. Employee wnet to trach can to retrieve paper and hit head on wooden cabinet. ()
## 8993                                                     Employee was using cutting torch to remove metal from bucket, got to the end of metal when, metal exploded off end block. Fire ball rained down and one fire ball went behind safety glasses into right eye. ()
## 8994                                                                                                                                                                                     Employee was using side grider on expansion joint. List injury as: right eye ()
## 8995                                                                                                                Employee was using the restroom during a class break. He was looking over a paper as he walked out of the restroom and didn't see the shelf attached
## 8996                                                                                                               Employee was visiting a pig farm. The door leading into farm building had a split hinge: top and bottom. Top half of door fell on employee's head. ()
## 8997           Employee was waiting in a vehicle at hillsborough street to make a left turn onto blue ridge road when another driver ran into the vehicle behind employee's vehicle; pushing that vehicle into employee's vehicle. Employee's vehicle was not damaged ()
## 8998                                                                                                                                                                             Employee was walking across bridge yard and a foreign object blew into his left eye. ()
## 8999                                                                                                                                               Employee was walking across common area in visitation when the wind blew over and umbrella hitting her on the head ()
## 9000                                                                                                                 Employee was walking across parking lot2034 that was very icy feet went out from under her causing her to fall hitting back of head on pavement. ()
## 9001                                                                                                                                                                           Employee was walking an individual to the bathroom & the individual hit her in the eye ()
## 9002                                                                                                                                                                                                                        Employee was walking and fell, hit her chin.
## 9003                                                                                                                        Employee was walking around his work truck and the wind blew debris off shoulder of truck into his right eye. List injuries as: right eye ()
## 9004                                                                               Employee was walking by the produce door. An inmate was coming out of the door and did not know employee was going in. The door hit the side of employee's head on the right side. ()
## 9005                                     Employee was walking down hallway near elevator to deliver mail (2 magazines, 1 envelope) when shoe seemed to grip floor and employee was thrown forward and lost balance. Employee fell hitting her chin on the bare floor. ()
## 9006                                                                                                                                                                   Employee was walking down outside steps and fell down about two remaining steps to the landing ()
## 9007                                                                                                                                       Employee was walking down the stairs when her shoeheel got caught in her pant cuff; she fell hurtingher head and right ankle.
## 9008                                                                                        Employee was walking down the steps and slipped on a stick on the stairs and fell down two steps onto concrete walkway. List injuries as: bruised face, cut on right hand ()
## 9009                           Employee was walking from her desk to a printer and fell. She was found lying on the ground next to a desk and stated she hit the desk. Employee was unsure if she passed out or how the fall occurred. List injury as: head & r elbow ()
## 9010                                                                                                                                                                   Employee was walking from one location on campus to another and wind blew trash in employees eye.
## 9011                                                                                                                                     Employee was walking in hallway to work in a bathroom when an individual knocked his glasses off and scratched his forehead. ()
## 9012                                                                                                                               Employee was walking in maintenance yard to get to his work vehicle when, he slipped on ice and hit his head. List injury as: head ()
## 9013                                                                                                             Employee was walking inside a cooling tower, he had to bend down to enter the tower and bumped his head on a panel hanging inside the cooling tower. ()
## 9014       Employee was walking into the bathroom. An individual was coming out very fast at the same time. The two ran into each other and the individuals head hit employee in the mouth knocking her left front tooth loose. The tooth fell out a short time later. (
## 9015                     Employee was walking into the lab with a cane in one hand and lunch in another. Her leg gave out and she caught her shoe on the floor, fell, and struck her face on the floor causing her lip to swell. The employee has muscular dystrophy. ()
## 9016                                                                                                                                                                                     Employee was walking near the cobb dorm tripped on an uneven brick and fell. ()
## 9017                                                                                                                                                                                    Employee was walking on campus near courtyard and tripped on uneven sidewalk. ()
## 9018                                                                                                                                                                              Employee was walking on grounds when bitten by unidentified insect above right eye. ()
## 9019                                                                                                                                                                         Employee was walking on sidewalk and was poked in the right eye by a low hanging branch. ()
## 9020                                                                                                                                                                                    Employee was walking on sidewalk into forsyth medical center and fell on ice. ()
## 9021                                                                                                                             Employee was walking out front door down steps when her feet got tangled and she fell face down injuring right side of face and nose ()
## 9022                                                 Employee was walking out of building to conduct a road test when, he steppped in a hole in the parking lot and fell. Employee hit his right side of head, pulled something in right arm, and scraped both knees. ()
## 9023                                                                                                                    Employee was walking out of the office while reading his class schedule; he accidentially turned toward the wall mounted tv and bumped his head.
## 9024        Employee was walking out of the parker lincoln building via the loading dock steps and was not paying attention to where she was in relation to the location of the staircase. She misjudged her step and fell hitting her forehead on the concrete wall. ()
## 9025                                            Employee was walking outside from his office and when he passed through the door a welding student was in the parking lot grinding a piece of metal. Employee walked into flying debris and felt debris in both eyes. ()
## 9026                                                                                                                                            Employee was walking through cattle chute and was distracted, he ran into cattle gate hitting his head causing a cut. ()
## 9027                                                                                                                                                                     Employee was walking through main kitchen & walkedthrough a cloud of chemical spray (degreaser)
## 9028                                           Employee was walking through the woods and walked through multiple spider webs, some of which came into contact with his eyes. His eye became progressively irritated over the next few days. List injury as: left eye ()
## 9029                                                                                           Employee was walking to a meeting and someone opened a door hitting her in the head. Employee sustained pain and a contusion to her right eye and developed headaches. ()
## 9030                                                                                                                                                                                        Employee was walking to car in parking lot and fell on left side of body. ()
## 9031                                                                   Employee was walking to copy center from tech bldg and tripped on brick near the loading dock. He fell on his left side on his arm, hand and face and injured his r hand trying catch himself. ()
## 9032                                                                                                                                                                           Employee was walking to help student and lost balance and fell, striking head on table ()
## 9033                                                                                                                                                                                                Employee was walking to her car and tripped on the uneven payment ()
## 9034                                                                                                                                                                                                                  Employee was walking to her car in the parking lot
## 9035                                                                                                         Employee was walking to the switchboard area, her knees gave way which caused her to stumble and fell. Fell on both knees and hit her head on the floor. ()
## 9036                                                                                                                                                Employee was walking to window in classroom to open the blinds and struck right temple on tv hanging from ceiling ()
## 9037                                                Employee was walking toward the south service entrance to enter the library as she normally does each morning. She fell and hit her rt knee, rt shoulder and arm and hit her head causing a cut above her rt eye. ()
## 9038                                                                                                                                                                                                 Employee was walking towards sink and slipped on water on the floor
## 9039                  Employee was walking towards the greensboro coliseum complex for gtcc graduation. Staff members are required to attend graduation. She was walking on the sidewalk, and her heel caught in a crack where the concrete was uneven, and she fell. ()
## 9040                                                                                                                                                                                                                                      Employee was walking up stairs
## 9041                                                                                                 Employee was walking up the steps to school entrance, lost balance and fell. She was there to pick up check from 4-h embryology program since she’s a 4-h agent. ()
## 9042                                                                                                                                                               Employee was walking, looked away when someone called his name and walked into the edge of a cubicle.
## 9043                                                                                                                                                                  Employee was washing hands, when she went to grab a paper towel the entire front fell on her nose.
## 9044                                                                                                                                    Employee was washing mop out in closet in bookstore and plunger fell off hot water heater and hit her in the top of her head. ()
## 9045                                                                                                                                                                           Employee was washing sweat off face with cloth causing unspecified injury to left eye. ()
## 9046                                                                                                                                                                          Employee was wearing ear muffs for noise protection and he developed otitis externa/media.
## 9047                                                                                                                                                 Employee was wearing latex [disposal] gloves, when she took the gloves off, she rubbed her hand across her eyes. ()
## 9048                                              Employee was wearing safety glasses while installing the ceiling tiles. Afterwards, he removed the glasses and was moving the ladder to put it away when ceiling tile dust fell from the ladder into his right eye. ()
## 9049                                                                                                          Employee was weed eating around guardrail when some debris got into his eye behind safety glasses and under his contact lens. List injury as: right eye ()
## 9050                                                                                                                                   Employee was weed eatting around maintenance yard when a small rock struck him in the mouth. List injury as: upper front tooth ()
## 9051                                                                                                                                                           Employee was weedeating a bank when, he was stung multiple times by bees. List injury as: cheek, chest ()
## 9052                                                                                                                                                         Employee was weedeating around a sign post and was stung several times by bees from an underground nest. ()
## 9053                                                                                                                                                                            Employee was weeding and pruning and was stung by a saddleback caterpillar near the eye.
## 9054                                                                                                                                          Employee was weeding the grass in the woods on campus when bees came out of the ground and stung him in several places. ()
## 9055                                                                            Employee was welding an air manifold for crane and chipping the slag. Employee finished chipping and lifted his welding helmet cuasing a hot piece of slag to fall into his left eye. ()
## 9056                                                                                                                                                                                                                      Employee was welding and felt something in eye
## 9057                                                                                                                                                                          Employee was welding overhead on a plow and a piece of hot metal fell off into his ear. ()
## 9058                                                                                                                                                                                                       Employee was wiping window blinds & felt somethingin her eye.
## 9059                                                                                                                                                          Employee was wiring up a computer under a desk when he lifted up an hit his head on the corner of the desk
## 9060                                                                       Employee was working and stopped to put gas in state car. She stepped over the hose to put gas card in the vehicle and tripped over gas hose and fell on the concrete landing on her face. ()
## 9061                                                                                                                        Employee was working around her computer, tripped over a mouse cord and fell to the ground causing contusions on her right knee and face. ()
## 9062                                                                                                                                           Employee was working at her desk-piece of ceiling tile fell after const. Workers were hammering & lodged in her right eye
## 9063                                                                                                                      Employee was working at manna food bank, operating a trash compactor, when the handle of the compactor, fell and hit Mr. Cowart in the head ()
## 9064               Employee was working in a tissue culture room and while being handed a reagent it dropped to the floor. He bent over to pick up the item and upon standing, he hit his head on an open incubator door causing a head trauma to upper left portion. ()
## 9065                                                                                                                                                                                                                 Employee was working in blue north control room. ()
## 9066                                                                                                                                Employee was working in front of the foreign material cleaning machine bulk panm when fragment from peanut hull entered left eye. ()
## 9067                                                                                                                                                                                             Employee was working in granville dorm control - face started burning .
## 9068                                                                                                                  Employee was working in her area and her eyes started to burn and she began coughing while another staff was using oxivir, a cleaning solution. ()
## 9069                                                                     Employee was working in room 705 conducting filing duties. When closing a cabinet a metal first aid kit stored on the top of the file cabinet fell striking employee on the top of the head. ()
## 9070                                                                                                               Employee was working in the book store completing a report while standing. The employee fell backwards striking the back of her head on a cabinet. ()
## 9071            Employee was working in the book store supply room breaking down boxes and stacking them in the floor. She returned to the sales counter to wait on a customer. She returned to the supply room and alleges that she tripped over the boxes and fell. ()
## 9072                                                                     Employee was working mop-up stage of wildfire. He was spraying water on active fire. Ash and other debris went airborne and got in employee's left eye. Employee was wearing safety glasses. ()
## 9073                                                                                                                                                                            Employee was working on a cloes dryer and felt like he got something in his left eye. ()
## 9074                       Employee was working on a computer under the stairwll in barker hall. When I stood up to leave the computer hit her head ont he under-hang of the stairwell. Employee fell to the ground and a nearby studnet helped her to sit on a sofa. ()
## 9075                                                                                                                                                           Employee was working on a door. It dropped on the left side of her face causing an unspecified injury. ()
## 9076                                                      Employee was working on a pintle hitch that was secured in a vice. He was tightening a large nut on the hitch when the wrench slipped of the nut. This caused the wrench to strike employee above left eye. ()
## 9077                                                                                                                                       Employee was working on cast iron waste pipe, under lab's building drain's clogged and he was in contact with heavy fumes. ()
## 9078                                                                                                                                                                              Employee was working on computer when something entered her right ear causing pain. ()
## 9079                                                                                                                                                                    Employee was working on damper on aau dust and debris came off the damper and enter left eye. ()
## 9080                                                                                                                                                         Employee was working on driving in some fence posts when the air hammer came up and hit him in the head. ()
## 9081                                                                                                                                                              Employee was working on flow-book when patient came from nowhere and hit employee hard on left jaw. ()
## 9082                                                                               Employee was working on imap truck that was lifted up, he went to get a wrench from his tool box, stood up too fast, and hit his head on front bumper. List injury as: top of head ()
## 9083                                                                                                                                                           Employee was working on stopped up sink. Working on the lift pump station for the sink. ()chemical in eye
## 9084                                                                                                                                                                 Employee was working on the computer and another EE dropped some books on the left side of her head
## 9085                                                                                                Employee was working on the diving board railing which was under tension. The railing released and struck the employee above the right eye, causing a laceration. ()
## 9086                                                                      Employee was working on uv lights and testing ballast for power they were turning lights off and on to check for power to the lights. Was not in there for more than 5 minutes at the most. ()
## 9087                                                                   Employee was working on uv lights and testing ballast for power they were turning lights on and off to check for power to the lights. Was not in the unit for more than 5 minutes at the most. ()
## 9088                                                                                                                                                         Employee was working overhead on heavy equipment. A screwdriver slipped out of his hand and struck his ear.
## 9089                                                                                                                                               Employee was working the housing unit, when an offender threw a liquid into his face, causing contact to his eyes. ()
## 9090                                                                                                                                                                                                 Employee was working the yard and hit his head on a metal stairwell
## 9091        Employee was working to remove a steam valve and it required cutting bolts. During this time, it is believed that metal got into his left eye and it was rubbed inadvertently. Employee did not have an issue until sevaral days later when it became infect
## 9092        Employee was working with an adult client to re-direct him to safe, unknown activity from being distracted. Client was struggling with father. Father was attempting to redirect client away from focused interest to planned activity. Cont in add notes ()
## 9093                                                                                                                                    Employee was working with lab glassware which May have contained dilute 5% hcl. It was thought acid gas May have entered her eye
## 9094                                                                                                                                                Employee was working with one of the calves in the cow display pens at the ark exhibit. Calf kick her in the eye. ()
## 9095                                                                                                                                    Employee went into conference room because phone was ringing and when she turned to leave her foot got caught in the phone cord.
## 9096                                                                                                                                                                   Employee went into the stock room to get some ensure and the spoon container fell on her head. ()
## 9097                                                                                                                                                                 Employee went to ask patient to change clothes and patient started hitting employee in the head. ()
## 9098                                                                                                        Employee went to open double doors on 2nd floor and when she closed the door the magnet on the door fell off and hit her on her right eye and right cheek ()
## 9099                                                                                                                              Employee went to plug truck (under calcium tank) when, a piece of salt from the truck got into his eye. List injuries as: right eye ()
## 9100                                                                                                                                                                              Employee wes driving a forklift when a splinter ofwood off a pallet blew into his eye.
## 9101                                                                                                                                                                        Employee wiping down room-dust flying and got intoher left eye-having trouble seeing-itching
## 9102                                                                                                                Employee working on plow. While grinding metal to get ready for welding a piece of metal went under his safety glasses hitting him in the right eye.
## 9103                                                                                                                                                  Employee working with pipe wrench, wrench slipped out of hand and hit employee on right forehead. 2stitches needed
## 9104        Employee works in chilled water operation. This department is enrolled in the hearing conservation program. Due to occupational noise exposure about the action level prescribed by osha. Employee received annual hearing test as a part of the program. ()
## 9105                             Employee works in ground services. They are enrolled in the hearing conservation program due to occupational noise exposure. The hearing test that the employee is required to take indicated a standard threshold shift in hearing. ()
## 9106                                                Employee works in life safety. They are enrolled in the hearing conservation program due to occupational noise exposure. He received his annual hearing test which indicated standard threshold shift in hearing. ()
## 9107                                                                                                                                   Employee writing is not legible, constant temperature extreme threats, and constant negative moral of coworkers & job scrutiny ()
## 9108                                                                                                                                                        Employee's left ear was penetrated by a stick as he bent down to look in a pipe. List injury as: left ear ()
## 9109                                                                                                                                                                                                                    Employee's vehicle was struck by an oncoming car
## 9110                                                                                                                                             Employees was preparing to perform patching opertions. Employee was sprayed in right eye with asphalt release agent. ()
## 9111                                                                                                                 Employees were unloading a table off of a truck and stood the table on its end. Employee bent down to grab a leg and hit his head on the other leg.
## 9112                                                                                                                                                                                                                         Employer has no knowledge of this injury ()
## 9113                                                                                                                                                                                    Employer poked himself in the left eye when personal reading glasses slipped. ()
## 9114                                                                                                                            Employer was walking down hallway of general studybuilding on break between classes-struck by the bathroom door on rt side of head/face.
## 9115                                                                                                                                             Employy went to the bathrooma nd fell, hit his head on the sink or trash can and got a small cut above the left eye. ()
## 9116                                                                                                                                                                                                            Emptying garbage can when a bee stung him on the chin ()
## 9117                                                                                                                                                                                                                       Emptying linen - cover lid struck EE in l eye
## 9118                                                                                                                                                      Emptying trash at the end of her shift and she tripped over a concret platform near dumpster and hit her head.
## 9119                                                                                                                                                                                                           Encountered spider web. Insect became lodged in right eye
## 9120                                                                                                                              Engaged in operation of crawler to load truck. Crawler lurched forward due to rough terrain. EE's head hit front windshield of crawler
## 9121                                                                                                                         Engaged in recreational activity w/students of center. Student accidentally struck EE in eye, causing fracture of orbital bone of right eye
## 9122                                                                                                                           Enroute to client home visit in laurinburg in state mini van, stopped at light in aberdeen and was rear ended by truck. ()whiplash injury
## 9123            Enrouted to a home visit. Vehicle came to a stop sign and proceeded onto the street. Road appeared to be just being worked on and officer turned onto the street and hit a newly filled pothole. Airbag deployed and caused injuries to face and arm. ()
## 9124                                                                                                                                                   Entered bathroom and did not notice cabinet door was open and bent down and hit head on the open cabinet door. ()
## 9125                                                                                                                                                                         Entered ladies room, slipped on floor, fell on backwith pressure on left wrist, bumped head
## 9126                                                                                                                   Entered left hand curve. Lost traction on wet pavement. Ran off left side of road & struck pole causing head to strike interior of patrol vehicle
## 9127                                                                                                                                                                                         Entered the front door o the center, slipped and hit head on the brick wall
## 9128                                                                                                                                           Entered tool shed to inventory tools. As officer thornsbury entered building he struck his head on top of the door frame.
## 9129                                                                                                                                                              Entering bus through read door & struck his head on piece of metal sticking down form top of rear door
## 9130                                                                                                                                           Entering courthouse from old section two way swinging door. Person coming through from other side door hit EE on forehead
## 9131                                                                                                                                                             Entering into the dormitory to relieve officer. Inmate swung door open and hit co croom in the head. ()
## 9132                                                                                                                Entering patrol vehicle after completing traffic stop. Due to heavy traffic passing trooper lemons patrol vehicle, dirt & dust was thrown up in face
## 9133                                                                                                                   Entering rear of vehicle, hit head on screw protruding through canopy frame. Laceration to top of head. Root cause: use of incorrect screw length
## 9134                                                                                                                                                                                      Entering the bathroom in the operation section when the door closed on my head
## 9135                                                                                                                                                      Entering the courthouse, tripped on a floor mat and fell. Facial contusion & abrasion, head injury concussion.
## 9136                                                                                                                Entering tower 3 & making sure door secure; turnedaround to go up steps & bumped front of head on steps-bruise developed on front right side of head
## 9137                                                                                                                                                                                           Entering van hit head in doorway of van causing bump on on top of left ()
## 9138                                                                                                                                                                                     Environment caused eyes to itch and burn, have caused swelling around the eyes.
## 9139                                                                                                                                                                                      Environmental services was spray buffing floors and EE had an alergic reaction
## 9140                                                                                                                                                                                Escorted to back door of loading dock, slipped andfell, hit head, shoulder, buttocks
## 9141                                                                                                                                                                                Escorting an inmate after placing him in rec cage, inmate punched ofc in the face ()
## 9142                                                                                                                                                                              Escorting an inmate and the inmate came out of his cell and head butted the officer ()
## 9143                                                                                                               Escorting an inmate back from medical when she fell forward, landing on her rt knee and hitting herself in the mouth with her radio, making small cut
## 9144                                                                                                                                                         Escorting client out of dining room. Client hit EE on right jaw. Cut to lip & 3 bottom front teeth loosened
## 9145                                                                                                                                                                               Escorting client to dayroom and he turned quickly bumping head to head into staff. ()
## 9146                                                                                                                                                                                                Escorting contractors, bumped head on steel frame in attic, cut head
## 9147                                                                                                                                                                                                                      Escorting inmate - kicked by inmate in face ()
## 9148                                                                                                                             Escorting inmate back to cell when she refused officer administered pepper spray and spray came in contact of officer's face & eyes. ()
## 9149                                                                                                                         Escorting inmate back to his cell when inmate became aggressive & struck officer above right eye& bridge of nose w/handcuffs he was wearing
## 9150                                                                                                                               Escorting inmate from ambulance before he could get out of state vehicle. Running trying to get through sliding door before it closed
## 9151                                                                                                                                                              Escorting inmate from holding cell to gray unit sick call room at whick time inmate head butted me. ()
## 9152                                                                                                                                                                     Escorting inmate from rec back to cell. Removing leg cuffs and got kicked in right head/eye. ()
## 9153                                                                                                                                                       Escorting inmate from sallyport to inmate receiving-restraining hostile inmate; fell and hit head on wall. ()
## 9154                                                                                                                                                         Escorting inmate from support to his housing unit. In front of inmate room he assaulted EE causing injuries
## 9155                                                                                                                 Escorting inmate to cell from dho, inmate slipped out of cuffs and assulted me. Hit me in the head with the cuffs and bit the right side cheek area
## 9156                                                                                                                                                                 Escorting inmate to cell, he became combative and to regain control, they wound up on the floor. ()
## 9157                                                                                                            Escorting inmate to recreation cell when another inmate that was in a recreation cell started assaulting the inmate I was escorting with body fluids. ()
## 9158                                                                                                                                                                           Escorting inmate to shower. When inmate exited cell, he attacked officer with a shank. ()
## 9159                                                                                                                                                                                                                    Escorting inmate when inmate spit in my face. ()
## 9160                                                                                                                                                                                                                         Escorting inmate when inmate spit on me. ()
## 9161                                                                                                                                         Escorting inmate, in hand restraints, to holding cell, inmate turned toward EE & struck him w/his fist on left side of face
## 9162                                                                                                                                               Escorting inmates back to cell after their shower inmate turned around and punched officer jackson in the forehead ()
## 9163                                                                                                                                            Escorting inmates off rec yard. Dropped lock, bent over to pick it up and wind blew gate open and was struck in head. ()
## 9164                                                                                                                                       Escorting inmates off the recreation yard inmate came out of his hand cuffs and hit him in lt eye with his fist and handcuffs
## 9165                                                                                                                                                                                    Escorting inmates to and from showers, removed handcuffs, inmate spat in face ()
## 9166                                                                                                                    Escorting juveniles to gym, fell struck head EE has been overpd 287. 75-salary continuance EE atty-michael lee 864-577-0977-???If still represen
## 9167                                                                                                                                     Escorting patients back to their ward. One patientfelt they were at their ward & swung at staff w/ fist, hitting staff in mouth
## 9168                                                                                                                                                                                    Escorting student to seg unit and student turned and head butted EE in the mouth
## 9169                                                                                                                                                                                             Escorting upset inmate to her cell acute mental health. Injury to face.
## 9170                                                                                                                                                                                                     Examining inmate and inmate struck him in face with his fist ()
## 9171                                                                                                                                                      Excising toe nail from nail bed-toe nail slipped from hemostats & blood splattered about EE's face and in eyes
## 9172                                                                                                                                                                                                                Exhaust particles from tractor got into EE's rt eye.
## 9173                                                                                                                                                                              Exited staff rest room and struck his head on corner of electrical circuit breaker box
## 9174                                                                                                                                                                                                                       Exiting a-pod slipped and fell on my face. ()
## 9175                                                                                              Exiting crawl space under building and stood up too soon hitting head knocking me to my knees and jarring teeth and jambed down neck causing pain to head and neck. ()
## 9176                                                                                                              Exiting gatehouse and ground was covered in ice. She fell down onto her back landing flat in supine position hitting back of head, lt. Knee, & rt. Hip
## 9177                                                                                                                                                                                                                     Exiting van when he bumped his head on door jam
## 9178                                                                                                                                                                Exiting vehicle, slipped on pine needles and fell forward, striking forehead on edge of car door. ()
## 9179                                                                                                                                         Exposed to an employee and patient who has been diagnosed with strep throat and I now have sore throat and general malaise.
## 9180                                                                                                                                                                                                      Exposed to noise in the engine room of hatteras class boats ()
## 9181                                                                                                                                                                                                                                  Exposed to patient with head lice.
## 9182                                                                                                                                                                                                                                Exposed to patients with pink eye ()
## 9183                                                                                                                                                                                                                    Exposed to person with contagious conjunctivitis
## 9184                                                                                                                                                                                         Exposed to toxic black mold (stachybotys) confirmed in building on 8/30/12.
## 9185                                                                                                                                                                                                                          Exposure - pt spat blood into EE's eyes ()
## 9186                                                                                                                                                                                                                                               Exposure to body lice
## 9187                                                                                                                                                                                                                                       Exposure to conjunctivitis ()
## 9188                                                                                                                                                                                                                               Exposure to harmful noise from mower.
## 9189                                                                                                                                                                                                                                                    Exposure to lice
## 9190                                                                                                                                                                                      Exscorting an inmate after a code and inmate coughed blood in officers face ()
## 9191                                                                                                         Extremely dry nasal passage due to office being directly above boilers in basement, May also be due to air quality. Nasal passages primarily right side. ()
## 9192                                                                                                                  Eye (l) bioinformatixs has had low humidity for years. It was recently measured at 15% rh my left eye has a growth.. Both eyes dry, growth on left
## 9193                                                                                                                                         Eye (l)... Doing preventive maintenence on emer. Generator at tower facility & wind blew a small piece of trash in left eye
## 9194                                                                                                                                                                              Eye (r) piece of steel broke & something flew in ees eye 100% vision loss in right eye
## 9195                                                                                                                                                                                                                  Eye became inflamed and swollen after touching. ()
## 9196                                                                                                                                                                                                                Eye began itching, rubbed eye - foreign body rt eye.
## 9197                                                                                                                                                        Eye didn't feel normal stopped and looked at eye and eye was starting to swell cutting grass with bushog. ()
## 9198                                                                                                                                                                                                      Eye infected by smoke w/ poison ivy while working on wildfire.
## 9199                                                                                                                                                                                                                                           Eye.. Changeing rat cages
## 9200                                                                                                                               Eye.. Was drilling hole in concrete overhead also drilling in metal rebar using hammer had safety glasses on, something got in rt eye
## 9201                                                                                                                                                                                              Eye... Cleaning counter tops with mb-10 nozzle turn wrong got into eye
## 9202                                                                                                                                                                                                                                               Eye... Trimming trees
## 9203                                                                                                                                                                 Eye.... Cleaning trap on filter & picked up pack- age, eye felt irritation next day, red & inflamed
## 9204                                                                                                                                                                                                           Eye.... Hoisting waterheater & insulation got intomy eyes
## 9205                                                                                                                                                                                                                                                      Eye.... Mowing
## 9206                                                                                                                                                        Eyes water, swell closed and become very dry/itchythen the skin gets red/scaley & stays that way w/ohealing.
## 9207                                                                                                                                                                                                        Eyes were burning due to strong chemical fumes on her floor.
## 9208                                                                                                                                 Eyes were watering and burning. Eyes-bloodshot. Face was swelling up, box dust or paper dust possibly tranfered from hands to face.
## 9209                                                                                                                                            Failed to see item that was placed on top of another item when retrieving item from top of cabinet. Eyelid of right eye.
## 9210                                                                                                                                                                                                                        Fan fell off filing cabinet & hit EE on head
## 9211                                                                                                                                                                         Fastener band popped loose catching the employee in the right eye causing swelling and pain
## 9212                                                                                                                                                                                                       Feces contaminated water dripped on officer pierce's head. ()
## 9213                                                                                                                                                                                                       Feeding dinner to inmate when he threwunknown liquid on EE ()
## 9214                                                                                                                     Feeding in h-pod. I was feeding in h-pod when I opened imnate wilbert baldwins food passage door and he then threw bodily fluids in my face. ()
## 9215                                                                                  Feeding inmate jordan through his food trap door he threw what appeared to be milk and food substance mixed some of the liquid got in the officers left eye and on his shoulder ()
## 9216                                                                                                                                                             Feeding inmates, inmate threw unknown substance on the officer hitting him in the left eye and mouth ()
## 9217                                                                                                                                                                                                                           Feeding patient-spit foot into r. Eye. ()
## 9218                                                                                                                                                                                                       Feeding raw fish to sea lions-rubbed eye. Irritated right eye
## 9219                                                                                                                                                                    Feeding seg inmates, heard loud noise caused by metal pan dropping on floor injured l eardurm ()
## 9220                                                                                                                                                                                                     Feeding segregation inmates. Inmate threw liquid in his face ()
## 9221                                                                                                                                                                                                                               Feet sliped out from under me, on ice
## 9222                                                                                                 Feild umpire; when an outfielder was throwing a batted ball back toward the infield, the employee turned and the softball hit her in the face injuring her nose. ()
## 9223                                                                                                                                                                                        Fell after use of force. Hit head first and appeared to be having a seizure.
## 9224                                                                                                                                       Fell down oustide steps of courthouse. Lacerationsto forehead. Sprained rt hand & knee. Forehead lacerations required sutures
## 9225                                                                                                                                                                                                              Fell down steps injuring head, right arm and right leg
## 9226                                                                                                                                                                                                                 Fell face down on stairs septorhinoplasty 12/22/05.
## 9227                                                                                                                                                                                            Fell forward while on steps striking forehead on edge of concrete steps.
## 9228                                                                                                                                                                                        Fell giong up steps - twisted - injured head, neck, back, and left shoulder.
## 9229                                                                                                                                                   Fell going in door to work during a rainstorm and slipped on water that had gotten inside the courthouse door. ()
## 9230                                                                                                                                                                                                                                Fell hitting forehead on door of car
## 9231                                                                                                                                                                                                                                                        Fell in hole
## 9232                                                                                                                                                                                  Fell in hotel room getting ready for training session. Laceration to back of head.
## 9233                                                                                                                                                                Fell off ladder in basement & hit lt side of face on wooden shelf/floor. Have a scrape on left elbow
## 9234                                                                                                                                                        Fell off ladder while moving ladder to new location. Caulking gun struck head which resulted in a laceration
## 9235                                                                                                                                                                                                  Fell on sidewalk while stepping over puddle of water from rain. ()
## 9236                                                                                                                                                                                  Fell on tram road hitting face & mouth area. That night realized tooth was chipped
## 9237                                                                                                                                                                                                                          Fell on wet floor injuring rt arm and head
## 9238                                                                                                                                                                                                                                  Fell walking down steps at work ()
## 9239                                                                                                                                                                   Fell walking through the door frame of wlc161; hit head on door frame; knot on rt side of head ()
## 9240                                                                                                                                                                                                 Felt a bite or sting on her lt neck area near the base of her skull
## 9241                                                                                                                                                                                            Felt something fly into eye as one of doors came open & air vent came on
## 9242                                                                                                                                                                   Felt something scratching eye. Saw black object very small in left eye. Object would not come out
## 9243                                                                                                                                                Felt something sting him under the lt eye. Did not see what caused the sting, noticed immediate swelling and burning
## 9244                                                                                                                                                           Field work, walking through forest with saplings and thick bursh, EE struck in left eye by tree branch ()
## 9245                                                                                                                                                                                                                                             Fight w/fellow employee
## 9246                                                                                                                    Filing data sheets. EE reached down to retrieve folder as another EE reached across with another folfer & struck EE in eye with corner of folder
## 9247                                                                                                               Filing. EE stepped off foot stool while pulling a file, lost balance & tripped over own feet, fell bkwds to floor, hit rt side of head on metal stand
## 9248                                                                                                                                  Filing. Had pull-out tray out. Bent down to a fileand when EE came up hit head on corner of pull-outtray. Left eyebrow--3 stiches.
## 9249                                                                                                                                                 Filling bottles she bent down to put something on a cart & when she stood up she hit her head on thesoap dispenser.
## 9250                                                                                                                                                                   Filling bucket up with chemical, chemical got in his left eye. Name of corrosive chemical-"crew".
## 9251                                                                                                                                                                                             Filling hb qt bottle, when liquid squirted out and hit EE in right eye.
## 9252                                                                                                                                                                                         Filling mop bucket, turned around too fast & walked into door, hitting nose
## 9253                                                                                                                                                                                                                  Filter sterilizing naoh & it got into her left eye
## 9254                                                                                                                  Finished with bush axe- standing near cwp van - light headed - passed out - fell on gravel road - several small cuts on back of head from gravel -
## 9255                                                                                                             Finished working road squad back at unit I was feeling dizzy, nausia, & head exteme pain. I told the c/o at the gate that I needed to get to the grass.
## 9256                                                                                                                                                   Fire alarm bell sounded and EE was exiting building-alarm mounted on exit door-loud May have damaged EE's hearing
## 9257                                                                                                                                                                                                     Fire alarm sounded. Rounded corner and ran into someone head on
## 9258                                                                                                                    Fire extinguisher was accidentally knocked off wall. Powder escaped filling most of the building on lt's end. I was covered in yellow powder. ()
## 9259                                                                                                                                                Fire polishing rod popped and threw several piecesof glass which hit his face, as hit EE chest and bounced into eye.
## 9260                                                                                                                                                     Fired the shot gun and rifle and afterwards my left eye felt awkward, like something is under my bottom eye lid
## 9261                                                                                                                                                            Fired upon w/paint ball & hit officer in face area which injured upper right lip & bottom lower lip area
## 9262                                                                                                                 Fist fight between witnesses-EE went to intercede & she was scratched on breast & neck & was pushed into a door that fell & struck her head & back.
## 9263                                                                                                                                                                                      Fixing lunch trays bend down looking opposite direction and hit eye on cart ()
## 9264                                                                                                                                                                                                 Flames from solvent got in eye while heating bearing for removal ()
## 9265                                                                                                                                                                                                            Flap on box lid went up under glasses abrasing left eye.
## 9266                                                                                                                                Flexible hose stored in cabinet when charles opened the cabinet door hose fell out and hit him in the mouth breaking front tooth. ()
## 9267                                                                                                                                                                                                                Floating particles of new cut tile got in right eye.
## 9268                                                                                                                                                                                                                                     Flying insect went into rt eye.
## 9269                                                                                                                                                                                                    Folding stairway chain had hook which went in nose while closing
## 9270                                                                                                                                                                                       Following a period of undersea research diving, emp experienced ear infection
## 9271                                                                                                                                                                 Food service officer was supervising inmate with lunch meal and slipped and fell on drain cover. ()
## 9272                                                                                                                           Forced to attend an unnecessary meeting of petty accusationos which triggered a physical/emotional breakdown b/c this type of harrassment
## 9273                                                                                                                                                                                                Foreign body entered left eye while removing rust from a steel beam.
## 9274                                                                                                                                                                                                                   Foreign body to left eye while using screw driver
## 9275                                                                                                                                                                                                                                     Foreign material in left eye ()
## 9276                                                                                                                                                                                                    Foreign matter blew into rt eye while chekcing on completed work
## 9277                                                                                                                                                                                                  Foreign object flew into left eye while on walking on juh grounds.
## 9278                                                                                                                                                                                                                 Foreign object got in eye. Scratched cornea of eye.
## 9279                                                                                                                                                                                                                                      Foreign object in right eye ()
## 9280                                                                                                                                                                                                                   Foreign object in right eye while mowing grass ()
## 9281                                                                                                                                                     Forks were up spporting a conveyor up when EE turned his head hitting his left ear causing a small lalceration.
## 9282                                                                                                                                                  Forks were up to supporting a conveyor up when EE turned his head hitting his left ear causing a small laceration.
## 9283                                                                                                               Formic acid was contained in a syringe. Pressure was accidently applied to the plunger, the acid wassplashed on face while performing normal research
## 9284          Forsythe was at the public rest area in plymouth nc. She walked into the restroom lost consciousness, and feel face first onto the bathroom floor. Breaking her nose and loosing 4 teeth. The bathroom attendant and two hispanic females rendered aid. ()
## 9285                                                                                                                                               Found in pen w/horse. Sitting on ground, holding head; wound on right side of his head was bleeding. No one witnessed
## 9286                                                                                                                                                                                                                       Framing a picture felt something in left eye.
## 9287                                                                                                                    Friday 1-18-08 when EE left work and went home nose started getting hard and sore. When monday came nose was sore and hard stuff formed in nose.
## 9288                                                                                                                                                                                                                              Fumes from fire causing eye irritation
## 9289                                                                                                                                                                                   Fumes in hallway of building where his office is located. Caused strange headache
## 9290                                                                                                                                                                                                             Gaining control of student employee was hit in the head
## 9291                                                                                                                                                                              Gas fumes in hr bld due to leaks & cracks in bld basement-EE inhaled gas (head/throat)
## 9292                                                                                                                                                                                                                                   Gas sprayed on right side of face
## 9293                                                                                                                          Gave client something to drink; turned around to get back in driver seat, hit top of head on notch where seat belts are kept over head. ()
## 9294                                                                                                                                 Gave medication to a consumer who was having problem, the consumer spit the medication out. He spit in EE's face going in her eyes.
## 9295                                                                             Gave order to inmate to stop swearing at me and he refused. Gave order for him to return to cell and lock down, he refused and swung at me. We fell and he began hitting me on head. ()
## 9296                                                                                                                                                                       Getting belongings out of state vehicle/work van at the end of the day and slipped on ice. ()
## 9297                                                                                                                                          Getting cleaning rag out of storage cabinet, cabinet turned over causing EE to fall on concrete floor and hit back of head
## 9298                                                                                                                                                                                                           Getting down a spoon from rack, spoon fell and hit rt eye
## 9299                                                                                                                                                                     Getting file from bottom drawer of desk, computer monitor fell off stand & hit employee on head
## 9300                                                                                                                           Getting into state vehicle, it was raining & EE slipped while opening vehicle door & hit head/faceon door. Cut & bruised rt side of nose.
## 9301                                                                                                                                                                                                                           Getting into van, hit head on door of van
## 9302                                                                                                                                                        Getting into work truck & reaching far into back of truck then turning around to get into truck & hit rt ear
## 9303                                                                                                           Getting model/serial #'s from computers destined for surplus leaning down and when stood up hit head on fuse box in hallway and caused a gash approx 1 ()
## 9304                                                                                                                                                                                                  Getting mop bucket out of mop room, mop fell hitting EE in head ()
## 9305                                                                                                                          Getting out of car to get lunch for self & supv. Trying to move brieface at same time, stuck car key in left eye. Abrasion to left cornea.
## 9306                                                                                                                                           Getting out of chair, when shoe heel was tangled in phone cord, EE fell hitting head on floor. Small bump over left brow.
## 9307                                                                                                                                                                     Getting papers together to start shift and the panel fell from the wall hitting EE in the head.
## 9308                                                                                                                                                                                       Getting patient out of bed turned & hit top of head on shelf attached to wall
## 9309                                                                                                                                                  Getting prepared to give showers. I was giving the inmate his clothes for the showers. Exposure to body fluids. ()
## 9310                                                                                                  Getting ready to escort him (inmate) to the shower. I walked in through the side door and the feeding door was open and he threw a liquid substance in my face. ()
## 9311                                                                                                                                                                                                        Getting ready to lock up inmate for fighting. Injured mouth,
## 9312                                                                                                                                                                                                                                         Getting trash under mailbox
## 9313                                                                                                                                                                                            Getting washing powder off of shelf, loose powder fell down into my eye.
## 9314                                                                                                                                                                                                   Giving an inmate medication, the inmate spit intoee face and eyes
## 9315                                                                                                                                                                        Giving inmate toliet paper and inmate threw a cup of unknown liquid in the officer's face ()
## 9316                                                                                                                                                                    Giving ippd to resident some of ippd solution squirted into right eye, causing burning sensation
## 9317                                                                                                                                                              Giving nail care to resistive client. Part of great toe nail became airborne landing in EE's right eye
## 9318                                                                                                                                                                                                           Giving pt meds, pt jumped up scratching EE in the face ()
## 9319                                                                                                                                                          Giving tuberculosis skin test during procedure, patient jerked her arm away and solution went in right eye
## 9320                                                                                                              Giving youth toilet paper to youth in room I-4 whe EE was intentionally attack by youth. During str uggle to restrain combative youth, lt eye was goug
## 9321                                                                                                                                                                                      Glanced into a mercury lamp source and had temporary bright spot in vision. ()
## 9322                                                                                                                                                                                      Glass broke while EE was openign window/no safety glasses/glass caught in eyes
## 9323                                                                                                                                                                                                          Glass cleaner squirted from nozzle back into EE's left eye
## 9324                                                                                                                                                                                                        Glass dome imploded in hand and one piece hit EE in left eye
## 9325                                                                                                                                                                             Glass globe (covering light fixture) fell from ceiling. EE concerned glass in her eyes.
## 9326                                                                                                                                                                                                                               Glass shattered & got in to my rt eye
## 9327                                                                                                                                                            Going into an exhibit. Door bumped her in head, jamming teeth together, causing crown to become loosened
## 9328                                                                                                                                                                                         Going into attic to check ac unit when open door something fell in left eye
## 9329                                                                                                               Going through the roof hatch at turner law bldg. When he stood up the door closed back on his head and cut it. No handles to open the door so he used
## 9330                                                                                                                                                                                                                        Going thru oc pepper spray exposure training
## 9331                                                                                                                                                                                          Going to an offender's home, while turning in, another vehicle hit him. ()
## 9332                                                                                                                                                                           Going to her closet when an exit sign fell on her head. Exit sign screws were not secured
## 9333                                                                                                                                                                              Going to teach class, tripped on rug going out door, hit lip, head, right knee on door
## 9334                                                                                                                                                                  Going up steps and gallon of floor wax fell out ofbox and bursted and wax splashed up in EE's eyes
## 9335                                                                                                                               Got hit in head when someone came thru the(double)door real fast. I had just been removing trash & was getting ready to go thru doors
## 9336                                                                                                                                                                                                                                    Got rear ended picking up parts.
## 9337                                                                                                                                                                                  Got up to check on students and ran into a wall in the dark room hitting her tooth
## 9338                                                                                                                                                                                 Got up to open door to survailance room. Walked into electrical box mounted on wall
## 9339                                                                                                                                  Grabbed a dirty filter & put in dirty side of washroom-then to office-sat down & put hand on eye-a minute or two later eye closing
## 9340                                                                                                                                                                                                                                  Grease popped up into his left eye
## 9341                                                                                                                                                                                             Grinding and welding on cutterbar when a piece of metal fell in rt eye.
## 9342                                                                                                                                                                                                        Grinding cleaning valves, and something got in EE right eye.
## 9343                                                                                                                                                                                                                     Grinding handrail, material grinding got in eye
## 9344                                                                                                                                                        Grinding off bottom of metal door. When cleaning up rough edges, debris hit him in the face going into eyes.
## 9345                                                                                                                                                                                                          Grinding on bucket when piece of metal flew in left eye ()
## 9346                                                                                                                                                                                                                  Grinding pipe when piece of metal flew into rt eye
## 9347                                                                                                                                                                                                       Grinding trailer pipe, small piece of metal went into lft eye
## 9348                                                                                                                                                       Grinding weld down on stainless steel sink. Piece of steel went under his safety glasses & stuck in right eye
## 9349                                                                                                                                                                            Grinding welds on a rotary cutter, piece of metal got in eye. Was wearing safety glasses
## 9350                                                                                                                                                                      Grounds crew spraying insect spray causing EE to have chest pain, migraine headache and nausea
## 9351                                                                                                                                                                                                     Had been sweeping, when cleaning out broom, dust got in eyes ()
## 9352                                                                                                                                                                                                                Had cup of urine thrown in her face by an inmate. ()
## 9353                                                                                                                                                                                 Had goggles on @ time while welding intense heat/ glare ultraviolet glare burn eyes
## 9354                                                                                                                                                                                                                   Had juveniles on hike, was stung in eyelid by bee
## 9355                                                                                                                             Had to use force on an inmate. Inmate was very assaultive when going in cell. I was trying to hold inmate down on bed with my hands. ()
## 9356                                                                                                                                                                                   Had window rolled down, turned vehicle around & debris flew in vehicle & left eye
## 9357                                                                                                                                                                                                         Hallucinating patient struck EE in the face approx. 3 times
## 9358                                                                                                                                                                                                         Hammer fell from top of closet & landed on top of her head.
## 9359                                                                                                                                                     Handing c/o radio -ear was right next to trap door& when it closed the force of door closing caused pain to ear
## 9360                                                                                                                                                                    Handing food tray to inmate. Inmate lunged at her, scratched the right side of her face and eye.
## 9361                                                                                                                                             Handle blub box gave way, box hit ground & broke blubs, cloud of smokie dust came from box. Dust got into throat of EE.
## 9362                                                                                                                                                                                                                   Handle broke, eye splashed with isopropyl alcohol
## 9363                                                                                                                                                                             Handle on cart hit EE's right side of face while EE was bending down to adjust the mail
## 9364                                                                                                                                              Hanging flyers in restroom in rtp. Reached down to pull off a piece of tape & the paper I was holding went into my eye
## 9365                                                                                                                                                                                             Hanging new vine perches in bird exhibit and debris fell into left eye.
## 9366                                                                                                                                                                                                               Hanging wire from ceiling and dust blew into his eye.
## 9367                                                                                                                                      Happened while collecting eggs in breeder house. Hen flew out of nest box and flapped wings. Feathers went into lori's eye. ()
## 9368                                                                                                                                                                                                                               Haulimg away debri, got stuff in eyes
## 9369                                                                                                                                                                                             Hct was putting on patient's clothes and patient hit hct with his fist.
## 9370                                                                                                                                                                      Hct was wrking in construction area, dust and particles in air, got in eye, eye began to swell
## 9371                                                                                                                                                                                                                         He got some fluid in his eye from a inmate.
## 9372                                                                                                                                                                                              He tripped on the door mat and fell into the door. He cut his head. ()
## 9373                                                                                                                                He was assisting client with seat belt on golf cart when the cart moved knocking him to the ground. Metal piece hit his head/lt leg.
## 9374                                                                                                                                                 He was blowing leaves into a group and the leaves flew into the hair and landed in his glasses and then his eye. ()
## 9375                                                                                                                                                                    He was escorting inmate to a cell when inmate struck staff in the face with fists and handcuffs.
## 9376                                                                                                                                                  He was loading branches onto a truck when the bungee cord came loose and hit him in the right side of his head. ()
## 9377                                                                                                                                          He was removing the collector bag rack when he pulled the rack out it sprang up and hit (chipped)his front top left tooth.
## 9378                                                                                                                                                                He was sitting in a chair an inmate pull a saw offthe shelf causing another saw to fall on his head.
## 9379                                                                 He was standing on a ladder pulling camera wires behind a roll-up door. The door was partially open when one of the officers raised the roll up door. He was knocked off the ladder by the door. ()
## 9380                                                                                                                                                                   He was struck in the head by an inmate wearing metal hand-cuffs causing abrasions and lacerations
## 9381                                                                                                                                                                                     He was walking to another building on campus and rolled his ankle and fell down
## 9382                                                                                                                                                          He was welding a door handle on truck #41. He raised eye. Look at job and arc was struck burning his eyes.
## 9383                                                                                                                                  He was working on blet techniques and fell and hit a brick wall. He hit his head casuing to have stiches and hurt his shoulder. ()
## 9384                                                                                                                             He wsa in the back of the dump truck removing decorations when he fell out of the back of the truck when the driver made a sudden stop.
## 9385                                                                                                                                                                                                                                            Head butted by inmate ()
## 9386                                                                                                                     Head innjury. Caught her foot under a stair tread and fell. Krms accepted head but denied left knee, left wrist, right wrist and left shoulder.
## 9387                                                                                                                                                                      Head... EE stood up & opened overhead door. Door slid back down striking EE on rt side of head
## 9388                                                                                                                                                                                                      Headaches and body joint pains from workig on reseach projects
## 9389                                                                                                                                                                                                          Headbutted by a patient in the mouth during a manual hold.
## 9390                                                                                                                                                                                                    Headbutted by patient in the mouth while atemptinga manuel wrap.
## 9391                                                                                                                                                                                                      Headbutted by patient on mouth and head during manual hold. ()
## 9392                                                                                                                                                                                                                                     Headbutted in face by inmate ()
## 9393                                                                                                                                                                                                                       Hearing loss *************denied*************
## 9394                                                                                                                                                                                                                             Hearing loss due to office machinery ()
## 9395                                                                                                                                                                                                                  Hearing loss from firing weapon on firing range ()
## 9396                                                                                                                                                                                                                             Hearing loss over 10db over 5 yr period
## 9397                                                                                                                      Heat from desk lamp caused a sunburn type injury on the right side of EE face. Its a burning, throbbing pain with tightness around the eye. ()
## 9398                                                                                                                                                                 Heat register (metal)shelf fell and hit top side forehaed and deep scratch in right lensol glasses.
## 9399                                                                                                                                                                                                                Heating media over bunsen burner. Flask exploded. ()
## 9400                                                                                                                                                                     Heavy box tipped over a cart for moving stacks of chairs. Handle of cart struck in back of head
## 9401                                                                                                                                                                                     Heel got caught and fell on side walk hit lt side of forehead bruised her knees
## 9402                                                                                                                                                              Heel of shoe caught in hem of pants as was walking down stairs falling on face down several stairs. ()
## 9403                                                                                                                                                                                                         Help with shakedown of unit, something bite my right eye ()
## 9404                                                                                                                                                                                     Helpinf student fit patch panel by vutting with side grinder. Metal hit lt eye.
## 9405                                                                                                                                                                           Helping another driver in the parking deck and was hit on the head by the parking arm. ()
## 9406                                                                                                                                                                                                                     Helping calm horse, hoof impacted head and neck
## 9407                                                                                                                                                                                          Helping client stand up, when client stood, his head hit EE's left eyebrow
## 9408                                                                                                                                                                                           Helping client to chair. Client was seated. He jumped up & hit EE in face
## 9409                                                                                                                           Helping coworker remove otter enrichment balls with broom handle when it slipped off and hit left side of mouth cracking cement on bridge
## 9410                                                                                                                                           Helping inmates clean windows for inspection pulling window out bottom window when the top widow caught me in the eye. ()
## 9411                                                                                                                                                                                              Helping pt out of chair, pt swung at EE hitting him in the left eye ()
## 9412                                                                                                                                                                                                                  Helping pt with adl care, something flew in eye ()
## 9413                                                                                                                                                                            Helping restrain pt, pt bit the inside of mouth, spitting bloody spit on to EE's face ()
## 9414                                                                                                                                                                                    Helping subdue an aggressive patient & was struck by patient w/cast on arm twice
## 9415                                                                                                                                        Her car was stopped due to a car in front stoppingher car was rear ended by another car and her car hit car in front of her.
## 9416                                                                                                                                                                                                       His knee gave out and fell down the steps and hit his nose ()
## 9417                                                                                                                                                                                                                               Hit and punched in face by patient ()
## 9418                                                                                                                                                                                                                     Hit approximately 4 times on right side of head
## 9419                                                                                                                                                                                                                       Hit by a patient who was agitated. Right eye.
## 9420                                                                                                                                                                                                                                                  Hit by baseball ()
## 9421                                                                                                                                                                                                                             Hit by football in head near right ear.
## 9422                                                                                                                                                                                                                                      Hit by patient in right eye ()
## 9423                                                                                                                                                                                                                          Hit by patient on left side of forehead ()
## 9424                                                                                                                                                                                 Hit deer, went down embackment, struck multiple trees, hit head on window at impact
## 9425                                                                                                                                                                                                                              Hit forehead on desk when fainting. ()
## 9426                                                                                                                                                                                                                       Hit front of head on corner of metal shelf ()
## 9427                                                                                                                                                                     Hit head on angle iron holding up piece of door walking from one side to the other side of door
## 9428                                                                                                                                                                                                                           Hit head on bunk railing during search ()
## 9429                                                                                                                                                                            Hit head on ceiling tile frame in drop down ceilindust got in right eye causing redness.
## 9430                                                                                                                                                                                                              Hit head on cement door header while cleaning ac vents
## 9431                                                                                                                                                                                   Hit head on electrical box when stood back up after putting away vaccume cleaner.
## 9432                                                                                                                                                        Hit head on filing cabinet drawer that was open when she raised up from bending down while filing paperwork.
## 9433                                                                                                                                                                                                 Hit head on horizontal bar in elephant stall, biting down on teeth.
## 9434                                                                                                                                                                                           Hit head on metal door jam while getting into van during inmate transport
## 9435                                                                                                                                                                                                                                             Hit head on metal shelf
## 9436                                                                                                                                                                                              Hit head on wooden rail while standing up from hanging object on door.
## 9437                                                                                                                                                                                                                                      Hit her head and scratched leg
## 9438                                                                                                                                                                                                             Hit his head while bending over to work on trap machine
## 9439                                                                                                                                                                                                                              Hit his head while turning off a valve
## 9440                                                                                                                                                                                                                                Hit in eye while breaking up a fight
## 9441                                                                                                                                                                                                                                   Hit in face and kicked on leg. ()
## 9442                                                                                                                                                                                          Hit in face by fist of probationer's step father while doing curfew checks
## 9443                                                                                                                                                                                                                                              Hit in face by patient
## 9444                                                                                                                                                             Hit in face by student - student jumped on me began hitting me about by face. Cut above & below rt eye.
## 9445                                                                                                                                                                                                          Hit in head by another staff. Staff bit employee with hand
## 9446                                                                                                                                                                                                  Hit in head with softball while coaching student softball game. ()
## 9447                                                                                                                                                                                                                                          Hit in mouth by patient ()
## 9448                                                                                                                                                                                                                     Hit in mouth by student while breaking up fight
## 9449                                                                                                                                                                                                                                              Hit in nose by patient
## 9450                                                                                                                                                                                                                                      Hit in right eye by patient ()
## 9451                                                                                                                                                                                                                                   Hit in right temple by patient ()
## 9452                                                                                                                                                                                                                      Hit in the eye with the bristles of a broom ()
## 9453                                                                                                                                                                               Hit in the face by a basketball while observing patients during recreational time. ()
## 9454                                                                                             Hit in the face by a basketball while students were in gym during recreation. Student threw the ballthat struck Mr. Sheppard. Perm restrictions, demand? Set eval? Msa?
## 9455                                                                                                                                                                                                                Hit in the front and back of head during training ()
## 9456                                                                                                                                                                                           Hit in the head 2-3 times when trying to break up fight between patients.
## 9457                                                                                                                                                                                                                                           Hit in the nose by a doll
## 9458                                                                                                                                                                                      Hit left side of head by patient with fist had oldwork related injury left eye
## 9459                                                                                                                                                                                     Hit on head repeatedly with food tray by patient. Patient also pulled her hair.
## 9460                                                                                                                                                                                                                              Hit on left side of face by patient ()
## 9461                                                                                                                            Hit right side of her face on an extended portion of wall in womens bathroom at triangle training center. Did not need medical attention
## 9462                                                                                                                                                                                                                                         Hit self eye w/broom handle
## 9463                                                                                                                                                                                                                                      Hit top of head on food truck.
## 9464                                                                                                                                                                                                       Holding a pt when another pt hit him in the head with a chair
## 9465                                                                 Holding pillow under inmate's head while having multiple seizures, in the process of me standing over him controlling the pillow under his head, the inmate involuntarly blew saliva in my face. ()
## 9466                                                                                                                                                                                              Holding plant material & it slipped out of her hand hitting her in eye
## 9467                                                                                                                                                                                                         Holding pt in Mr, Pt kicked EE in the right side of face ()
## 9468                                                                                                                                                                      Holding sheeps head to assist with sample collect-ion, blood was splattered in inspector face.
## 9469                                                                                                                                                                                                        Holding u-bent tube & tube exploded & gas went into her face
## 9470                                                                                                                                               Home visit w/ client and family in client home. Chair broke landing EE on floor. EE hit back of head w/ part of chair
## 9471                                                                                                                                                     Hooking up water hose to water line and it blew off with lots of pressure of water hitting him in the face/eyes
## 9472                                                                                                                                                                                  Hot bullet casing got caught under her glasses while attending ort on firing range
## 9473                                                                                                                                                                       Hot water from an overhead steam line spewed out and landed on EE's head, neck, shoulder area
## 9474                                                                                                                                                             Housekeeping had just mopped floor. EE slipped andfell and hit cabinet with head and hit knee on floor.
## 9475                                                                                                                       Howard was searching inmate lacy pratt locker as he was checking under his mattress inmate pratt struck him in the lt jaw. Inmate struck him.
## 9476                                                                                                                                                                                                                          Human secretion was thrown into EE's face.
## 9477                                                                                                                                                                                    Hvac was removing ceiling tiles which produced debris-particles blew into lt eye
## 9478                                                                                                                                                                                                          I c & d. The fumes from welding machine was inhaled by EE.
## 9479                                                                                                                                                        I dm(assumed to be diabetes mellitum stated by doctor janice t. Busher 07/04/2002. Supervisor: albert joyner
## 9480                                                                                                                                                            I entered res. Room 301 n pull privacy curtain & the whole rod & curtain fell from ceiling on my head ()
## 9481                                                                                                                                     I have been wheezing all spring since 1/1. New office since July 1, 2012. Suspect mold have mold allergy and symptoms worse. ()
## 9482                                                                                                                                                                                                                                          I mobile luq 1st premolar.
## 9483                                                                     I office. Employee locked the door and when to closed the door realized her keys were on the desk. She turned quickly to stop the door from closing and walked straight into the door frame. ()
## 9484                                                                                                                                       I oftened patient a prm medication to calm him down, he hit me with his rt hand to my lt head, ear, face. He then walked away
## 9485                                                                                                                                                    I proceeded to get up from using toilet and hit top left side of my head on side/corner of paper towel holder ()
## 9486                                                                                                                                                 I rolled back in office chair after installing printer. I stood up quickly and hit my head on a cabinet. It bled ()
## 9487                                                      I told the resident that I will help him as soon as I get done helping another resident. When I stood up from other resident, he was behind the curtain with his hand raised in the air and then he hit me. ()
## 9488                                                                                                                                         I training. While performingthe wrist lock technique with a partner holding a plastic knife, the partner accidently twisted
## 9489                                                                                                                                                                                                            I tripped on the flat sidewalk and fell on the ground ()
## 9490                                                                                                                      I was assisting rn with all my ppe on & turned patient over urine catheter came unplugged & splashed over the shield in my hair into my eye ()
## 9491                                                                                                               I was changing out a valve and didn't know check valve was leaking into system. Removed packing nutvalve stem and ball shot out, hit under right eye.
## 9492                                                                                                                                                  I was cooking mac & cheese in pot., stirring it up and it came back in my face. Some of the mac was on my face. ()
## 9493                                                 I was discarding specimens out of rack when one was stuck, I was twisting and pulling on specimen with force when it dislodged from rack hitting side of bio hazard container and splashing in face & right eye. ()
## 9494                                                                         I was dissolving rock in a hydrofluoric acid and putting acid in container per ehs instructions. At the same time I was running water in hood and didn't know it, but drain was blocked. ()
## 9495                                                                                                                                                                                     I was doing a take down fell and hit my head then my blood pressure went up. ()
## 9496         I was drilling a hole in concrete and the swinging gate was caught by the wind and hit me in the mouth. I was at the student rec center - generator compound. I told tom hailey and went to gove health on 3/7/12. They are going to refer to a dentist. ()
## 9497                                                        I was driving when my left eye began to burn and itch. Within five minutes, it was completely red and the skin around the eye was swollen almost shut. I put in antihistamine drops and continued to work ()
## 9498                                                   I was dumping trash and recycling at the dumpster. I had opened the doors and started to throw trash in when I bumped my head on the open door causing a bruise and small gash on the left side of my forehead ()
## 9499                                                                                         I was feeding in h-pod when I passed cell #6 inmate baldwin squirted me with a unknown liquid that smell like urine, the liquid made contact with my face, shirt, pants. ()
## 9500                                                                                                           I was feeding the resident breakfast when she spit her food in my face and eyes. I went and washed and reported this to the nurse and the charge nurse ()
## 9501                                                                                                                                                                                        I was fixing resident's seat belt and she stuck her finger in my left eye ()
## 9502                                                                           I was folding a mattress in hatteras b block on bed 34 and while turning it, I noticed a 6 inch tear and while looking, something flew in both my eyes. It May have been dirt or dust. ()
## 9503                                                                                                            I was going up the stairs and talking; had a file in one hand; slipped on right foot, fell on left leg in hip area; twisted and fell back bumped head ()
## 9504                                                                                                                                                  I was helping lower a picnic table into a hole. When the table fell into the hole, it hit a board then my head. ()
## 9505                                                                                           I was moving a bag full of pistols and it got hung or caught on shotgun bag. Lost my grip when my hand slipped an I accidentally poked my left eye with my left thumb. ()
## 9506                                                                                                                                 I was operating carmer while inmate was being removed from cell. Inmate was covered in blook and he spit blood into my left eye. ()
## 9507                                                                                                                                           I was pulling off residents pull up and while I was bent over to take it off, resident hit me with fist beside my head ()
## 9508                                                                                                        I was putting cans on the roll out and a can from the top of the roll out fell off while I was bent down putting a can on the bottom hit me side my head. ()
## 9509     I was removing the bromine chemical feed tube to clear a water flow obstruction at the cooling water treatment station. Bromine splashed out of the end of the tube during removal and a small got into my left eye. I immediately used the eyewash station. ()
## 9510                                                                                                                                                    I was removing the handcuff from the inmate in the shower,, then he pulled his hand back and spat in my face. ()
## 9511                                                                         I was running through the rain trying to protect electronic equipment, hit my shoulder and head on telephone box extending from building. Hit head on right side and scratched shoulder. ()
## 9512                                                                                                                                                                         I was seperating a fight between two patients and one of them hit my eye with a closed fist
## 9513                                                                                                                                  I was serving juice during lunch feeding. When I got to an inmate's cell, he threw a milk carton full of urine and feces at me. ()
## 9514                                                                                                                                     I was sorting mail. During this time I scratch my forehead. About five minutes later I realized I had a rash on my forehead. ()
## 9515                                                                                                                                                      I was speaking with a disruptive inmate about placing him back in his cell when the inmate spit in my face. ()
## 9516                                                                                                                                                   I was stripping floors, when I moved the buffer I slipped and fell on the floor hitting my head on the buffer. ()
## 9517                                                                                                                                                               I was talking to inmate and inmate threw a cup of urine in my face getting into my mouth and eyes. ()
## 9518                                  I was the lead firing range instructior and I was working with a student. The hearing protection I was wearing did not fully protect my ears from the muzzle blast of the weapon. My ears now hurt and have a constant ringing. ()
## 9519                                                                                                             I was trying to take the pressure off my legs and missed my wheelchair but my chair slipped out from under me and I fell and landed on my footplate. ()
## 9520                                                                I was walking inmate back to shower. As escorting inmate to his cell when he was put in the cell he turned around and spit on me hitting me in the left cheek and left nostril and on my glasses. ()
## 9521                                                                                                                                                            I was walking to the line-up room for when when anunidentified insect bit or stung my nose and face area
## 9522                                                                                                                                                                                        I went to check vent that appeared loose. The ventfell & hit me on the head.
## 9523                                                                                                                                                                 I went to sit down in a chair rolled back from under me and I fell on my buttock and bumped my head
## 9524                                                                                                                                         I went to sit down in my chair and bumped my chairaway and fell back and hit my head aganist the edge of the desk behind ()
## 9525                                                                                                                                      I went to sit in my chair, chair shot out from under me & I landed on my right lower back & hip &hit my right side of my head.
## 9526                                                                                                                                                                                                                                 I when something blew into her eye.
## 9527                                                                                                              I/EE worked in machine shop early w/glass fibers present in the air. Fibers were on EE's clothing. When leaving shop, EE had fibers on his hat and ble
## 9528                                                                                                                                                                                                                 I/m began assaulting with hands, feet and brooms ()
## 9529                                                                                                                                                                                        I/m playing ball in gym as EE walking hit on the head and neck with bball ()
## 9530                                                                                                                                                         I/m states pot that she sat on upper shelf fell hitting her in front part of her head. Fracture & bruising.
## 9531                                                                                                                                                                                                    I/m threw an unknown substance in face and right side of body ()
## 9532                                                                                                                                                                              I/m threw liquid out of trap door, hitting right side of head, neck, chest, arm, back.
## 9533                                                                                                                                                                                                                                 I/m threw unknown liquid in face ()
## 9534                                                                                                                                                                            I/m was on bus when the guards gun went off & caused permanent hearing loss on left side
## 9535                                                                                                                                                                                 Ice cooler lid fell off shelf and hit EE in the eye. Two abrasions around left eye.
## 9536                                                                                                                                         Ie was at her desk when another employee entered her office, forcefully kissed her, and penetrated her with his fingers. ()
## 9537                                                                                                      Ie was riding in the backseat of a state vehicle when the steel clothing bar fell in transport, striking ie across the bridge of the nose cutting the skin. ()
## 9538                                                                                                                                                                              Ie was walking to her car when she tripped on uneven payment. She fell on her face. ()
## 9539                                                                                                                                                                                                                                            Im threw liquid on EE ()
## 9540                                                                                                                                                                                                                                           Impact from auto accident
## 9541                                                                                                                                                                                    In acute care nursing station eyes began to itch, sting, watering & becoming red
## 9542                                                                                                                                                                               In an attempt to gain control of an inmate, he reached under helmet scratched face ()
## 9543                                                                                                                                                 In breakroom alone & was sitting down went to stand up & foot caught in chair falling hitting back of head on tile.
## 9544                                                                                                                                                                                               In control room felt something in right eye and it began to swell. ()
## 9545                                                                                                                                                                                                              In direct contact with resident who had conjunctivitis
## 9546                                                                                                                       In hall of medical sect., turned to walk down hall, foot hit base of fan in hall, fell over base/hit both knees & hit head on small trash can
## 9547                                                                                                                                                                                       In kitchen overseeing inmates and hot water splashed in corner of left eye ()
## 9548                                                                                                                                                                                                                   In manhole, dust blew from opening into EE's eye.
## 9549                                                                                                                     In moving monitor from self, cord was tangled with meter mail system and the equipment fell on her head while bending to put monitor on a cart.
## 9550                                                                                                                                                                                              In office, hip hit corner of desk, knee gave way and fell into cabinet
## 9551                                                                                                                                                                                                                                    In parking lot & bug flew in ear
## 9552                                                                                                                                                                                  In pool with individual who reached for hand and instead poked staff in the eye ()
## 9553                                                                                                              In process of attempting to redirect patient away from going out ward door, staff was struck by the patient on her left cheek knocking her glasses off
## 9554                                                                                                                           In process of turning inmate on side because he wawas having a seizure & a co worker was moving the shield and it struck him in the face.
## 9555                                                                                                                                                                                        In pursuit of speeding vehicle. Ran off road & struck ditchbank & overturned
## 9556                                                                                                                                                    In restroom and fainted fell on floor hitting his head causing a minor abrasion with minor bleeding back of head
## 9557                                                                                                                                                                                                                    In stock room when I was assaulted by inmate. ()
## 9558                                                                                                                                                                In swimming pool; something got into EE's eye. Seemed to come out but his eye continued to get worse
## 9559                                                                                                                            In the process of taking an intraoral radiation. EE hit her head on the arm of x-ray tube. Wound onforehead--bruising/bleeding/swelling.
## 9560                                                                                                                                                                                              In training ear protection would not property stay on ears and on head
## 9561                                                                                                                                                                          In unarmed self defense, another officer's elbow hit employee in the mouth, cracking teeth
## 9562                                                                                                                                                                                                                             Individual hit employee in the head. ()
## 9563                                                                                                                                                                                    Individual hit me in the head with his left arm on the right side of my head. ()
## 9564                                                                                                                                                                       Individual out of control, client became aggressive, causing EE to fall, struck head on chair
## 9565                                                                                                                                                                                                                               Individual scratched staff on face ()
## 9566                                                                                                                                                                                                Individual threw bowl and it struck staff in face including l eye ()
## 9567                                                                                     Individual was having a behavior and employee placed indiviudal in a hold. Hold was released and individual pushed chair back and swung at employee hitting her on forehead. ()
## 9568                                                                                                                                                                                               Individual was measuring out bleach and it splashed in their eyes. ()
## 9569                                                                                                                                       Individual was upset about something. He was crying and cursing staff. Out of nowhere, individual hit staff in his right eye.
## 9570                                                                                                                                               Inhaled questionable dust from old medical records resulting in bleeding meniscus, headaches and sinus discomfort. ()
## 9571                                                                                                                                                                 Initial training to full exposure of oc pepper spray rubbed his eyes during decobtaminating process
## 9572                                                                              Inj wkr was hiking in line behind students when a branch became hooked on the back of the student directly in front of me, the branch then spring back and hit inj wrk in right eye ()
## 9573                                                                                                                                                                                                   Injecting cleaning solution into pheumatin line and line blew off
## 9574                                                                                                                                                                        Injured by piece of shattered light bulb when an inmate broke it and piece flew into her eye
## 9575                                                                                                                                                                                                                              Injured w/ a baton during use of force
## 9576                                                                                                                                                                                   Injured was getting ice from ice machine & lid came down & hit bridge of nose. ()
## 9577                                                                                                                                                                                                                           Injured while in pepper spray training ()
## 9578                                                                                                                                                                Injuries occurred when inmate slipped his cuffs and got loose, inmate struck EE on left side of head
## 9579                                                                                                                                                                                                               Injury occured during boxing struck by fellow student
## 9580                                                                                                                                                                                                                   Injury occured while trying to restrain an imate.
## 9581                                                                                                                                                                                                         Injury occurred during altercation with inmate probationer.
## 9582                                                                                                                                                                             Injury occurred during pepper spray training. Employees eyes was irritated by spray. ()
## 9583                                                                                                                Injury occurred in the parking lot as she was leaving work, stepped on a pebble, lost her footing and fell down, small chip on bottom tooth, cut lip
## 9584                                                                                                                                Injury occurred over time as a result of EE exposure to continuous loud noise from mechanical room below office. Referred to glenda.
## 9585                                                    Injury occurred when staff was helping to break up a fight in the gym, one of the students accidently hit her when they were swinging at each other, she was struck on her left ear causing her very sharp pain.
## 9586                                                                                                                                                                                                                               Injury to head during boxing training
## 9587                                                                                                                                                                                                               Injury to mouth after being hit with a broom han- dle
## 9588                                                                                                                                                                                     Inmate accidentally sprayed spectracide into EE face and right eye - irritation
## 9589                                                                                                                                                                                                     Inmate accidently splashed some bleach water into EE's left eye
## 9590                                                                                                                                                                                                                                                   Inmate assault ()
## 9591                                                                                                                                                                                                                      Inmate assaulted EE with his fist in lip area.
## 9592                                                                                                                                                                      Inmate assaulted employee by headbutting employee on left side of face just under left eye. ()
## 9593                                                                                                                                                                                Inmate assaulted employee by striking her in the right cheek with a closed left fist
## 9594                                                                                                                                                                        Inmate attacked officer goodwin with a blade object causing a laceration to her left ear. ()
## 9595                                                                                                                                                                                               Inmate attacked officer henderson, hitting him in the facial area. ()
## 9596                                                                                                                                                                     Inmate became argumentative & struk EE in head with closed fist-contusion head/lt hand/lt elbow
## 9597                                                                                                                                        Inmate began hitting sgt. Mcgilberry in nose, neck, mouth(chipped tooth), head, shoulder (left), leg (left) and lower mottom
## 9598                                                                                                                                                                                                                   Inmate blew spit and mucus into both of EE's eyes
## 9599                                                                                                                           Inmate brought lead rod to be checked by him to determine what it was. Stuck head into bag containing rod & sniffed rod. Burning in nose.
## 9600                                                                                                              Inmate buffing floor, object flew from under the buffer machine and hit him in his left eye, spray cleaner also got in his eye causing burning sensati
## 9601                                                                                                                      Inmate came at me with one of his handcuffs on his left hand, and he used the handcuffs as a weapon and he struck me in the foredead (left) ()
## 9602                                                                                                                         Inmate came out for ice and was informed not to come out of room, made remarks to EE and punched EE in left eye and took a fighting stance.
## 9603                                                                                                                                                                                                  Inmate came out of cell and attacked EE, repeatedlystricking face.
## 9604                                                                                                                                                                                                     Inmate came out of cuffs and struck me in the neck and head. ()
## 9605                                                                                                                                          Inmate came out of room, ran down stairs and grabbed EE's hair and scratched her right check. Inmate tried to strangle her
## 9606                                                                                                                                                                                                            Inmate came up and hit EE witha closed fist in the mouth
## 9607                                                                                                                                                                                     Inmate dropped grate. The sound was really loud and right ear began ringing. ()
## 9608                                                                                                                                                    Inmate fox23 jumped on sgt. Thomas tried to stop him then he jumped on her and him, was physically hit with fist
## 9609                                                                                                                                                                                                              Inmate got upset & began pushing finger into EE's face
## 9610                                                                                                                                 Inmate grabbed EE on her buttocks and in between her crotch. Inmate also hit EE in the mouth and head with fist and hand-held radio
## 9611                                                                                            Inmate grabbed me and had me against the wall. While trying to defend myself, I hit my head on the ground and both knees hit the floor. Inmate attempted to choke me. ()
## 9612                                                                                                                                                                                      Inmate head butted officer phillips when he was taking him out of his cell. ()
## 9613                                                                                                                                                                                                         Inmate held trap door open and hit employee in the face. ()
## 9614                                                                                                                                                                                         Inmate hit EE in the face, hitting nose, lt eye, face, and breaking glasses
## 9615                                                                                                                                                                                            Inmate hit EE in the rt side of his head in the temple area 2 or 3 times
## 9616                                                                                                                                                                            Inmate hit EE on the lt side of his face during an altercation outside back kitchen door
## 9617                                                                                                                                                                                         Inmate hit me in the face with a bread rack, got 15 stitches on left eye ()
## 9618                                                                                                                                                                                                Inmate kicked the rec cell door which hit the officer in the face ()
## 9619                                                                                                                                                       Inmate michael dudley hit him in the rt side of of his head then I put my arm up and he hit me on the rt arm.
## 9620                                                                                                                                                                                                                     Inmate pulled officer's head against cell doors
## 9621                                                                                                                                                                                                            Inmate punched EE in the eye and scratched arm and wrist
## 9622                                                                                                                                                                                                                               Inmate punched officer in the face ()
## 9623                                                                                                                                                                                             Inmate rammed into him causing him to bump his lip aganinst a cell door
## 9624                                                                                                                                                                                                         Inmate reached through and hit EE on right side of head. ()
## 9625                                                                                                                                                                                                   Inmate refused to be handcuffed and struck officer in the face ()
## 9626                                                                                                           Inmate refused to be handcuffed hitting me in side of head causing me to fall then inmate got on top of me and kept hitting me until officers arrived. ()
## 9627                                                                                                                                                                   Inmate rushed and assaulted employee when officer price was extracting him from the cell block ()
## 9628                                                                                                                                                Inmate rushed the door and assaulted officer when officer merriman was extracting the inmate from the cell block. ()
## 9629                                                                                                                                                                                               Inmate slapped a walking pass off the desk, hitting EE in the rt eye.
## 9630                                                                                                                                  Inmate spat in EE's face hitting him approximatelyone inch below his right eye while EE was making routine security check of area.
## 9631                                                                                                                                                                                                              Inmate spit at EE hitting him in left cheek, undereye.
## 9632                                                                                                                                                                                                                                     Inmate spit blood in EE's eyes.
## 9633                                                                                                                                                                                           Inmate spit directly into his left eye. EE was checking patient's iv site
## 9634                                                                                                                                                                                                                                         Inmate spit in EE right eye
## 9635                                                                                                                                                                                                                                            Inmate spit in EE's face
## 9636                                                                                                                                                                                                                                           Inmate spit in EE's face.
## 9637                                                                                                                                                                                            Inmate spit in face and eyes when waiting to escort inmate to medical ()
## 9638                                                                                                                                                                                                                                         Inmate spit in his face. ()
## 9639                                                                                                                                                                                                  Inmate spit in officer mcmillian's face getting some in her eye ()
## 9640                                                                                                                                                                                                                                Inmate spit in the officer's face ()
## 9641                                                                                                                                                                                                                                                Inmate spit on EE ()
## 9642                                                                                                                                                                                                 Inmate spit on c/o in the face and some saliva went into his mouth.
## 9643                                                                                                                                                                                                                                           Inmate spit on officer ()
## 9644                                                                                                                                                                           Inmate splashed cup of urine in face causing irritation to clmt's eyes and broken glasses
## 9645                                                                                                                                                                                                                              Inmate stabbed employee in the face ()
## 9646                                                                                                                                                                                                                         Inmate struck EE over the eye with a chair.
## 9647                                                                                                                                        Inmate struck EE twice in the left side of his face with his (inmate's) fist, during a routine call search in inmate's cell.
## 9648                                                                                                                                                                                       Inmate struck EE w/fist over the left eye, causing a laceration/broke glasses
## 9649                                                                                                                                                                                                                             Inmate struck EE with rt hand to lt eye
## 9650                                                                                                                                                                                                                             Inmate struck him on right side of head
## 9651                                                                                                                                                      Inmate struck me in face and I injured my right hand & elbow during take down. Also chipped tooth when hit. ()
## 9652                                                                                                                                           Inmate struck my head & scratched my arm. Hit headon floor when pulling inmate off of his feet. Hit right elbow on floor.
## 9653                                                                                                                                                                   Inmate struck officer in the eye as he was trying to secure the inmate off of another officer. ()
## 9654                                                                                                                                                   Inmate struck officer in the head several times causing him to fall on floor and his head hit the concrete floor.
## 9655                                                                                                                                                                                        Inmate struck officer's face with both hands, while he was being escorted ()
## 9656                                                                                                                                                                                                                           Inmate struck the sergeant in the face ()
## 9657                                                                                                                                                                                                                           Inmate swung and hit EE in the nose/broke
## 9658                                                                                                                                                                                                       Inmate swung his fist at EE striking him in the left eye area
## 9659                                                                                                                                                                                                                     Inmate threw 8 cups of liquid on the officer ()
## 9660                                                                                                                                                                                                                       Inmate threw a black liquid on the officer ()
## 9661                                                                                                                                                                  Inmate threw a cup of unidentified fluid into his face with some getting into eyes. Fluid in eyes.
## 9662                                                                                                                                                                                                                             Inmate threw a liquid on the officer ()
## 9663                                                                                                                                                                                                                   Inmate threw a substance on the officer's face ()
## 9664                                                                                                                                                                          Inmate threw an unknow substance on officer and hit officer across the nose with a tray ()
## 9665                                                                                                                                                                                                 Inmate threw an unknown liquid on the officer in his facial area ()
## 9666                                                                                                                                                                                                              Inmate threw an unknown substance on his upper body ()
## 9667                                                                                                                                                                                                                          Inmate threw bleach in employee's face. ()
## 9668                                                                                                                                                                  Inmate threw liquid on right side of EE's face. Liquid hit right side of her chest, face and legs.
## 9669                                                                                                                                                           Inmate threw unknown liquid in my face & during use of force, wrist was jerked and wrist hit the bars. ()
## 9670                                                                                                                                                                             Inmate threw unknown substance in my eyes before I could take him out of the shower. ()
## 9671                                                                                                            Inmate threw unknown substance in my eyes, mouth, and nose. While trying to block unknown substance I hit my hand right hand on the wall injuring it. ()
## 9672                                                                                                                                                                                                           Inmate threw unknown substance on face and upper body. ()
## 9673                                                                                                                                                                                                                               Inmate threw urine & feces in face ()
## 9674                                                                                                                                                                                              Inmate threw urine and feces at her striking her in the head and face.
## 9675                                                                                                                                                                                     Inmate threw urine and feces on officer in the face in left eye and clothing ()
## 9676                                                                                                                                                                                                                                Inmate threw urine on the officer ()
## 9677                                                                                                                                                                                                                      Inmate threw urine out of trap door onto staff
## 9678                                                                                                                                                                                                                       Inmate through unknown liquid on employee. ()
## 9679                                                                                                                                                                                                                                        Inmate throw food on face ()
## 9680                                                                                                                                                                                                        Inmate walked uo behind me and hit me with a closed fist. ()
## 9681              Inmate was asked to sit at the table that he didn't want to sit at. Inmate was talking trash because I asked him to sit there. Inmate call me a mother fucker and I told him to put his hand behind his back. Inmate swung and hit me in the mouth. ()
## 9682                                                                                                                                                                             Inmate was beating on door & when EE went to talk to him inmate spat in his face & eyes
## 9683                                                                                                                                                                                                               Inmate was cleaning tv. Cleaner got in EE's right eye
## 9684                                                                                                                                                                                             Inmate was cutting top of formica and a chip flew up into inmate's eye.
## 9685                                                                                                                                                                                     Inmate was helping clear debris when he was struck rt side of head by tree limb
## 9686                                                                                                                                                                                                      Inmate was in rec cage and reached through bars and hit me. ()
## 9687                                                                                                Inmate was leaving court house for probation violation. Inmate was stopped at a stop light another vehicle struck him head on causing unknown injury to his head. ()
## 9688                                                                                                                    Inmate was on the construction crew. He was splatted in the face and on r shoulder with grout that was being poured. Has lost sight in r eye. ()
## 9689                                                                                                                                                                     Inmate was putting a shovel into the tool box. Then he turned around and ran into an open door.
## 9690                                                                                                                     Inmate was resisting application of cuffs, c/o reidreceived back wound & facial scratch, lower lip swollen & red area on left forehead & temple
## 9691                                                                                                                                                   Inmate was resisting officer in the sergeant's officer. While assisting staff I was head butted by the inmate. ()
## 9692                                                                                                                                                                                               Inmate was secured and began scratching me on my face and underarm ()
## 9693                                                                                                                                                                                           Inmate was speaking and sprayed face with saliva. Saliva entered left eye
## 9694                                                                                                                                     Inmate was trying to free herself from hold and while struggling, inmate rared back and her head struck EE's mouth, busting lip
## 9695                                                                                                                                                                                                                Inmate was upset and slapped EE in left side of face
## 9696                                                                                                                                     Inmate washing his hands and she walked by for count, flickering his finger with wate on hands and it splahed into right eye ()
## 9697                                                                                                                                                                          Inmate welder was grinding a steel when a piece flew about 20' and him in the right eye ()
## 9698                                                                                                                                                                                                               Inmate yelling at officer and spit got into right eye
## 9699                                                                                                                                                                                    Inmate's head smashed EE's hand against cell door while placing handcuffs on him
## 9700                                                                                                                                                                                                                                            Insect bite his left ear
## 9701                                                                                                                                                                                                                                             Insect bite on his head
## 9702                                                                                                                                                                                                                               Insect bite to left eye and scratched
## 9703                                                                                                                                                                                                                                   Insect bite to lip (left side) ()
## 9704                                                                                                                                                                                                   Insect flew in left eye, open the door to push trash cart outside
## 9705                                                                                                                                                                                                                                                 Insect got into ear
## 9706                                                                                                                                                                                                                           Insect sting or bite underneath lt eye ()
## 9707                                                                                                                                                                                                      Insecticide leaked from applicator and blew into EE's left eye
## 9708                                                                                                      Inside chemical hood, the reservoir popped off of the chromatography column and broke splashing chcl3 onto the right side of my face and into my right eye. ()
## 9709                                                                                                                                   Inspecting building. Instructing inmates to assist in cleaning floors. Inmate flipped table & started throwing punches at sgt. ()
## 9710                                                                                                                                                                                                       Inspecting light fixture, transformer fell and hit EE in head
## 9711                                                                                                                                                                               Inspecting motor vehicle. Air escaped through brake chamber, hitting EE in the rt ear
## 9712                                                                                                                                                      Inspecting the area on a screened in porch checking structure when a 4x4 x6' beam fell on theback of his head.
## 9713                                                                                                                                                                          Inspecting weight bench bent over to look at a bench and hit head on branch press head bar
## 9714                                                                                                                                                                                                      Installed sliding keyboard holder, wood chip fell in right eye
## 9715                                                                                                                                                                                                           Installing hose at owen's field house & was bit by spider
## 9716                                                                                                                                                                Installing ptrap and 45 degree elbow when water & possible drain cleaner hit him in the in right eye
## 9717                                                                                                                                                                               Installing sheetrock (overhead)-sealing with fire caulk-caulk dripped into r. Eye. ()
## 9718                                                                                                                                                                                  Installing transmission in vehicle & drilling a stud off & metal blew in right eye
## 9719                                                                                                                                                                      Instructing an inmate where to clean, metal pot fell off rack, striking EE in head/facial area
## 9720                                                                                                                                                Instructing ice climbing clinic for students. Struck above left eye with falling ice. Laceration on left eyebrow. ()
## 9721                                                                                                                                             Instructing inmates how to clean floors in dorm. Inmate was swinging at another officer got struck in face by inmate ()
## 9722                                                                                                                                                             Instructor fell on sidewalk when walking to his class. It was raining at the time the accident occured.
## 9723                                                                                                                                                                              Instructor walked to back of class and tripped over elevated cord attached to a fan ()
## 9724                                         Instructor was acting as patient for students to practice a patient transfer. Because students had not placed a pillow up against the headboard, when the instructor was moved on the bed her head struck the headboard. ()
## 9725                                                                                                                                                                              Instructor was breaking up a scuffle between two students and was accidentally kicked.
## 9726                                                                                                                        Instructor was coming toward her in training & shewas swinging baton left & rgt to avoid instructor posing as inmate & hit back of her head.
## 9727                                                                                                                 Instructor was pulling out a sani-dex wipe to clean door handle comp ed students had been touching. Liquid from container splashed in right eye. ()
## 9728                                                                                                                              Instructor was welding in welding shop when piece of metal came in under his welding helmet and safety glasses and entered his eye. ()
## 9729                                                                                                                                                                 Interacting w/client at pool, tripped over clientsfeet & fell hitting end of nose on bottom of pool
## 9730                                                                                                                                                                                                                 Interacting with client, was hit on top of head. ()
## 9731                                                                                                                                                                                                         Intervened between 2 patients, patient accidently hit EE ()
## 9732                                                                                                                                                                                                                                  Intervened juveniles from fighting
## 9733                                                                                                                                                                                                             Investigating collission, small insect flew into lt eye
## 9734                                                                                                                                                                                         Involved in a physical confrontation with another officer. Injured left eye
## 9735                                                                                                                                           Involved in an intervention when patient jumped him, hitting right side of head several times and injured rightr knee. ()
## 9736                                                                                                                                                                                                    Involved in code 1000 in dining hall fell on floor and hit head.
## 9737                                                                                                                                         Involved in inmate altercation. Ofc was hit by I/m when I/m got out of restraints and hit ofc in lip. Lower lip laceration.
## 9738                                                                                                                                             Involved in pert shakedown-scotland corr. Inst.. Placing inmate in holding cell; inmate turned and spit in his eyes. ()
## 9739                                                                                                                                        Involved in use of force on inmate when pepper sprayed inmate in attempt to get inmate under control. Mace got into his eyes
## 9740                                                                                                                     Involved in use of force, soucier was escorting I/mback to unit when I/m became agitated & assaulted him striking him many times in head & face
## 9741                                                                                                                                                                                                               Irrate inmate sprayed staff with fire extinguisher ()
## 9742                                                                                                                                                                                               Irrate inmate sprayed staff with fire extinguisher during assault. ()
## 9743                                                                                                                        Irrigating a field of tree seeds. A joint in pipescame loose. When trying to reconnect pipes, EE was hit in head above left temple by a pipe
## 9744                                                                                                                                                                                                   Irritated right eye, shredding cd's small piece flew in right eye
## 9745                                                                                                                                                                                    Irritation and redness in left eye-painting handrails, trash blew into left eye.
## 9746                                                                                      Items in the upper cabinet of the supply file cabinet fell, knocking off the EE's glassess and injuring the upper right side of the EE's face and cheek near her right eye. ()
## 9747                                                                                                                                                           Iw & 3 other staff were assaulted by 4 juveniles; 2juveniles beat & kicked iw about the head & face area.
## 9748                                                                                                                  Iw May have a broken nose; and iw states that he has a large amount of active bleeding coming from his nose, that he has not been able to stop. ()
## 9749                                                             Iw noticed a painful, red, and swollen area on her chin. By the following evening the injury had increased in size to become a large swollen and painful area stretching from her chin to her cheek. ()
## 9750                                                                                                                                                                                                          Iw opened juvenile's door to give him his supper -juvenile
## 9751                                                                                                                                                                          Iw reported she was counseling a juvenile, the juvenile accidently spit in iw right eye ()
## 9752                                                                                                                                                                                                                Iw reported that a branch scratched her left eye. ()
## 9753                                                                                                                                                                   Iw reported that while she was walking through the door it swung back and struck her left eye. ()
## 9754                                                                                                                                                                 Iw slipped on wet floor & struck the back of her hhead & lt side on the ledge of a shower enterance
## 9755                                                                                                                                                                           Iw stated he ws hit in the right jaw area & scratched on the same location by juvenile ()
## 9756                                                                                                                                          Iw states he was moving some brush and he picked up some poison ivy. Has a rash under left nostril and under right eye. ()
## 9757                                                                                  Iw states that he was walking in the woods; and came across a bushy area; and one of the bush limbs flew back and hit iw in the left eye, leaving particle in the iw's left eye ()
## 9758                     Iw states that yesterday at work she had sudden pain and felt like something was in her right eye. Later in the day her left eye also started hurting. Iw is not sure if it could have been from opening mail or something in the file room. ()
## 9759                                                                                                                                                           Iw tied up a ferry boat, then he stood up fell backwards hitting his head on a ramp causing laceration ()
## 9760                                                                                                                                                                                           Iw tripped over a computer cord & hit her head on the side of a credensa.
## 9761                                                                      Iw turned around in her chair to get something out of the bottom drawer and struck her head on the corner of the open file cabinet drawer causing a contusion to her face, scalp, and neck. ()
## 9762                                                                                                                                                                                                Iw was hit in left temple while restraining out of control juvenile.
## 9763                                                                                                                                                                                                                    Iw was hit in on right side of head by upset juv
## 9764                                                                                                                                                         Iw was looking for some spare theater seating in a storage area when he was apparently bit by an insect. ()
## 9765                                                                                                                                    Iw was monitoring students in the gym during rec; was hit in the head with the basketball - sudden pain & dizziness occurred. ()
## 9766                                                                                                                                                      Iw was moving plants at the greenhouse at mason farm. I backed up and hit my left temple on a metal support ()
## 9767                                                                                                               Iw was plunging a sink in central drive dorm when liquid squirted up from the drain and hit his left eye. Iw's eye is now red, irritated and burning.
## 9768                                  Iw was standing outside of the gym. Talking to another employee and was about to clock out when another employee pushed open the door and hit the back of her head very hard. Iw developed pain to her neck, head and forehead. ()
## 9769          Iw was struck, closed fist, in her left eye by an aggressive juvenile. She was also slammed up against the bathroom wall - iw was trying to restrint this juvenile by using oc spray. Iw had bruised & swollen left cheek, cut on inside of left cheek, ()
## 9770                                                                                                                                                                                                                    Iw was stung by a bee on the right lower jaw. ()
## 9771                                                                                                                                               Iw was walking back to her car tripped over a speed bump and fell to he ground striking her teeth against the ground.
## 9772                  Iw's supervisor called in to report injury to iw, due to motor vehicle crash. Iw was able to take phone and relay that he has left knee and nose injury and is not sure of other injuries at this time, as he is still being treated at the er. ()
## 9773                                                         James was assisting with the loading of steel coils into rail cars. He secured one chain then the additional chain swung around from behind and struck him in the head. He was wearing all required ppe. ()
## 9774                                                                                                               Janitor was pressure washing caustic soda bat and tip was off. Sprayed caustic soda into my eyes and face. Scarring my eye and surrounding nerves. ()
## 9775                                                                                                                                                                                                       Japanese beatle flew in ear while outside on break. Left ear.
## 9776                                         Joshua was walking by the construction site door located by the office desk when it was open, dust, debris flew into his face. He was doing his rounds when the eye started to bother him. Right eye scratched by debris ()
## 9777                                                                                                                                                                                                     Jumped down from loading dock - fell - hit head and shoulder ()
## 9778                               Just finished with a drug test. Felt a drop of water on my mouth and thought it came from the ceiling, but no vent. The probationer had a black and mild cigar with a tip on it. He picked it up as I felt the liquid on my mouth. ()
## 9779                                                                                                                                                                        Juveniel rushed at EE, pushed into book shelf & atthe same time punching in the face sx 5/19
## 9780                                                                                                                                                                                                                      Juvenile assaulted EE with a metal flashlight.
## 9781                                                                                                                                                                Juvenile attempted to escape, assaulted EE by punching him in head, face and threw him on the ground
## 9782                                                     Juvenile attempted to run from secure custody while being evaluated at the hospital. EE secured juvenile by right arm. Juvenile turned and assaulted EE by punching him with a closed fist between the eyes. ()
## 9783   Juvenile became irate... Juvenile running around the dayroom turning tables... Was able to catch the juvenile and he threw several punches and a couple hit me on my right eye area and along the bridge of my nose... I noticed swelling around right eye & nose
## 9784                                                           Juvenile came out of his waist chains & attemted to escape; EE moved in to restrain juvenile&was hit on the right side of the face/jaw area & head with the lock from the restraints. Head and eye injury
## 9785                                                                                                                                                                                                                   Juvenile hit EE- pushed her against wall-hit head
## 9786                                                                                                                                       Juvenile injuried another juvenile, EE was trying to help injuried juvenile, when she was struck on the left side of her head
## 9787                                                                                                                                                                                      Juvenile punched employee in the face breaking his glasses both frame and lens
## 9788                                                  Juvenile was damaging property, when employee tried to stop her. Juvenilve pushed employee backwards onto a toilet and started swing and hit the employee on the face three times and directly in the left eye. ()
## 9789                                                                                                              Juvenile was out of control & EE went to exit the room and juvenile preveted the door from closing &threatened EE. Juvenile then struck EE in the chin
## 9790                                                                                                                                                                                                                                    Kicked by client. Bruise to jaw.
## 9791                                                                                                                                                                                                                                               Kicked by pt in r ear
## 9792                                                                                                                                                                                                                         Kicked in chin by resident. Bruise to face.
## 9793                                                                                                                                                                                                                    Kicked in mouth by a patient during a restraint.
## 9794                                                                                                                                                                           Kneeling cleaning tubes; EE stood up and injured head on a metal object attached to wall.
## 9795                                                                                                                                     Kneeling over working on water line, stood up and passed out. Hit his face on the ground, breaking glasses and cutting eye area
## 9796                                                                                                                   Knight was conducting a weapon when another trainilifted his head quickly and hit knight's lower jawcausing mouth quickly shut and tooth to chip.
## 9797                                                                                                                                                Knocked to pavement while attempting to break up afight between two students; contusion to back of head and rt elbow
## 9798                                                                                                                                                                                                                                                    Knot on forehead
## 9799                                                                                                                                                                         Kwent outside to turn on compressor and when opening door wind blew something in his eye ()
## 9800                                                                                                                                                                                                          L eye.... Working on jobsite at keenan setting upscafoling
## 9801                                                                                                                                    L side of forehead was itching. Used back of r hand to scratch, velcro strap on his r coat sleevejammed straight into his l eye.
## 9802                                                                                                                           Laceration above left eye; entered dayroom trippedover phone cord, fell, hit head on corner of brickwall, chipped tooth, broke eyeglasses
## 9803                                                                                                                                                                                                                                        Laceration on bridge of nose
## 9804                                                                                                                                                                                                     Laceration on forehead from offender while attempting an arrest
## 9805                                                                                                                                                                                                  Laceration on scalp after attempted to raise window for inspection
## 9806                                                                                                                                                                                                                                     Laceration on scalp/hairline ()
## 9807                                                                                                                                                                                          Laceration to head, walking from class, EE could not see, slipped and fell
## 9808                                                                                                                                                                                 Laid box on dolly causing the dolly to fling forward and hit her in the forehead ()
## 9809                                                                                                                                                                                                        Laminating (paper fish) flipped to fold--hit EE in left eye.
## 9810                                                                                                                                                                                                                    Lancing cyst and was exposed to bodily fluids ()
## 9811                                                                                                                                                                                      Large, plastic barrel fell from top of fume hood and hit me on the top of head
## 9812       Lco jernigtan stated that before going through the metal detector he took off his boots because they are steel toed. When he put his boots back on he lost his balance and fell on the floor, hitting his head, hurting his right backside and left wrist. ()
## 9813                                                                                                                                                                                             Leaned down to cut something of shelf and hit eye on shelf. Eye injury.
## 9814                                                                                                                                                                        Leaned down to move paints from floor struck head on fire hose valve as she tilted head back
## 9815                                                                                                                                                                                                                          Leaned onto branch and it poked eye/cornea
## 9816                                                                                                                                                                     Leaned over to put notebooks on bottom shelf, hit edge with my mouth, small cut on upper lip ()
## 9817                                                                                       Leaning back in chair in a proper manner and chair went out from under me, causing me to fall and hit my head on a wooden gun rack and hitting my left elbow on the floor. ()
## 9818                                                                                                                                                      Leaning down to inspect vehicle with mirror, stoodup and struck 2x6 board that was sticking out from the truck
## 9819                                                                                                                                                                                                                  Leaning over & then standing up hit head on locker
## 9820                                                                                                                                                                   Leaning over client to get blood work, client was talking and saliva went into EE's right eye. ()
## 9821                                                                                                                                                 Leaning over in chair to pick up something from floor - chair tipped sideways - hit head on table and fell on floor
## 9822                                                                                                                                                                  Leaning over mannequin giving manual cpr chest compressions-- injured due to repetitive motions ()
## 9823                                                                                                                       Leaving building on campus, did not see uneven surfance on sidewalk, caught toe of shoe and tripped, falling forward on nose, teeth and hands
## 9824                                                                                                                                                Leaving defendant's home returning to office when employee rear ended car stopped at a fully emitting green light ()
## 9825                                                                                                                                                                   Leaving job site, stepped into van, cranked auto & object flew into left eye, causing an abrasion
## 9826                                                                                Leaving office room 363 and tripped over some type something but not sure what at the entrance of her office hitting her right eye and face on the lower part of the office door. ()
## 9827                                                                                                                                                                                                           Leaving out of office and fell and hit her head o n desk.
## 9828                                                                                                                                                                                                        Leaving post when the driver was coming down it and hit head
## 9829                                                                                                                                          Leaving the cafeteria & slipped & fell on wet floor. Fell on left side & hit head on wall. Left hip/arm/hand/wrist & head.
## 9830                                                                                                                                                              Leaving the mail service center when the roll-up loading dock door came down & hit the top of EE head.
## 9831                                                                                                                                  Leaving work during rainstorm. Stepped on rock in parking lot. Lost traction & fell forward on knees& hands. Hit mouth on pavement
## 9832                                                                                                                                                 Leaving workshop with client walking in front of EE; client headbutted EE with the back of her head on left eye. ()
## 9833                                                                                                                                                                                                                                    Left arm numb, neck, chest, head
## 9834                                                                                                                                                                                                                               Left eye contusion with surgery in ga
## 9835                                                                                                                                                           Left eye started swelling. I was outside with kidsplaying and when came inside eye red and began to itch.
## 9836                                                                                                                                                                  Left handle on machine in up position. Someone bumped machine and handle dropped hitting her head.
## 9837                                                                                    Left the office going to the restroom; started to feel dizzy and walked pass the restroom door. Turned quickly and ran into the wall. Loss her balance and fell to the floor. ()
## 9838                                                                                                                                                                                            Lense in welding helmet malfunctioned causing welding burns to both eyes
## 9839                                                                                                                                                                                                              Lesion/infection on nose-emp had contact w/MRSA client
## 9840                                                                                                                                                                Letting down wheelchair ramp on van, hand slipped and metal ramp came down on right side of head. ()
## 9841                                                                                                                                                             Lifted some emt conduit to his shoulder, striking on his teeth. Standing behind person when it occurred
## 9842                                                                                                                                                      Lifting a box from a shelf over her head. Lost control of the box. A corner of the box hit her inthe left eye.
## 9843                                                                                                                                                                                                                     Lifting a metal fileing shelf - injured rt head
## 9844                                                                                                                                                           Lifting beside commode over equipment in corner of room. Lid of commode hit EE on right side of forehead.
## 9845                                                                                                                                                                                                                                     Lifting dog-bitten when lifting
## 9846                                                                                                                          Lifting tailgate on mower trailer, gritting his teeth together while lifting. When pulled his cigar out of mouth. Piece of tooth was in it
## 9847                                                                                                                                                                                        Light fixture fell from ceiling and struck me on head, jarring my neck/back.
## 9848                                                                                                                                         Light tube fell & broke by coworker, helping to clean up, moved objects to higher shelf overhead got glass fragments in eye
## 9849                                                                                                                                                                  Line popped off chromatography column and sprayed her face and right eye with sodium hydroxide. ()
## 9850                                                                                                                                                      Liquid from a used nebulizer set up splashed in EE's rt eye when EE attempted to remove setup fromthe machine.
## 9851                                                                                                                                                                                                                      Liquid from an injection splashed in right eye
## 9852                                                                                                                                                                                                 Liquid from the bottle that EE was carrying splashed into right eye
## 9853                                                                                                                                                                                                           Liquid nitrogen drop exploded and went into EE's left eye
## 9854                                                                                                                                                                          Liquid splashed in eye when pressure in vein became too much while doing surgery on a rat.
## 9855                                                                                                                                                            Lisa was walking and suddenly felt dizzy and blacked out. When she was asked if tripped, she said no. ()
## 9856                                                                                                                 Listening to inmate, stopped work and looked up at the inmate and he accidentally spit into EE's rt eye causing blurred vision for about one minute
## 9857                                                                                                                               Live burn or demo class site, was ventilating window, glass broke, broken glass flew into right eye, cutting eyelid & scraping cornea
## 9858                                                                                                                Loaded an aerator on a trailer, was putting up the ramp, it got caught in a bind, when he freed it, it stuck him in the ear, causing a laceration ()
## 9859                                                                                                                                                                                                  Loading boxes into van at receiving and stores struck head on door
## 9860                                                                                                                                                                                               Loading boxes onto the truck and hit nose on center ladder support ()
## 9861                                                                                                                                                                                Loading equipment on hand truck and it flew up into face hitting EE in the forehead.
## 9862                                                                                                                 Loading mail in her car at the post office & felt a pull in her lower back & burning above shoulder & heard a pop & had headache above lt eye & ear
## 9863                                                                                                                                                                                                          Loading trailer w/brush & wast. Right eye became irritated
## 9864                                                                                                                                          Location: 0521 wake /// injury: chin, (l) knee & (l) hand. /// physician: Dr. Allen mask /// hospital: raleigh urgent care
## 9865                                                                                                                 Location: 0540 richmond /// injury: brain stem, contusions and bruises- eye & brain /// physician: Dr. Michael shupeck /// hospital: moore regional
## 9866                                                                                                                   Location: 3011 div. 1 camden /// injury: pain in temple, loss of vision. /// physician: emergency room physician /// hospital: albemarle hospital
## 9867                                                                                                                        Location: 3022 div 2 craven /// injury: irritation to both eyes caused by exposure to dust. /// physician: Dr. John scibal /// hospital: n/a
## 9868                                                                                                                                       Location: 3023 lenoir /// injury: cut above the right eye. /// physician: Dr. Bart williams /// hospital: doctors urgent care
## 9869                                                                                                                              Location: 3028 div. 2 craven /// injury: head concusion. /// physician: Dr. Martin degraw /// hospital: craven regional medical center
## 9870                                                                                                                            Location: 3033 brunswick /// injury: superficial injury to cornia of the left eye. /// physician: Dr. J. Mark saunders /// hospital: n/a
## 9871                                                                                         Location: 3041 halifax /// injury: foreign object in (r) eye, tore corner white area in eye. /// physician: Dr. R. E. Frazier /// hospital: halifax regional medical center
## 9872                                                                                                                                                                                                                   Location: 3042-32(div. 4) /// injury: mva - death
## 9873                                                                                                                                                  Location: 3052 person /// injury: (l) eye, trash or dust in eye. /// physician: Dr. Lavelle-sams /// hospital: n/a
## 9874                                                                                                                                                              Location: 3052 person /// injury: bottom lip, bruised. /// physician: Dr. Steve long /// hospital: n/a
## 9875                                                                                                                         Location: 3053 franklin /// injury: laceration of the cornea to the left eye. /// physician: Dr. B. Boliek /// hospital: raleigh eye center
## 9876                                                                                                                                   Location: 3053 franklin /// injury: laceration to the scalp. /// physician: Dr. L. A. Parker /// hospital: coastal medical center
## 9877                                                                                                                  Location: 3058 div. 5 wake /// injury: right temple 1/4 piece of glass removed. /// physician: Dr. Blackwell /// hospital: blue ridge primary care
## 9878                                                                                                                                 Location: 3071 div. 7 orange /// injury: debris in the right eye. /// physician: Dr. K. Trotter /// hospital: orange family medical
## 9879                                                                                                 Location: 3072 div. 7 guilford /// injury: left eye red from possible wood chips. /// physician: battleground family practice /// hospital: southeastern eye center
## 9880                                                                                                                   Location: 3072 guilford /// injury: head injury, abrasions on bridge of nose. /// physician: Dr. Karen richter /// hospital: jamestown emergicare
## 9881                                                                                                                          Location: 3073 div. 7 rockingham /// injury: left eye has iritis & corneal infiltrater. /// physician: Dr. W. Lee turner /// hospital: n/a
## 9882                                                                                                                                               Location: 3081 div. 8 chatham /// injury: abrasion to the left eye. /// physician: n/a /// hospital: chatham hospital
## 9883                                                                                                                                                            Location: 3082 lee /// injury: gash on top of head. /// physician: doctors urgent care /// hospital: n/a
## 9884                                                                                                              Location: 3083 richmond /// injury: (l) side of forehead cut requiring 4 stitches. /// physician: Dr. Mcqueen /// hospital: richmond memorial hospital
## 9885                                                                                                                                                                    Location: 3103 union /// injury: (l) eye. /// physician: union family practice /// hospital: n/a
## 9886                                                                                                                             Location: 3121 cleveland /// injury: corneal abrasion to the left eye. /// physician: Dr. Thomas bailey /// hospital: shelby eye center
## 9887                                                                                                                                                                       Location: 3121 gaston /// injury: (l) eye. /// physician: shelby eye center /// hospital: n/a
## 9888                                                                                                                                             Location: 3132 buncombe /// injury: abrasion on (l) eyeball. /// physician: n/a /// hospital: memorial mission hospital
## 9889                                                                                                                   Location: 3141 henderson /// injury: small cut on the nose. /// physician: Dr. David c. Trott /// hospital: park ridge occupational health center
## 9890                                                                                                          Location: 3148 henderson /// injury: laceration to middle of forehead requiring stitches. /// physician: Dr. Trott /// hospital: occupational health dept.
## 9891                                                                                                                                 Location: 3166 /// injury: three foreign particles in the (l) eye lid. /// physician: Dr. J. Riddick /// hospital: dare vision care
## 9892                                                                                                                                      Location: 3166 dare /// injury: tendonitisis - right elbow. /// physician: Dr. W. Holton /// hospital: dare medical associates
## 9893                                                                                                                                                                     Location: 3381 cumberland /// injury: lips & mouth - rash. /// physician: n/a /// hospital: n/a
## 9894                                                                                     Location: 3441 bertie /// injury: severe gash over the (l) eye, bruised forehead. /// physician: Dr. Fred j. Saunders /// hospital: roanoke-chowan hospital 02/01/2000 11:02 am
## 9895                                                                                                                                      Location: 3445 union /// injury: lacerations & cuts on upper lip. /// physician: n/a /// hospital: romed occupational medicine
## 9896                                                                                                                Location: 3446 yadkin /// injury: slag in the (r) eye. /// physician: Dr. B. Porter /// hospital: hugh chatham memorial hospital 02/01/2000 01:00 pm
## 9897                                                                                                                                                                                 Location: dmv duplin /// injury: employee died /// physician: n/a /// hospital: n/a
## 9898                                          Location: wake county - division 5 /// injury: left eye bruised and lacerated /// physician: swann 3012 falstaff rd raleigh nc 27610 /// hospital: rex hospital lake boone trail raleigh nc 10/04/2004 09:06 am (kbarefoo)
## 9899                                                                                                                                                                                                Locking down for count I/m punched EE and slammed EE to the floor ()
## 9900                                                                                                                                                               Locking down inmates for count. Inmate refused to comply, rushed at me and punched me in the head. ()
## 9901                                                                                                 Logging into computer, pick up the remote to turn on the overhead projector and came up to quick and hit the corner of the tv stand. Head started to drip blood. ()
## 9902                                                                                                                                                                   Long exposure to loud noise level w/o adequate protection while flying airplanes for the employer
## 9903                                                                                                                                          Long-term exposure to possible airborne contaminants on bacteria at work combined with eye strain due to long-term pc use.
## 9904       Longline sampling- small hydraulic driven reel mainline being fed onto reel became snagged & reel rotated unexpectedly & spring arm & plastic block contacted stephen in the forehead & across the bridge of his nose. Prescription glasses lost in water. ()
## 9905                                                                                                                                                                                           Lookin for court date in file and flipped paper over adn cut eye w/ paper
## 9906                                                                                                                                                                          Looking for consumer. Consumer hit her in back & when turned around hit her w/hand on nose
## 9907                                                                                                                                                                                             Looking for contraband in the flower bed with my head down hit head. ()
## 9908                                                                                                                                                                                  Looking for file and was bent down; when stood up head hit corner of a cabinet. ()
## 9909                                                                                                                                                                                   Loose contactor caused electrical arc in panel, cause burns to employee's cornea.
## 9910                                                                                                                                                                                                            Loose pilot box fell off and hit her on the right temple
## 9911                                                                                                                                                          Loss of consciousness occurred after eating diinner following a long day of work (see additional notes) ()
## 9912                                                                                                                                                                                                                            Lost footing. Fell against vertical post
## 9913                                                                                                                                                                                                               Lost her balance hitting area above lip on left side.
## 9914                                                                                                                                                                                    Lowering lift when when hydraulic hose burst and sprayed fluid into his face. ()
## 9915                                                                                                                                                       Lt eye became irritated while pruning in the pavil on at the zoo. Several trees/plants in pavillion are toxic
## 9916                                                                                                                                         Luis was weedeating the grass along side of the exit drive when some debris entered his left eye anc cutting his eyelid. ()
## 9917                                                                                                                                                                                                                         Magnet fell from top of door onto EE's head
## 9918                                                                                                                                                                                               Mail passing in h pod, giving inmate in h1 a roll of toliet tissue ()
## 9919            Maintaining control of inmate's ankles--employee stated she was kicked in the right leg, but no injury to the leg that needed medical attention. Toxic material exposure--inmate spat in employee's face where she had an open cut on her left cheek. ()
## 9920                                                                                                                                     Maintenance personnel was changing a light bulb. The bulb popped and shattered glass pieces onto ashley and in her left eye. ()
## 9921                                                                                                                                           Maintence left door open & patient went in & hid under air conditioner. EE hit her head on unit trying to get patient out
## 9922                                                                                                                            Making a fixative solution and a drop of solution got in her eye. Went to wash it while I called to see where she could go for treatment
## 9923                                                                                                                                                                                                       Making a nail & piece of metal flew up & hit EE in right eye.
## 9924                                                                                                                                                       Making facility rounds. Slipped on wet steps. Fell onto steps cut to lower lip and reported cracked teeth. ()
## 9925                                                                                       Making home contact, heard a dog bark, turned and saw dog running towards him. Turned and started to run to state vehicle. Fell and something fell in eye and twisted knee ()
## 9926                                                                                                                                                                               Making rounds and started running to respond to an emergency and fell and hit face ()
## 9927                                                                                                                                                                                 Making rounds in l-seg checking cells. Inmate came up and spit twice in my eyes. ()
## 9928                                                                                                                                                                           Making rounds in segregation when an inmate threw an unknown liquid substance in his face
## 9929                                                                                                                                                                               Making rounds in the e dorm of moore 2 and water from the shower splashed in her eye.
## 9930                                                                                                                                                    Making rounds in the pods completing the dc-141s, an inmate sprayed him in the face with an unknown substance ()
## 9931                                                                                                                                                                   Making rounds inmate swung on him as he went into a cell search and attempted to handcuff him. ()
## 9932                                                                                                                                                                                             Making rounds on yard and started running to respond to an emergency ()
## 9933                                                                                                                                                                                                    Making rounds when inmate threw feces in face & eyes, on neck ()
## 9934                                                                                                                                                                                                          Making rounds, walked toward fan, something blew in eye ()
## 9935                                                                                                                                                                      Making security check of perimeter fence of yard gust of wind blew dirt & debris into his eyes
## 9936                                                                                                                                                         Making security checks on campus. Windy conditions blew some type of trash in eye. Corneal abrasion rt eye.
## 9937                                                                                                                                                                                                                    Making steps for rail car & something got in eye
## 9938                                                                                                                                                                                                                   Making turn when front end hit by oncoming car ()
## 9939                                                                                                                                          Making up bed, went to put sheet on bed. Sheet hitmobil that is hanging over bed, mobil swung back hitting EE in right eye
## 9940                                                                                                                                                                                                                          Many years of tasks of repetitive motions.
## 9941                                                                                                                             Marking location of property line when he dropped a roll of tape, picked tape up and hit his head ona rusty tin roof of a out building.
## 9942                                                                                                                                                                               Measuring kitchen for appliance installation. Checking undo sick for power outlet. ()
## 9943                                                                                                                                                                                      Men were welding & EE got too close to the weldingsparks, eyes started hurting
## 9944                                                                                                                                                                                                                                     Mental/mental psychiatric claim
## 9945                                                                                                                                                                Metal object fell off of bookcase striking employee's head - bookcase was bumped by employee's chair
## 9946                                                                                                                                                                                                                                         Metal object hit bottom lip
## 9947                                                                                                                                                                                                                       Metal paper punch slid and hit EE in the head
## 9948                                                                                                                                                     Metal shaving blew into EE's eye when another student was using airhose to blow off a project he was working on
## 9949                                                                                                                                                                                                                  Metal shaving in l eye while drilling hole in wall
## 9950                                                                                                                                                                                                   Metal shelving fell on her work station. Hearing loss in left ear
## 9951                                                                                                                                                                                                          Metal silver flew in left eye while cleaning mini card. ()
## 9952                                                                                                                                                                                                                                     Metal stud fell and cut nose ()
## 9953                                                                                                                          Metal toolbox used for emergency box, fell from top of chart rack on to my head while I was getting charts from 3rd shelf of chart rack ()
## 9954                                                                                                                                                                                              Mi-EE was cleaning the stairs felt and cut her lip and loose one tooth
## 9955                                                                                                                                                                        Mi/ EE was unplugging electrical plug from extension cord when the cord hit him in the mouth
## 9956                                                                                                                                                                                Mi/EE was cleaning mens room when the mirror fell of the wall and hit EE on the head
## 9957                                                                                                                                   Mi/EE was demonstrating techinques to one of the team members when he was struck by opponent in the mouth causing injury to tooth
## 9958                                                                                                                                                                        Mi/EE was shoveling shavings into wheel barrow and wind caused shavings to fly into EE's eye
## 9959                                                                                                                                                                   Mi/EE was sweeping 3rd floor ramp when an acorn fell out of a tree and hit her under her left eye
## 9960                                                                               Michelle orlowski was assisting a resident in de-lofting their bed. When the stabilizer bar was removed the brother of the resident dropped the mattress frame on michelle's head. ()
## 9961                                                                                                                                                                                                        Microquart sprayed into both eyes due to eater hose connect.
## 9962                                                                                                                                                                                                                              Migraine headaches due to paint fumes.
## 9963                                                                                                                                                                                                                                            Migrane from mice urine.
## 9964                                                                                                                                                                                                                       Mis-stepped off sidewalk coming into building
## 9965                                                                                                                                                                                                                                 Missed last stair on the landing ()
## 9966                                                                                                                                                                                                                                  Mist from degreasing got in lt eye
## 9967                                                                                                                                                                                             Mistakenly drank coil cleaner and burned tongue, esophagus, and stomach
## 9968                                                                                                                                                                                 Mixing cement when passing traffic blew dry mix in air. List injury as: left eye ()
## 9969                                                                                                                                                                                                                                Mixing chemicals clean restrooms. ()
## 9970                                                                                                                                                                                                  Mixing chemicals to put in boiler when something got in right eye.
## 9971                                                                                                                                                                               Mointering/operating high pressure boiler and auxiliary equipment - hearing both ears
## 9972                                                                                                                                                                                                              Monitor inmates. Went into a pod for channel change ()
## 9973                                                                                                                                                                        Monitoring inmates in dining hall. Started feelinghot, dizzy & blurry vision before fainting
## 9974                                                                                                                                                          Monitoring inmates in gym and paying attention to an inmates question; EE was struck in right side of head
## 9975                                                                                                                                                                                                             Monitoring inmates, a basketball hit her in the head ()
## 9976                                                                                                                                                                           Monitoring patients in dayroom, patient began hitting & punching employee in the face. ()
## 9977                                                                                                                                                        Montoring edwards dorm, I/m spit in face, eyes, mouth. Locked up I/m and I/m was mad and spit in my face. ()
## 9978                                                                                                                                                                                                                                 Mop water splashed into EE's rt eye
## 9979                                                                                                                                                                                          Mopping and handle fell and hit staff on the rt side of the head by ear ()
## 9980                                                                                                                                                     Mopping floor, object fell off shelf and struck EE head. Went to emergency room unc hospitals. Head laceration.
## 9981                                                                                                                                                                                                  Mopping pt's room, pt was aggitated, slapped EE on side of face ()
## 9982                                                                                                                                                                                           Moth flew in left ear and EE had to have medical treatment to remove moth
## 9983                                                                                                                                                         Mounting a bracket using a drill. Drill slipped out of hand and fell striking her forehead above the eye ()
## 9984                                                                                                                                                                                                      Mouth to mouth resessitation of 6 wk old infant concern of hiv
## 9985                                                                                                                                                                  Moving a stack of chairs off trailer, he lost his balance & fell off the trailer, striking a chair
## 9986                                                                                                                                                                                                          Moving away from pt assault, fell backwards on back & head
## 9987                                                                                                                                                                                                        Moving belt to run sweet potatoes and belt collapsed down ()
## 9988                                                                                                                                                                                            Moving bleach away from the food area when it splashed into the EE's eye
## 9989                                                                                                                                                           Moving boxes down ramp on cart, cart moved quickly, causing EE to fall backwards and hit head on floor ()
## 9990                                                                                                                                                                                    Moving bungee cord wrapped computers with dolly, bungee broke loose struck l eye
## 9991                                                                                                                                                                                                          Moving cardboard. Box corner of box struck EE in right eye
## 9992                                                                                                                                                                  Moving client from bed to wheelchair using lift, lift tilted and hit staff on lt. Side of head. ()
## 9993                                                                                                                                                                                       Moving client with another employee, up higher on the wedge, struck by client
## 9994                                                                                                                                                                      Moving empty boxes & 2 stacks of boxes containing copy paper fell injuring head, leg and foot.
## 9995                                                                                                                                                                                                                                       Moving fan banged head on fan
## 9996                                                                                                                                                                                                                                                 Moving file cabinet
## 9997                                                                                                                                                                            Moving from one building to anohter & was carryingaloe plant that struck her in left eye
## 9998                                                                                                                                                                         Moving furniture in classroo, when wooden yarn spool fell from top shelf hitting EE on head
## 9999                                                                                                                                                                     Moving furniture in stairway, furniture slipped and a screw caused a laceration on his head. ()
## 10000                                                                                                                                                                                       Moving furniture into office-light tube fell and foreign body got into eyes.
## 10001                                                                                                                                                                                                                       Moving ice back to wall. Dust got in his eye
## 10002                                                                                                                                                          Moving ladder to work on another light, when the ladder was picked up by co-worker & hit EE in the mouth.
## 10003                                                                                                                                                              Moving practice goal to floor location when supporrope broke causing arm to fall causing cut to scalp
## 10004                                                                                                                                                                                 Moving practice goal to floor location when support rope broke causing arm to fall
## 10005                                                                                                                                                                                                                                Moving ptted tree thorn went in ear
## 10006                                                                                                    Moving segway (self-balancing personal transportation device with two wheels) to a different location on property. Startled, lost balance, fell and hit head ()
## 10007                                                                                                                                                                                                 Moving something to table & board flew up and hit him in right eye
## 10008                                                                                                                                          Moving steps for band. Fan playing football on tramac trying to catch errant pass ran into. Jaw, tongue, teeth injury. ()
## 10009                                                                                                                                                                                          Moving table in stairwell and it dropped on the right side of his head ()
## 10010                                                                                                                                                                                                                 Moving w/c and resident hit in r. Side of face. ()
## 10011                                                                                                                     Moving washer/dryer stack combo from the back of atruck lift gate, when handtruck handle hit EE in the lt jaw, chipping and cracking lt molar.
## 10012                                                                                                                           Moving water heater into mechanical room on hand cart. Pulling cart to get over high threshold. Cart rolled too fast trapping EE between
## 10013                                                                                                                                                                                                          Mowing ditch/bank was stung by wasp under left eye& chest
## 10014                                                                                                                                                                                                                        Mowing grass and foreign object flew in eye
## 10015                                                                                                                                                                                                        Mowing grass beside grounds shop when object got in rt eye.
## 10016                                                                                                                                                                                                                         Mowing grass when debris flew in right eye
## 10017                                                                                                                                                                                                                      Mowing grass when something blew in right eye
## 10018                                                                                                                                                                                    Mowing h-con grass, got something in right eye. Driving thru dust while mowing.
## 10019                                                                                                                                                                                                             Mowing on riding mower and the wind blowed trah in eye
## 10020                                                                                                                                                                                         Mowing rifle range. Something got into eye. Did have safety glasses on. ()
## 10021                                                                                                                                                     Mowing, rock shot from under mower, hit pole, richocheted and hit EE in eye, going up under his safety goggles
## 10022                                                                                                                                                                                                                                  Mowing-something got in right eye
## 10023                                        Mr. Adetunji and another employee were installing a sign with the erector crane truck. As an employee was stowing the boom, Mr Adetunji bumped his head(back, left side) on the block & tackle while reaching for a bolt ()
## 10024                                                                                                                                                       Mr. Arney was felling trees for a landowner in yancey county for forestry when he was exposed to poison ivy.
## 10025           Mr. Ayscue, employee, was assisting the chief of security with an arrest on campus. Student in the act of resisting arrest, pushed Mr. Ayscue violently causing him to hit the back of his head on a support beam in the new student center building. ()
## 10026                                                                                                                                                                 Mr. Baucom was removing walls during construction of a new office and something got in his eye. ()
## 10027                                                         Mr. Bayang was backstage performing a scene change/correction and stood into the cross bars of a platform injuring his left eye. Left eye suffered cornea abrasion with external bruising and scraping. ()
## 10028                                                                                                                                                                                      Mr. Berra rose up from his chair and bumped his head on an open cabinet door.
## 10029                                                                                                                                                            Mr. Brown was bitten in the ear by a spider while driving to his work area. List injury as: left ear ()
## 10030                         Mr. Bryant was grilling at an official work function. He got overheated grilling and sat down but when he got up he loss his balance causing him to fall injuring his head, hands, right arm and foot. He was taken to wake med by emt. ()
## 10031                          Mr. Chris powell, tw was replacing the bits on the milling head(skid steer attachment). Whe he stood up, he hit the stationary milling attachment knocking off his safety glasses, and injuring his left eye. List injury as: left eye ()
## 10032                                                                                               Mr. Griffin fell while attempting to close the door to the science office supply room, striking the back of his head on the wall causing a minor cut to his head. ()
## 10033     Mr. Hicks was attacked by 3 juveniles during their escape. The juveniles hit Mr. Hicks several times in the face causing him to have severe bleeding in the mouth and nose. Mr. Hicks was also choked around the neck by the juveniles causing him to have pai
## 10034                                                                                                                                                          Mr. Hinzman was assaulted by a student. The student hit him on the right side of his head on his ear.. ()
## 10035                                                                                                           Mr. Justice was testing concrete and was cleaning the air pot when, concrete splattered up into his eye. List injury as: right eye, scratched, cornea ()
## 10036                                                                                         Mr. Mitchell was assaulted by an inmate while conducting cell searches, inmate was let out of his cell accidently and struck Mr. Mitchell on the left side of his face. ()
## 10037                                                                                                                                                       Mr. Morgan was leading inmate out of the showers and the inmate threw urine on his left side of his face. ()
## 10038                                                                                                                                                         Mr. Murray was opening the door on the trailer when the load lock fell from the trailer an hit his head ()
## 10039                                                                                                                                             Mr. Parrish reported that he was attempting to hand an inmate some paper and then he hit his head on the cell door. ()
## 10040                                     Mr. Rembold alleges that dean mclarty made a statement about him to the other correction education instructors who in term shared it with the inmates; the instructors were mad at him and the inmates called him a snitch. ()
## 10041                                                                 Mr. Robertson opened a student's door to counsel student. Student jumped up from bed and struck staff with his fist on the left side of his head. Mr. Robertson had swelling near his left eye. ()
## 10042                                                                                                                                            Mr. Robertson tripped over a chair and fell during a college meeting. He hit his head and sliced his jaw on a chair. ()
## 10043                                                              Mr. Watts was helping mechanic service equipment. Grease fitting was clogged and broke cleaner was sprayed in it. The brake cleaner spayed back in Mr. Watts eyes. List injuries as: right & left eye
## 10044              Mr. Woodring was holding board for another employee to nail wingwall board back into bulkhead. Mr. Woodring was hit in the right eye when the other employee hit the nail with the hammer; nail popped out of the board. List injury as: right eye ()
## 10045                                                                                                                                                    Mr. Wright was escorting a defendant to the courthouse to have magistrate set a bond on an unserved warrant. ()
## 10046                                                                                                    Ms Hux stated that she was sitting at her desk and an unknown object/debris scratched her left eye causing infection and swelling in the eyeball and eyelid. ()
## 10047                                                    Ms Macdonald was driving to a training that she was leading in greensboro nc & she was rear ended by another driver. Her vehicle was also pushed into the vehicle directly in front of her. Sprain neck jaw. ()
## 10048                                               Ms. Ames was attempting to unplug keyboard so that a new one could be installed. She leaned over to pull docking station out and hit the front area of scalp on metal shelf. Laceration does not require sutures. ()
## 10049                                                                                                            Ms. Brooks was on a phone call with a tax payer andthe system went down and she heard a buzzing soundin her lft hear. She has been having bad headaches
## 10050       Ms. Brown went to lunch at a restaurant during a break in the training while attending a training class. Ms. Brown rode with jean foster. When Ms. Brown got out of the car, she tripped on an umbrella. Ms. Brown fell to the ground and injury her face, k
## 10051                                                                                                                                           Ms. Carter was getting out of chair. Her foot became tangled in computer wire under desk causing her to trip and fall ()
## 10052                                                                                                                                    Ms. Crain was stepping down from the podium in a committee room when she tripped and fell hitting her head on a nearby desk. ()
## 10053                             Ms. Downer was walking from one building to another, something made her left ankle twist and she fell. Her left shoe came off. She fell on her right knee and scrapped right knee, chin, both hands, left big toe, and right elbow. ()
## 10054                                                                                                                                                            Ms. Durham was standing in the dayroom area when a student on his way to his room, spat in her face. ()
## 10055                                                                                         Ms. Gill went into the breakroom. She sat in a chair (the chair was broken) Ms. Gill fell to the floor hitting her head. She had no knowledge of the chair being broke. ()
## 10056                                                                                                                                                                       Ms. Healy was walking down steps in the adams bldg, when she slipped on liquid on a step. ()
## 10057                                                                Ms. Jones was in her classroom and tripped over the leg of a chair that student was sitting in. She fell and hit her left temple on the drawer of her desk. Ms. Jones did not lose conciousness. ()
## 10058                                                                                                                                             Ms. Klostermeyer slipped on ice in parking lot. She was also wearing work boots which was appropriate for the weather.
## 10059             Ms. Marsh was interacting with students in the gym during recreation when one of the students fell. Ms. Marsh tripped over the student and fell hitting her head against the wall in the gym. Both student and staff were going for the volleyball. ()
## 10060                                                                                                                                                                                                                   Ms. Morris was walking. She fell & hit her head.
## 10061                                                                             Ms. Morrison was sitting down in a chair with wheels when the chair rolled out from under her. She fell forward and hit the back of her head on a table and landed on her left hip. ()
## 10062                                                                                                                                                                 Ms. Peacock gave blood 1 hour prior to becoming light headed & fainting hitting head on the floor.
## 10063            Ms. Pope was climbing a rock wall while at employee appreciation. The instructor indicated to Ms. Pope to jump and that he would catch her. The instructor missed Ms. Pope and she fell, hitting her head on the metal fence surround the rock wall. ()
## 10064                                                                                                                                       Ms. Pring was attending out of state training class. After dinner, she was on her way to dorm room and was bitten by insect.
## 10065                                                                                                                                                                        Ms. Robinson was accidently struck in the head by a vollball that was kicked by a staff. ()
## 10066                                                                                                                                             Ms. Schoch was assistting with the cutting of a stalk of bananas when juice from the stlak fell into her right eye. ()
## 10067                                                                                                                                         Ms. Scriven was restraining a student on b when she fell with the student to the floor. Ms. Scriven fell on her left knee.
## 10068                                                                                                  Ms. Smith was walking by the combi oven while it was being cleaned, steam released from oven and the steam hit Ms. Smith in the face causing burn to left eye. ()
## 10069                                                                                                                           Ms. Valero was crossing salisubury street, as she was crossing, she stumbled and fell to the ground hitting her face, hands, and knees..
## 10070                                                                                            Ms. Whitley got up from desk to walk to mail room. She fell on floor and her head hit the wall... She thinks she May have tripped on the rug or chair near her desk. ()
## 10071                                                                                                                                                                                                                                 Mucous membrane exposure to saliva
## 10072                                                                                                                                Multiple severe injuries resulting in death. Chavis and another inmate hitching a trailer to a tractor. Trailer ran over chavis. ()
## 10073                                                                                          Murgittroyd made a cell search on e-block #21. He took a step backwards, stood up and hit his head on the railing of the top bunk. This caused him to go to his knees. ()
## 10074                                                                                                                                                                                                                                     Muzzle of gun hit her teeth ()
## 10075                                                                                                                                                                   Myself & another hct was cleaning stool off of resident. He took his fist & hit me on my chin ()
## 10076                                                                                                                                                                                                                                                               NULL
## 10077                                                                                                                                                                                                                                            Nail hit EE in left eye
## 10078                                                                                                                                                                              Nasal allergies, congestion, watery, itchy eyes (possibly due to rodent exposure). ()
## 10079                                                                                                                                                                        Nci hold while pt in seclusion pt kicked this write in r eye while being placed on mattress
## 10080                                                                                                                                                                                                                               New hire orientation-pepper spray ()
## 10081                                                                                   No treatment -report only -employee slipped and fell on the wet floor when custodian was mopping and buffing floor. She fell on her back and hit her head. Any treatment needed?
## 10082                                                           Noise exposure or overexposure while participating in firearms training. On 4/27/2012 employee began to suffer from high pitch ringing in his right ear along with headaches and tension in his face. ()
## 10083                                                                                                                                                                                                             Normal office duties until the fumes caused a headache
## 10084                                                                                                                                       Nose-swelling in soft tissues of skull/severe headaches, lifting lid of heavy metal cabinet & large lid fell down & hit nose
## 10085                                                                                                                                                                                                                                                        Not sure ()
## 10086                                                                                                                          Noticed a decline in his hearing in the right ear. He works around heavy equipment daily and at times it causes discomfort in his ears ()
## 10087                                                                                                                                                                                                                    Noticed eye was red and running, pain in rt eye
## 10088                                                                                                                                                                                                                              Noticed something irritating left eye
## 10089                                                                                                                                                                     Nurse states while assessing inmate after being sprayed, the inmate spit in her eye and cheek.
## 10090                                                                                                                                                                                             Nurse was kicked by a patient causing the nurse to bump into my mouth.
## 10091                                                                                                                                                                                                                                O. C pepper spray exposure training
## 10092                                                                                                                                                           Object hit her window causing it to break. EE was looking at the window and wind blew glass into hereye.
## 10093                                                                                                                                                                                                                                                      Object in eye
## 10094                                                                                                                                                                                                    Object in right eye, moved ceiling tile, somethingfell into eye
## 10095                                                                                                                                                                                                          Object or debris brew in eye from fan in the dormitory ()
## 10096                                                                                                                             Observing inmate in the shower, inmate jumped the officer when the officer came to get him out of the shower, breaking his dentures ()
## 10097                                                                                                                                Observing inmates in dining hall at approx 5:36 noticed strange odor & looked up at ceiling & mistform ceiling fell into both eyes.
## 10098                                                                                                                                                         Observing inmates in dinning hall a fight broke out another officer sprayed Ms. Downey in her left eye. ()
## 10099                                                                                                                                                             Observing inmates leaving their silverware in soaptray when some of liquids splashed into her left eye
## 10100                                                                                                                                                       Observing pt playing softball, pt was throwing ball in air and ball went behind fence and hit EE in l temple
## 10101                                                                                                                                                                      Obtaining accucheck inmate moved his finger causing strip to bend & blood to splatter in face
## 10102                                                                                                                                                                                                 Oc spray training-got in EE's eyes causing red, inflame & swelling
## 10103                                             Occupational noise exposure resulted in a standard threshold shift and osha recordable hearing loss when annual audio metric testing resulting conducted on 3/27/13 were compared to the revised baseline 10/27/09. ()
## 10104                                                                                                                                                                                Occupational noise exposure resulted in an osha recordable hearing loss in left ear
## 10105                                                                                                                                                                                 Occupational noise exposure resulted in an osha recordable hearing loss in rt ear.
## 10106                                                                                                                                                                            Occurred during basic training while training crdt () head injury (possible concussion)
## 10107                                                                                                               Odor of burning matches came through vents causinginstantaneous allergic reaction of nasal passages swelling up EE's performing regular office tasks
## 10108                                                                                                                                                                                          Oee was struck in the face by a client while EE was helping client shave.
## 10109                                                                                                                                                                                                     Ofc escorting inmate and the inmate head butted the officer ()
## 10110                                                                                                                                              Ofc marks states he drank out of a his unsupervis ed water bottle and informed supervisor that the water tasted funny
## 10111                                                                                                                                                                           Ofc states that inmate threw an unknown substance in his facial area stricking his eyes.
## 10112                                                                                                                                  Ofc states that while walking he walked up on an inmate painting & was accidentally struck on the forehead with a painting stick.
## 10113                                                                                                                                                                                       Ofc states while escorting an inmate back to his cell he spit in her rt-eye.
## 10114                                                                                                                          Ofc thompson alleges that an inmate stepped to thedoor and threw unknown liquid onto his person. Contact made on shirt and in facial area
## 10115                                                                                                                              Ofc. Moss was checking a vehicle preparing to exitthe perimeter of the facility when he raised up & hit his head against the vehicle.
## 10116                                                                                                                                      Ofc. States while turning corner to post at position gun rack came open, shotgun was released and she was hit in the head. ()
## 10117                                                                                                                                              Off. Odom had an allergic reaction from something he ate, became dizzy, tripped & fell hitting his head on the floor.
## 10118                                                                                                                                                  Offender tried to run, captured offender on his back & both fell to floor, hit head on nail protruding from wall.
## 10119                                                                                                                                                       Offerring meds to pt when pt struck EE with r fistto r eye, knocking EE to floor, striking lt elbow on floor
## 10120                                                                                                                                                                                            Office chair flipped over, EE fell from chair hitting back side of head
## 10121                                                                                                                                                                                  Office states inmate sucker punched him in the face when asked to submit to cuffs
## 10122                                                                                                                                                                             Officer aljumai involved in use of force and was hit in mouth and twisted shoulder. ()
## 10123                                                                                                                           Officer anderson stated that he was escorting a inmate to lock-up when he was struck by another inmate in the facial area with his fist.
## 10124                                                                                                                                  Officer approached stop light on rock quarry road, truck turned in front of him causing vehicles to collide. Air bag deployed. ()
## 10125                                                                                                                                                                                                                            Officer assualted by inmate on left ear
## 10126                                                                                                                                     Officer attempted to apprehend offender in office that was evading arrest. Offender used his fist to strike officer in the eye
## 10127                                                                                                                                 Officer burns was standing at the gatehous control door waiting for it to open when a bug flew into and stung her right eyelid. ()
## 10128                                                                                                                                                                       Officer caputo stated dust or something flew into her eye, while making rounds in dorm 3a&b.
## 10129                                                                                                                                              Officer clements was training at the firing range & has reported that she lost hearing in her right ear due to noise.
## 10130                                                                                                                                 Officer cox was placing sugar on the seg cart, whenhe raised up. Officer cox hit his head on a shelf which caused his neck to pop.
## 10131                                                                                                                   Officer crisco stated while assigned to perimeter patrol he made a turn in the vehicle in doing so the shotgun fell hitting under his right eye.
## 10132            Officer d. Bryant passed out while working the panel in master control. Officer k. Bryant notified lt. Moore that she was passed out. He took a coat and placed under her head. Officer d. Bryant was complaing about pain to her head and left arm. ()
## 10133                                                                                                                                                                                                 Officer evans was working control booth - vision became blurry. ()
## 10134                                                                                                                                                                                                  Officer failed to reduce speed & hit another vehicle in the rear.
## 10135                                                                                                                                                                                                           Officer farmer hit his head on a desk in master control.
## 10136                                                                                                                                                                                   Officer fell backword & landed on the ground, striking his head on the concrete.
## 10137                                                                                                                                                                                                                   Officer fitts was hit in right jaw by inmate. ()
## 10138                              Officer frazier and officer williams were picking up food trays, officer williams opened the viewing window, the inmate (bishop) had a window in his hand the inmate proceeded to hit officer frazier in the face with the window. ()
## 10139                                                             Officer gaddy was at crdt training doing shin kicks and peroneal lower spears. He put power into the kicks as instructed by the instructor and strained a muscle in his inner leg at his groin area ()
## 10140                                                                                                                                          Officer gave verbal order to inmate, inmate disobey direct order, officer sprayed inmate, inmate began assaulting officer
## 10141                                                                                                             Officer gillis stated that he was trying to get an inmate to return to his block when the inmate struck him in the head and left eye with his fist. ()
## 10142                                                                                                                                                             Officer got to hot, when inside and passed out she hit her head she left the facility via ambulance ()
## 10143                                                                                                                                  Officer greg dale stated while he was removing restraints from an inmate. The inmate struck him in the head with his free hand ()
## 10144  Officer griffin stated he and fellow officer were giving an inmate a direct order to submit to restraints, the inmate refused & was oc pepper sprayed. The inmate then began throwing punches @ officers hitting them in the head & face area injurying his eye (
## 10145                                                                                                                  Officer had arrested someone and was taking then as he took the person before the magistrate the person stoppped got some water and spit in face.
## 10146                                                                                                                                    Officer had confrontation with inmate, inmate was sprayed with oc spray and EE came in contact with the spray. Burning in eyes.
## 10147                                                                                                                        Officer had reaction to oc spray that was used to spray him during training. It caused his eyes to swell up & was unable to work for 2 days
## 10148                                                                                                                                                                            Officer had to go through the oc pepper spray developed conjuctivtis of her left eye ()
## 10149    Officer harvell stated he was in hu 3, he was in front of the desk and bent over to pick up a paper clip, he raised up and hit his head on the corner of the desk. He went to the bathroom & saw that it was cut & swollen-he reported what happened to his sgt
## 10150                                                                                                                                                                 Officer hayward was checking the security fences when an unknown object fell into his left eye. ()
## 10151                                                                                                                                                                                Officer heard shot in woods. Started toward shot and a lumb struck him in right eye
## 10152                                                                                                                                                                             Officer henderson ate a saltine cracker in the kitchen after which her tongue swelled.
## 10153                                                                                                                                                                Officer henderson was assaulted. He was struck in the left eye and got pepper spray in his eyes. ()
## 10154                                                   Officer holloway was patrolling the yard when he approached the back door of ocracoke inmate thomas reddick (0646504) sprayed a unknown liquid substance from a small bottle which got into both of his eyes. ()
## 10155                                                                                                                                                       Officer jerry fitzgerald stated that while he was completing a cell search an inmate hit him in his eyes. ()
## 10156                                                                                                                                                                                                                  Officer joyce and another officer were rear-ended
## 10157                                                                                                                                                                            Officer kearney elbowed officer hawley in the eye while trying to handcuff an inmate ()
## 10158                                                                                                             Officer kelley stated that as he was preparing to release inmates from edwards yar to attend a church program, an inmate threw a garbage can lid and h
## 10159                                                                                                                                                                                                       Officer kirk ruffin he fell and hit his head on a metal box.
## 10160                                                                                                               Officer lade states she was opening up a hot box while in the serving line she states something either fell into her eye or the steam hit her eye ()
## 10161                     Officer lake states while doing a search of a stg inmate he became hostile & aggressive. Officer lake stated his right & left hands and right & left thumb bent back while restraining the inmate and he fell to the floor with the inmate. ()
## 10162                                                                                                                                                                                   Officer mack was assaulted and hit in the left side of the face by an inmate. ()
## 10163                                                                                                                                                                                    Officer martinez was passing out clothes when he was assaulted by an inmate. ()
## 10164                                                                                                                                                                                    Officer mccann and another officer were rear endedby another vehicle on hwy 601
## 10165                                                                                                                                                                                                         Officer mccray was assaulted by an inmate with a razor. ()
## 10166                                                                                                                                                                                 Officer mitchell was working in segregation when he got something in his left eye.
## 10167                                                                                                                                 Officer morrison was participating in a cell extraction when the inmate grabbed him by the head and banged it against the wall. ()
## 10168                                                                                                                      Officer murray was leaning against a cooler with shelving on top of it, the shelving fell hitting the left side of her head and left wrist ()
## 10169                                                                                                                Officer newton states that oc-pepper spray blew back in both of his eyes, after macing inmate w/ocpepper spray, after inmate made a aggressive.. ..
## 10170                                                                                                                   Officer newton while assigned to a gun tower, shotgun went off inside the tower. Officer alleges that this caused ringing sensation in his ears.
## 10171                                                                                                                                                                  Officer opened gate for EE to enter. Sign that identifies houseing unit fell hitting top of head.
## 10172                                                                                                                                                               Officer parrish was driving roving patrol vehicle when he accidentally set off fire extinguisher. ()
## 10173                                                                                                                      Officer payne stepped out of the way of a canteen cart and hit his head on the corner of the upper shelf. Had a small cut on rt side of head.
## 10174                                                                                                                                                                           Officer person was getting inmate off the rec yard and inmate spit in officer's face. ()
## 10175                                  Officer riley was securing an inmate, when the inmate attacked officer riley striking him in the cheek bone, and eye area on the left side of his face. Officer riley was not coherent and transported to the er by ambulance. ()
## 10176                                                                                                                                                                                                      Officer sat down to do paperwork and hit head on fire box. ()
## 10177                                                                                       Officer sawyer was placing handcuffs on a inmate. When the inmate pulled away form officer sawyer, turned around stricking officer sawyer in the head above his left eye. ()
## 10178                                                                                                                                                                                              Officer securing inmate in cell, inmate head butted officer allen. ()
## 10179                                                                                                                          Officer sitting at control desk. Inmate spraying cleaning solution, another inmate opened door and wind blew solution into officer's eye.
## 10180                                                                                        Officer smith was in an altercation with an inmate and was struck in the face by the inmate. In doing so, he received a wound on his upper left lip and lower chin area. ()
## 10181                                                                                                                                         Officer stated that he was ascending the ladder to the observation level of tower #3 and struck his head on the steel beam
## 10182                                                                                                                      Officer stated that while assigned to road squad he was placing the caution sign on the work site when the leg of the sign hit him in the th.
## 10183                                                                                                                                                Officer stated, after removing leg cuffs, he stood up and inmate hit him in face and mouth with his right elbow. ()
## 10184                                                                                                                    Officer states after checking first aid kit on tower 5, he was climbing down tower ladder and the tower officer dropped the metal trap door. ()
## 10185                                                                                                                                                                 Officer states he entered pipe chase & hit top of his head on pipe which resulted in a 2 inch cut.
## 10186                                                                                                                                                  Officer states he was in cell extraction refresher course and wile entering mock cell, the officer who was the ()
## 10187                                                                                                                                        Officer states he was packing inmate's property, another staff member moved the mattress and some dust flew into his eyes .
## 10188                                                                                                              Officer states he was sprayed with oc pepper sprayduring new employee orientation. After decontami nation, noticed his left eye was highly blood shot
## 10189                                                                                                        Officer states her was supervising gym call for moore 2 unit. Officer states I/m threw basketball and it hit officer on his head and blurred his vision. ()
## 10190                                                                                                                                                                                        Officer states inmate was talking to him & saliva hit him in the right eye.
## 10191                                                                                                                                                           Officer states she was serving chow in g pod when I/m threw shampoo bottle and hit her l side of jaw. ()
## 10192                                                                                                                                                                                                 Officer states she was stung by a flying insect onher left eyelid.
## 10193                                                                                                                                                  Officer states she was walking while looking at a piece of paper & walked into a pole that holds up the staircase
## 10194                                                                                                                              Officer states that during chow hall supervision, an I/m being searched by another officer turned and struck him in the face/head. ()
## 10195                                                                                                                                                     Officer states that he was restraining a fellow officer when he was accidentally hit in the head with a baton.
## 10196                                                                                                                                              Officer stubbs gave inmate a direct order and the inmate struck the officer in the facial area with a closed fist. ()
## 10197                  Officer tarlton was holding the b-dorm door when an inmate entered the dorm he snatched the door as he entered pulling officer tarlton off balance. Officer tarlton felt a burning and stinging sensation from her left ear to her left elbow. ()
## 10198                                                                                                          Officer trujillo stated he was escorting inmate davon anderson to his rec cubical when inmate hardin squirted him with a liquid substance on his face. ()
## 10199                                                                                                                                                                                    Officer vines was standing in the kitchen when a ceiling tile fell on her head.
## 10200                                                                                                                                                                         Officer ward was attacked by an inmate. Struck in his face by the inmate with his fist. ()
## 10201                                                                                                                                                                   Officer was "patting down" an inmate when he forcefully struck her left eye area with his elbow.
## 10202                                                                                Officer was arresting offender christopher oldham on a probation violation warrant. After he was in custody, he resisted and pushed po hewitt into the wall where she hit her head.
## 10203                                                                                                                           Officer was assaulted by an inmate during inmate movement. Struck in the face by a fist and struck on the head several times with radio.
## 10204                                                                                                                         Officer was assisting in medical with an inmate that had been involved in a fight when blood from the inmates wound went into her left eye
## 10205                                                                                                                                                      Officer was assulted by an inmate. Inmate struck officer in the face injuring his left jaw and left temple ()
## 10206                                                                        Officer was attempting to restrain an inmate and the inmate took a can of oc pepper spray from another officer and sprayed the officer heavily in the face. Officer suffers from asthma. ()
## 10207                                                                                                                                     Officer was changing a strap during a call out of eha. A bug flew in her right eye and embedded itself causing extreme pain ()
## 10208                                                                                                                                                                Officer was cleaning with all purpose cleaner and c/o indirectly placed her head in the spray area.
## 10209                                                                                                                                                                       Officer was coming down stairs out of control booth and slipped and hit head on the door. ()
## 10210                                                                                                                                   Officer was escorting an inmate to the shower and the inmate assaulted the officer with a razor to the right side of his face ()
## 10211                                                                                                                                                               Officer was helping ems move an unconscious employee and was exposed to vomit on his face and shirt.
## 10212                                                                                                                                                                                                    Officer was hit in the head by staff helmet during training. ()
## 10213                                                                                                                                                                                                         Officer was in training for pepper spray certification. ()
## 10214                                                                                                                                                       Officer was knelt down under the desk, a metal barrolled off the desk & hit her on the left side of her head
## 10215                                                                                                                   Officer was participating in a pert training session at raven rock state park and during the exercise was struck by a branch in the left eye. ()
## 10216                                                                                                                                                             Officer was participating in crdt training doing forward break falls when his teeth chattered together
## 10217                                                                                                                                         Officer was printing paperwork and when lifted paper off the printer, the corner of the paper struck corner of left eye ()
## 10218                                                                                          Officer was putting away cleaning supplies in seg, when he picked up the cleanser powder from the holder in the mop buck and a clump of powder went into his right eye ()
## 10219                                                 Officer was putting bags in the trunk of the state vehicle (was fully opened). As bags were placed in trunk, the wind blew and trunk lid came down on right side of eye and face knocking glasses in the street ()
## 10220                                                                                                                                                                               Officer was returning an inmate from rec cage and felt liquid dripping on my head ()
## 10221                                                                                                                                                                                                             Officer was sitting in dorm and something bit her lip.
## 10222                                                                                                                                Officer was starting the state vehicle at fcc. She stated that a bee or spider was flying and had bit her on her right ear lobe. ()
## 10223                                                                                                                Officer was struck from behind while in his vehicle by another vehicle that failed to stop resultingin car being knocked off the road into a creek.
## 10224                                                                                                                                                                    Officer was struck on the left side of the head while removing an inmate from the rec. Cage. ()
## 10225                                                                                                                                                                     Officer was supervising inmates in the dining hall at breakfast when he collapsed on floor. ()
## 10226                                                                                                                                                                                           Officer was taking inmate out of cell when he was assaulted by inmate ()
## 10227                                                                                                                                                Officer was taking inmates out of recreation cells, and an inmate hit the officer in her left eye several times. ()
## 10228                                                                              Officer was working at his desk on his computer. He reached down to picku p a piece of paper. As he lifted his head, he hit his head on an open file cabinet drawer and drew blood ()
## 10229                                                                                                                                                       Officer weaver was attempting to cut inmates wateroff. Inmate threw urine and feces hitting him in the face.
## 10230                                                                                                                                              Officer williams was attempting to place handcuffson an inmate when the inmate swung at him punching him in the mouth
## 10231                                                                            Officer williams was collecting feeding trays from inmates, inmate threw unknown substance in officers eyes. On 3/14/2014 officer contacted admin. And stated his eyes were burning. ()
## 10232                                                                                                                                                                            Officer woodard was assaulted by an inmate and was cut on the left side of his face. ()
## 10233                                                                                                                                                                  Officer yow was assaulted by an inmate while doing a cell extraction / apprehending an inmate. ()
## 10234                                                                                                                         Officer. States he was enroute to the id room to look for an inmate's property & fell on just mopped floor, hitting back, elbow, and head.
## 10235                                                                                                                               Officers were playing softball as part of their physical training. EE was hit in the face by a softball that bounced off the ground.
## 10236                                                                                                                             Ok to keep mo comlex- employee was getting in a dump truck, when he struck his head on shield over the door. Supervisor: m. D. Warwick
## 10237                                                                                                                         Oleoresin capsicum--oc spray training. EE was sprayed in facial area as required. Experienced pain & discomfort in eyes--corneal abrasion.
## 10238                                                                                                                       On 09/30/05 @ approx 7:30 a detained juvenile walkby Mr. Gart dotson and punched him on the lt side of the face using his fist. 828 298 4994
## 10239                    On 11/16/12, documentation was received from a mental health practitioner certifying that EE suffered from post traumatic stress disorder associated with the shooting of a suspect that took place while employee was on duty in Nov. 2011. ()
## 10240                                                                                  On 7-30-09 at approximately 6:40pm, I donated blood at mci. I was aassignd to pitt hospital, for duty. While at pitt, at 730pm, I blacked-out. I was treated nad released. Ile ()
## 10241                                             On both knees, using his left hand to try to pop the carpet roller back into position on a ready space carpet machine. The side piece that covers the roller popped off toward his face, cutting l eyebrow/forehead ()
## 10242                                                                                                                                    On business outing w/social workers, EE was getting into back of stae van. Stood up too soon hitting top of head on door holder
## 10243                                                                                                                                                                                       On cell extraction team removing inmate from his cell. Inmate spit on me. ()
## 10244                                                                                                                   On firing range monday and tuesday to qualify with firearms, hit head on mat at some point whiledoing exercises, states had ringing in right ear
## 10245                                                                                                                                             On foot patrol in woods on out trailer notices friday night my eye was swollen and had a bite on it rt eye on eye brow
## 10246                                                                                                                                                                                                               On her way to lunch, employee fell in parking lot ()
## 10247                                                                                                                                                                                                  On outing to take a patient home, something flew in his left eye.
## 10248                                                                                                                                                                                                                               On patrol, involved in auto accident
## 10249                                                                                                                                                                       On playground playing kickball with patients, she fell on her hands and face on concrete. ()
## 10250                                                                                                                                                                                            On stage kiss with missed timing. Chipped front tooth on other actor ()
## 10251                                                                                                                                                 On the way to computer lab from office in the basement of library I slipped and fell broke two teeth & bruised lip
## 10252     On tuesday, 2/28/12 at approximately 9am, detective smith-marsh informed me that she was eating lunch with lt henry campbell on monday, 2/27/12 at the el carreton mexican restaurant, which is located at the corner of tate st & walker ave. (cont. Below) (
## 10253                                                                                                                                                                                  On ward patching wall, wearing safety glasses, something went into his right eye.
## 10254    On way to client visit. After stopping at stop sign and clearing lanes to left and right I proceeded to make a left turn on lawndale Dr. After crossing the first lane I was struck while crossing the second lane due to the driver increasing their speed. ()
## 10255                                                                                                                         Oncoming car struck deer causing deer to become airbone and strike driver's mirror/door & trailer. Driver reacted hitting head on door. ()
## 10256                                                                                                                        One of EE front teeth was completely broken and another chipped badly when he another cadet were practicing defensive tactics. Front teeth.
## 10257                                                                                                                                    One on one with resident-resident scratched/hit employee on chest, neck and r. Arm; pulled/hit left ear and kicked in mouth. ()
## 10258                                                                                                                                                           Ongoing mandatory fire alarm testing in building. Ears were hurting and ringing after alarm had stopped.
## 10259                                                                                                                                                                                                      Open door to m. E. Room and something fell/blew in eye--left.
## 10260                                                                                                                                                                           Open passage door to feed inmate when inmate threw feces from a cup in employee face. ()
## 10261                                                                                                                                                                                          Opened I/m trap door for recreation and I/m threw a cup of urine on EE ()
## 10262                                                                                                                                                                                       Opened I/m trap door to retrieve breakfast tray anf I/m threw urine on EE ()
## 10263                                                                                                                                                                                    Opened back door and residue from work being done on the roof fell in my eye ()
## 10264                                                                                                                                                             Opened bottom drawer to get paper towels for inmate stood up to check and hit bottom drawer of EE desk
## 10265                                                                                                                                                                        Opened cabinet a glass bowl fell out & shattered on the cabinet. Glass went into her rt eye
## 10266                                                                                                                                     Opened carton of milk was on the food cart the officer was picking up and the milk spilled and fell into the officer's lt eye.
## 10267                                                                                                                                                                                     Opened compartment door in ambulance, crowbar fellout & struck him across nose
## 10268                                                                                                                                                                                     Opened door 104, smelled strong chemicals, and closed door and went outside ()
## 10269                                                                                                                  Opened door to go outside & wind blew dirt & debris into hallway where EE was walking & openinglab office door. Dirt was blowing & struck in face
## 10270                                                                                                                                                                           Opened food passage door to get tray. Inmate had unknown liquid and threw in my face. ()
## 10271                                                                                                                                                                                                            Opened gate & gate swung open & struck across right eye
## 10272                                                                                                                                                                                                        Opened gate, latch fell, hit, & scratched above & below eye
## 10273                                                                                                                                                                             Opened up the stapler and the row of staples jumped out and hit him in the left eye ()
## 10274                                                                                                                                                                                                     Opened window and the entire window fell out and hit her head.
## 10275                                                                                                                                                     Openig car door, stepped on some rocks, knees buckled and fell trying to hold on to the door, hit head on door
## 10276                                                                                                               Opening 2 center doors on bulletin board in taylored (student lounge)to remove papers, when the board fell towards me stricken me on the top of head
## 10277                                                                                          Opening a bag of grass seed couldn't get it opened used closest too which was a screwdriver slipped out when pulling and struck his chin. Tooth, chin and face injury. ()
## 10278                                                                                                                                                                                           Opening a steel roll up door and something fell and went in my right eye
## 10279                                                                                                                                                                                             Opening an ampule of 10% koh when it popped and splashed in my lt eye.
## 10280                                                                                                                                                                              Opening bottle of peroxide. Pulled plastic seal off & peroxide splashed into left eye
## 10281                                                                                                                                                                                     Opening clorox bottle, struck her keys in seal & clorox splash in her left eye
## 10282                                                                                                                                                                         Opening food passage door on cell and inmate through bodily fluids in face and on neck. ()
## 10283                                                                                                                                                               Opening gate at canteen warehouse. When he pulled the gate, the gate hit him in the side of face. ()
## 10284                                                                                                                                                                                                         Opening gate when wasp flew out stinging EE above left eye
## 10285                                                                                                                                              Opening stainless steel refrigerator and it fell & hit EE in the head. Forehead rt side maintenancewas waiting on it.
## 10286                                                                                                                                                                                                             Opening switch #312 flash occurred during operation ()
## 10287                                                                                                                                                 Opening vehicle door to remove an arrestee when door closed stricking EE in right eye causing half inch laceration
## 10288                                                                                                                                 Operating a bobcat tractor the left side hydraulic seal burst, spraying a mist of hydraulic fluid into the left side of my face ()
## 10289                                                                                                                                                Operating breath testing vehicle when a golf ball came thru front windshield of vehicle spraying glass in EE's eyes
## 10290                                                              Operating front end loader. High stationary object on the dock, obscured by ice accumulation due to severe ice storm. Preliminary evaluation, no fault of the operator. Icy conditions root cause. ()
## 10291                                                                                                                                                      Operating riding lawnmower and a rock or pebble went under his safety glasses and struck him in the left eye.
## 10292                                                                                                                            Other driver pulled into path of so moore. He could avoid accident. Impact caused so moore to be disoriented, contusion, and neck pain.
## 10293                                                                                                                                                                     Out on outside rec yard when inmate threw out substance which hit me and the other officers ()
## 10294                                                                                                                                                                                                                                 Over time extended use of computer
## 10295                                                                                                                                                                            Owen was mowing grass w/ saftey glass. Gusty wind blew grass clippings into his (l) eye
## 10296                                                                                                                                                                                  Oxygen tank fell back off shelf and struck staff over lt eye-ice pack applied. ()
## 10297                                                                                                                                                                                                                         Package of disinfected burst into left eye
## 10298                                                                                                                                                                                          Paint chip went into left eye while scrapping/ sanding paint off lockers.
## 10299    Painter painted door frames in lobby w/ oil-based paint - I was in my office and at copier (in lobby) and the smell was making me dizzy; I told my supervisor that I didn't want to have to smell the paint & I was going to have to go somewhere - she told ()
## 10300                                                                                                                                                            Pan of pureed beef fell off a lakeside cart, it hit on the bottom of pan & food flew up into right eye.
## 10301                                                                                                                                                                                                                          Panel on generator hit him on the head ()
## 10302                                                                                                                                                                                                               Paper blew out of fax machine and scatched sclera ()
## 10303                                                                                                                          Parked truck was up on autolift. EE examined undercairriage, particles underneath truck fell down and shop fan blew them into EE's rt eye
## 10304                        Part time instructor works at an office site facility. She was leaving the facility after completing work. She tripped over a stray dog that was laying in front of the front entrance. When she fell, she hit her head on the concrete. ()
## 10305                                                                                                                                                                                                                         Partical entered eye while drilling metal.
## 10306                                                                                                                                Participated in firearm class on 10-28-96 & felt grain of powder had blown in eye. Following day eye was irritated & began hurting.
## 10307                                                                                                                                                Participated in o. C. Spray practical exercise. EE experienced extreme eye discomfort eyes. Keratitis in both eyes.
## 10308                                                                                                                                                      Participated in oc spray practical exercise. Experienced extreme discomfort in his eyes. Keratitis both eyes.
## 10309                                                                                                                                                                Participated in oc spray training. EE was sprayed in face with oc spray. Corneal abrasions to eyes.
## 10310                                                                                                                     Participating in canine training utilizing night vision. Member exited bus & made left turn to walkaround front of but, stumbled & struck pole
## 10311                                                                                                                                     Participating in controlling boxing exercise as a part of officer survival training when he was struck in nose by other cadet.
## 10312                                                                                                                                                                        Participating in low/ltd light training when an insect flew into her left eye and stung her
## 10313                                                                                                                                           Participating in oleoresin capiscum training. EE was sprayed in face with oc spray. Injured left eye--corneal abrasions.
## 10314                                                                                                            Participating in practical application of o. C. Spray, EE's eyes cont'd to have burning sensation through 3/23/06 and decrease in vision, vision worsen
## 10315                                                                                                                                                                                                         Particles from pad got in EE's eye while changing resident
## 10316                                                                                                                               Partner put him down on the floor to the cuffing position he slammed him down to the floor hard causing his tooth to be shaken loose
## 10317                                                                                                                                                                                                                  Passed out after recieving a hep a&b injection ()
## 10318                                                                                                  Passenger on cart traveling from one work location to another when a low branch hit the top of the cart and the branch snapped back and hit her face and eyes. ()
## 10319                                                                                                                              Passenger sitting behind driver, gas truck crossedcenter line & struck mirrors on drivers side & glass inside window striking rt eye.
## 10320                                                                                                                                                                            Passing out books. Inmate went to sign his card and stabbed EE w/pencil below right eye
## 10321                                                                                                                                                                                                                                           Pateint punched left eye
## 10322                                                                                                                                                                                                  Patien came out of eto and slapped EE on the lt side of the face.
## 10323                                                                                                                                                                      Patient accidentally bumped staff in mouth with their head while playing. Hit on front teeth.
## 10324                                                                                                                                                                           Patient accidently hit EE in face. Patient swung hands backwards and hit EE in the face.
## 10325                                                                                                                                                                                                                Patient accidently hit EE in the lip with his elbow
## 10326                                                                                                                                                                                                                                              Patient aggression ()
## 10327                                                                                                              Patient and staff were having 1:1. Patient startedlaughing with hand over mouth. Patient removed ha nd and when laughing spit went into my right eye.
## 10328                                                                                                               Patient approached employee who was standing at tecnician station, stood right in front of her. Patient swung her right arm back, striking EE on eye
## 10329                                                                                                                                                                                                     Patient assault-employee struck on left forehead by a patient.
## 10330                                                                                                                                                                                                                                               Patient assaulted EE
## 10331                                                                                                                                              Patient assaulted staff, hitting him on the right side of head x 2 causing him to also hit his right knee on wall. ()
## 10332                                                                                                                                        Patient attacked EE when he didn't get what he wanted right away, put EE in choke hold & punched EE repeatedly in the face.
## 10333                                                                                                                                                                                                  Patient attacked EE, hitting EE in left eye and scratching rt eye
## 10334                                                                                                                                                                                                           Patient attacked employee and scratched her head &chest.
## 10335                                                                                                                                                                                                             Patient attacked employee, hitting him in the head. ()
## 10336                                                                                                                                                                                                                  Patient attacked staff by hitting her in left eye
## 10337                                                                                                             Patient attacked staff from behind after the stafftook a pencil from them. Patient ripped hair from roots, kicked and scratched staff. Scalp contusion
## 10338                                                                                                                                                                                Patient attacked staff hitting on face and head, also kicked her in the stomach. ()
## 10339                                                                                                                                                                                  Patient attacked staff in the eto room, hit her in the throat and pulled hair. ()
## 10340                                                                                                                                                                                  Patient attempt to attack EE, fell into brick wall& chainlink, causing laceration
## 10341                                                                                                                                                                                          Patient attempted to stick a marker in staff's eyebut scratched forehead.
## 10342                                                                                                                                          Patient barring door threating to kill self. Entered room had patient hands. Door slammed into cna hook of head and neck.
## 10343                                                                                                                                                               Patient became aggressive hitting EE in nose and lip with fist. Split uppper lip inside, swollen lip
## 10344                                                                                                                                                                Patient became aggressive--struck right eye closedfist. EE was wearing glasses. Glasses struck eye.
## 10345                                                                                                                                                                                               Patient became assertive and hit EE on cheek. Abrasion to left cheek
## 10346                                                                                                                                                                                             Patient became combative and struck EE in the mouth with a closed fist
## 10347                                                                                                                                                                          Patient became irrate and threatened to kill doctor and hit EE in temple witha trash can.
## 10348                                                                                                                                                                                Patient became upset and started to grabb and strike at EE and struk EE in the eye.
## 10349                                                                                                                                                                              Patient became upset, stepped in front of EE. Patient grabbed EE and EE fell to floor
## 10350                                                                                                                                                                                                          Patient became very upset and then punched EE in the eye.
## 10351                                                                                                                                                                           Patient bite EE while EE was undressing patient. Patient scratched her above the eyebrow
## 10352                                                                                                                                             Patient came to medication room wdw. Patient givenguiafensin syrup, threw the medication in EE's eyes**dob 7/26/1954**
## 10353                                                                                                                                                    Patient came up and attacked emp while sitting with another patient. Rt eye, lt check, head, lt ring finger. ()
## 10354                                                                                                                                      Patient came up behind EE & struck her on the headcausing a bruise. Employee is having headaches & referred to have cat scan.
## 10355                                                                                                                                                                                                     Patient came up behind employee & hit employee in the face. ()
## 10356                                                                                                                                                                              Patient came up behind employee and hit her in the head with small plastic wash basin
## 10357                                                                                                                                                                                          Patient caused coworker to elbow staff in left eye during manual hold. ()
## 10358                                                                                                                                                                                                            Patient contact in regular duties contacted head lices.
## 10359                                                                                                                                                       Patient disruptive, struggling with staff and landed on floor, hitting EE in face, EE hurt knee and shoulder
## 10360                                                                                                                                                                 Patient got agitated and grabbed EE's glasses off face & in the process scratched the EE's lt eye.
## 10361                                                                                                                                                                                                                       Patient got mad and kicked EE in top of head
## 10362                                                                                                                                                                                                                                         Patient grabbed EE by hair
## 10363                                                                                                                                                                                   Patient grabbed EE from behind by EE's hair & forced EE's head against the wall.
## 10364                                                                                                                                                                                                          Patient grabbed EE's glasses threw on floor & broke them.
## 10365                                                                                                                                                                                                        Patient grabbed employee by hair and struck her inthe head.
## 10366                                                                                                                                                                   Patient grabbed employee by the hair & pulled hairout. Laceration on head and muscle tenderness.
## 10367                                                                                                                                                                                                     Patient grabbed fire exstinguisher and sprayed EE int her face
## 10368                                                                                                                                                                                                         Patient grabbed hair and pulled repeatedly. Injured scalp.
## 10369                                                                                                                                                                                                   Patient grabbed left corner of EE mouth and pulled on her jaw ()
## 10370                                                                                                                                                                         Patient grabbed the cna by the hair, slung her head back into floor, hitting head on floor
## 10371                                                                                                                                                                                     Patient grabbed the glasses off staff's face, scratched staff in her left eye.
## 10372                                                                                                                                                                                                                                     Patient head butted EE in face
## 10373                                                                                                   Patient head butted EE on forehead while EE was attempting to re-direct. Patient also made two blows with closed fist to EE's lower right rib cage by kidneys ()
## 10374                                                                                                                                                                                                  Patient head butted employee's head & also injuredher left wrist.
## 10375                                                                                                                                                                                          Patient head butted staff in the mouth and loosened tooth and busted lip.
## 10376                                                                                                                                                                                                           Patient headbutted staff in her mouth knocking tooth out
## 10377                                                                                                                                                                                                                              Patient hie EE in nose. Broke glasses
## 10378                                                                                                                                                                                                                          Patient hit EE in eye. Blunt trauma to os
## 10379                                                                                                                                                                          Patient hit EE in left eye and kicked EE in stomach while EE changed patient's underwear.
## 10380                                                                                                                                                                                         Patient hit EE in mouth causing teeth and gums to bleed. Mouth/loose teeth
## 10381                                                                                                                                                                                                                   Patient hit EE in the face. Contusion to lt eye.
## 10382                                                                                                                                                                                                                                     Patient hit EE in the left eye
## 10383                                                                                                                                                                                           Patient hit EE on left arm & head/face during transport to seclusion. ()
## 10384                                                                                                                                                                                    Patient hit EE on left side of lip with fist. Laceration/contusion to upper lip
## 10385                                                                                                                                                                              Patient hit EE over hand with metal framed chair. Scalp laceration - sutures required
## 10386                                                                                                                                                                                Patient hit EE with closed fist on her right cheek bone. Right mixillary contusion.
## 10387                                                                                                                                                                                                    Patient hit corner of binder and binder struck employee in eye,
## 10388                                                                                                                                                                                                                                   Patient hit employee in left eye
## 10389                                                                                                                                                                                                     Patient hit employee in the back of the head with her hand. ()
## 10390                                                                                                                                                                                                                                  Patient hit employee in the face.
## 10391                                                                                                                                                                                                                                     Patient hit me in the left eye
## 10392                                                                                                                                                                                                                         Patient hit staff in face below right eye.
## 10393                                                                                                                                                                                                                         Patient hit staff in head with thier fist.
## 10394                                                                                                                                                                                               Patient hit staff in the right eye when giving patient direction. ()
## 10395                                                                                                                                                                                                                Patient hit staff on the head, abdomen and back. ()
## 10396                                                                                                                                                                                                                     Patient hit staff on the left cheek with fist.
## 10397                                                                                                                                                                                      Patient hit staff on top of the head with his fistwhen ask to leave the room.
## 10398                                                                                                                                                                                                               Patient hit staff with fist on left side of chin. ()
## 10399                                                                                                                                                                                                              Patient hit staff's ears with open hands at same time
## 10400                                                                                                                                                                                                    Patient hold/restraint, pt hit employee on right cheek bone. ()
## 10401                                                                                                                                           Patient jumped off bed at staff, pushing the staffagainst the wall. Punched and kicked staff about the head and stomach.
## 10402                                                                                                                                                                                                Patient jumped on employee hitting her several times in the head ()
## 10403                                                                                                                                                                                       Patient kicked EE in the eye while being placed in seclusion and restraints.
## 10404                                                                                                                                                                                                               Patient kicked EE in the face while being restrained
## 10405                                                                                                                                                                                                                                  Patient kicked EE in the left eye
## 10406                                                                                                                                                                                                 Patient kicked EE on lt cheek while EE was trying to dress patient
## 10407                                                                                                                                                                                                 Patient kicked employee in the mouth. Laceration on the lower lip.
## 10408                                                                                                                                                        Patient kicked staff in the face causing his left eye ball to be scratched. Several abrasions to face also.
## 10409                                                                                                                                                                           Patient kicked staff in the head while staff was attempting to pull patient back in bed.
## 10410                                                                                                                                                                                                              Patient leaped from bed and struck staff in her nose.
## 10411                                                                                                                                                                                                                                    Patient physically assaulted EE
## 10412                                                                                                                                                                     Patient physically attacked EE, hitting in left cheek and left side of mouth. Injury to mouth.
## 10413                                                                                                                                                                                    Patient puched staff at least 3 times at the base of the right orbital area. ()
## 10414                                                                                                                                                                                                             Patient punched & struck employee's head with his head
## 10415                                                                                                                                                                                              Patient punched EE in the mouth and knocked out EE's permanent bridge
## 10416                                                                                                                                                                        Patient punched EE in the mouth while EE was trying to apply patient to restraint board. ()
## 10417                                                                                                                                                                                                                                   Patient punched EE in the rt eye
## 10418                                                                                                                                                                                                                 Patient punched employee in mouth without warning.
## 10419                                                                                                                                                                                                                            Patient punched employee in the face ()
## 10420                                                                                                                                                                                                        Patient punched employee in the fcae and chipped his tooth.
## 10421                                                                                                                                                                                                          Patient punched employee on the left side of his face. ()
## 10422                                                                                                                                                                  Patient punched employee with fist in face just above right eye and kicked staff on her left leg.
## 10423                                                                                                                                                   Patient punched in back of head twice and pulled hair with both hands until another staff member got patient off
## 10424                                                                                                                                                                                                                                           Patient punched left eye
## 10425                                                                                                                                                                                                                                        Patient punched left eye ()
## 10426                                                                                                                                                                                                                                    Patient punched me in the mouth
## 10427                                                                                                                                                                                                                                Patient punched me in the right eye
## 10428                                                                                                                                                                                            Patient punched me square in the nose and I started bleeding everywhere
## 10429                                                                                                                                                                                                                        Patient punched right forehead above eye ()
## 10430                                                                                                                                               Patient punched staff in lt eye as she walked pastin hall. Patient pulled staff's hair & slammed staff to the floor.
## 10431                                                                                                                                                                      Patient punched staff in the face, also grabbed and squeezed staff's prescription glasses. ()
## 10432                                                                                                                                                                                                                                  Patient punched staff in the jaw.
## 10433                                                                                                                                                                       Patient punched staff in the nose after redirection. Also c/o's of right eye blurred vision.
## 10434                                                                                                                                                       Patient punched staff on left side of face and kicked on right lower hand when attempting to redirect pt. ()
## 10435                                                                                                                                                              Patient punched staff on left side of head and back of head when being redirected on fluid intake. ()
## 10436                                                                                                                                                                                           Patient punched staff on the facex2 on lips and on left side of face. ()
## 10437                                                                                                                                                                                                                Patient punched staff on the right side his face ()
## 10438                                                                                                                                                                                        Patient punched, with clenched fist, employee in the face above left eye ()
## 10439                                                                Patient pushed EE into the wall & pinned EE against wall. Patient hit EE several times on head & face. Injured left side of neck, upper (left) arm & shoulder. Headsache from blows to the head. ()
## 10440                                                                                                                                                                                          Patient pushed and hit staff on right side of face during redirection. ()
## 10441                                                                                                                                                                                           Patient ran at staff and hit him with both fists, attack was unprovoked.
## 10442                                                                                                                Patient ran into chart room & attacked staff, hit-ting her in the head & on the left side of neck. Also pushed staff into wall on her right side in
## 10443                                                                                                                                                                                      Patient ran up to EE & punched EE on right side of face with a closed fist ()
## 10444                                                                                                                                                                                                      Patient ran up to staff and started punching her all over. ()
## 10445                                                                                                                                                             Patient reached and grabbed employee by the hair and then scratched down the left side of her face. ()
## 10446                                                                                                                                                                                   Patient refused redirection and struck staff in the left eye with a closed fist.
## 10447                                                                                                             Patient refusted to participate in activity. When asked to rejoin group, patient refused & took seatee moved chair back, & patient punched him in face
## 10448                                                                                                                                                                                                 Patient scratched staff on right side of head-assaulted by patient
## 10449                                                                                                                                                                                                 Patient screamed and slammed door-EE statec has bilateral ear pain
## 10450                                                                                                                                                                                                                       Patient slapped employee on left eye/face ()
## 10451                                                                                                                                                                                             Patient slapped in mouth knocking to floor-cut inside of lower lip. ()
## 10452                                                                                                                                                                                          Patient slapped staff in face while standing in line at nurses station ()
## 10453                                                                                                                                                                Patient spat crushed meds mixed with applesauce in EE face-a small particle lodged in EE's left eye
## 10454                                                                                                                                                                                                                                          Patient spit in l. Eye ()
## 10455                                                                                                                                                                                                    Patient spit into staff's left eye causing it to burn and itch.
## 10456                                                                                                                                                                                                         Patient spit on staff, pulled her hair and swung at staff.
## 10457                                                                                                                                                                 Patient sprayed EE w/ activated fire extinguisher causing her to experience chest pain & headache.
## 10458                                                                                                                                                                                 Patient sprayed EE w/ activated fire extinguisher--headache, nose and throat pain.
## 10459                                                                                                                                                                   Patient sprayed EE w/ activated fire extinguisher-c/o head throbbing, burning of nose and throat
## 10460                                                                                                                                                                     Patient sprayed EE w/fire extinguisher in mouth & nose. Headaches, blurred vision & dizziness.
## 10461                                                                                                                                                                                                Patient standing over staff, struck staff on forehead and left ear.
## 10462                                                                                                                                                        Patient struck & kicked staff, then head butted eeon nose pain in bridge of nose & surrounding area of nose
## 10463                                                                                                                                                                                                                     Patient struck EE in jaw causing cracked tooth
## 10464                                                                                                                                                                                                                           Patient struck EE in left eye w/his fist
## 10465                                                                                                                                                                                                                                          Patient struck EE in nose
## 10466                                                                                                                                                                                                                                      Patient struck EE in the eye.
## 10467                                                                                                                                                                                                  Patient struck EE in the face / right eye, also pulled EE's hair.
## 10468                                                                                                                                                                                                                                  Patient struck EE in the left eye
## 10469                                                                                                                                                                                                                                      Patient struck EE in the nose
## 10470                                                                                                                       Patient struck EE on the head causing a lacerationee has inquired about the possible scar but will return to office after 6 mos. Out 3 days.
## 10471                                                                                                                                     Patient struck back of head right side behind ear then employee fell on top of patient **rec'd f/18- med only -sent 0078/ltr**
## 10472                                                                                                                                                                                                                                    Patient struck employee in eye.
## 10473                                                                                                                                                                                  Patient struck employee in nose. Employee's nose was broken and surgery was done.
## 10474                                                                                                                                                                                                                             Patient struck employee in the face ()
## 10475                                                                                                                                                                                               Patient struck employee in the face and employee'shead hit the door.
## 10476                                                                                                                                                                                                Patient struck employee in the face causing headache and dizziness.
## 10477                                                                                                                                                                 Patient struck employee in the face injurying his left eye. Employee was sent to er for treatment.
## 10478                                                                                                                                           Patient struck employee in the face, brusing her eye and breaking her glasses. Referred to emergency room for treatment.
## 10479                                                                                                                                                                                                                             Patient struck employee in the jaw. ()
## 10480                                                                                                                                                                                                                                Patient struck employee on forehead
## 10481                                                                                                                                                                                                               Patient struck employee top left head with telephone
## 10482                                                                                                                                                                                                  Patient struck forehead closed fist causing hematoma mid forehead
## 10483                                                                                                                                                                                            Patient struck mouth w/ fist broke one tooth and laceration r upper lip
## 10484                                                                                                                                                                                                                                 Patient struck right eye with hand
## 10485                                                                                                                                                                                                                          Patient struck staff member in the lt eye
## 10486                                                                                                                                                                                   Patient struck staff on the left jaw when being redirected by the injured staff.
## 10487                                                                                                                                                                                                Patient struck staff on the left side of her face with his fist. ()
## 10488                                                                                                                                                                         Patient struck x 3 in back of neck while fastening chest straps. Noted head hurt/dizzy. ()
## 10489                                                                                                                                                                                                      Patient strunk staff in the face, staff fell to floor on knee
## 10490                                                                                                                                                                Patient suddenly sat up quickly in bed and struck EE in the rt side of head and received scratches.
## 10491                                                                                                                                                                                                                     Patient swung at and hit staff on side of head
## 10492                                                                                                              Patient swung at staff, head butted staff in nose patient pulling down curtains-trying to run away **physical address- 102 maple st, butner, nc 27509
## 10493                                                                                                                                                                                                                              Patient threw a hotwheel car at staff
## 10494                                                                                                                                                                                                     Patient threw a notebook and hit staff on the back of head. ()
## 10495                                                                                                                                         Patient threw a punch at staff while he was talking with him in his room. Patient struck staff around left eye unproviked.
## 10496                                                                                                                                                                                                     Patient threw cup of milk at employee & struck herin the head.
## 10497                                                                                                                                                                                                             Patient threw soup in tech face & began to fight staff
## 10498                                                                                                                                                                                                                      Patient threw tape case and struck EE in eye.
## 10499                                                                                                                                                                                       Patient threw trash can about 15-20ft, hit EE in top of head, cut 2-3 inches
## 10500                                                                                                              Patient tried to push through two nurses to get into the nurse's station and when staff intervened patient struck EE in the face and scratched on han
## 10501                                                                                                                                                   Patient tripped EE causing EE to fall on floor. Patient hit EE in right ear while being placed in restraints. ()
## 10502                                                                                                                                                                                 Patient upset and started swinging hair dryer around. Hit in head with hair dryer.
## 10503                                                                                                                                                                                                                      Patient upset, hit employee on right cheek ()
## 10504                                                                                                                                                                         Patient walked down hall and punched rn on right side of face repeatedly with closed fist.
## 10505                                                                                                                Patient walked into nurse's station & began attack-ing staff without provocation. Struck staff with closed fist on right facial area & pulling hair
## 10506                                                                                                                                                                                    Patient walked up to cna and struck him on the right side of face with his fist
## 10507                                                                                                                                                            Patient walked up to hct(EE) calmly. When EE askedpatient what she needed, patient hit EE in the mouth.
## 10508                                                                                                                                                                        Patient walked up to staff and hit her on the left side of face and on back of her head. ()
## 10509                                                                                                                                                                                Patient walked up to staff and hit him in the head on the right side with his fist.
## 10510                                                                                                                                                                                                         Patient walked up to staff and punched her on the head. ()
## 10511                                                                                                                                             Patient was aggressive toward staff. Striking EE on nose and forehead. EE injured while attempting to restrain patient
## 10512                                                                                                                                Patient was agitated and being taken to reclusion. Pt turned and struck EE in left eye. Edema and discoloration to left edge of eye
## 10513                                                                                                                                                                        Patient was agitated, EE tried to restrain patientnad he hit EE in the mouth with his fist.
## 10514                                                                                                                                                                         Patient was angry and hostile upon awakening and began fighting EE; injured left cheekbone
## 10515                                                                                                                                                                      Patient was attempting to call police and staff intervened and patient hit EE in the left eye
## 10516                                                                                                                                                 Patient was being assisted back to ward escorted by EE. Patient became agitated and hit EE in face above left eye.
## 10517                                                                                                                Patient was being loud and disruptive. EE asked patient to go to time out. Patient began walking towards time out room, turned and punched EE's eye
## 10518                                                                                                                                         Patient was ducking from a patient and hit head on the corner of the wall and then the patient finally hit EE on the neck.
## 10519                                                                                                                                                                                                                         Patient was fighting EE with magic markers
## 10520                                                                                                                                      Patient was fighting othe way back to the ward from dining room. Patient fighting rn. Hit her head on the corner of the door.
## 10521                                                                                                                                                                        Patient was hanging out of bed and EE turned pt back around and pt toe caught EE in the eye
## 10522                                                                                                                                                                                 Patient was paranoid tought staff was out to get him and hit EE head on the table.
## 10523                                                                                                             Patient was sitting with staffat table in the patient canteen. The patient hit staff in the nose. Patient was wearing a ring with the hand staff was h
## 10524                                                                                                                                                      Patient was trying to leave workd and when EE tried to stop patient, patient hit EE under chin with his elbow
## 10525                                                                                                      Patient was upset and beating on state property. Employee attempted to verbally redirect patient, patient hit employee in the back of the head several times.
## 10526                                                                                                                                                Patient was upset to leave the tv room, patient attacked EE. Cervical ddd, rt lateral ankle ligament reconstruction
## 10527                                                                                                                                                                                   Patient was walking down hall towards staff. Patient unprovokenly hit EE to jaw.
## 10528                                                                                                                      Patient was yelling and attacked staff/ struck staff behind the lt ear. Staff complaining of wrist pain also. Contusion lt ear, rt wrist pain
## 10529                                                                                                                               Patient went into nursing station and pulled fire extinguisher from wall and sprayed chemical into employee's face causing eye burn.
## 10530                                                                                                                                                  Patient went to attack staff and EE tried to de-esculate, patient started punching EE in the back of the head. ()
## 10531                                                                                                                           Patricia was walking into her office & fell over her own feet. In the process she hit her head on the corner of the door & cut her head.
## 10532                                                                                                                                                                                                                   Patroling edwards dorm hit head on door frame ()
## 10533                                                                                                                           Patroling north yard of pci & carrying out his duty. Sand blew in his eye. Wearing contact lens &while trying to remove sand bruised eye
## 10534                                                                                                                                                                  Patroling ward when someone threw bar of soap frombehind of him and hit him on right side of head
## 10535                                                                                                             Payton was conducting a cell clean up in (d) cellblock. C/o payton ordered inmate barnes to go back to his cell, inmate became very hostile & struck..
## 10536                                                                                                                                                                                                                                  Pepper spray /smoke inhalation ()
## 10537                                                                                                                                                                                                         Pepper spray caused reaction to eyes, continued redness ()
## 10538                                                                                                                                                                                                                                 Pepper spray went down EE's throat
## 10539                                                                                                                                                                                                         Pepper sprayed inmate. Struck by inmate under left eye. ()
## 10540                                                                                                                                                                                           Peppr spray during orientation burned the eyes badly, so employee states
## 10541                                                                        Per Mr. Bridgers: providing supper to student. Tapped a student on shoulder saying hello. Student turned around close to my face and was signing and accidentally hit me in my left eye. ()
## 10542                                                    Per Mr. Green, iw was pruning some shrubs or trees at the nc state fairgrounds and there was a hornets or wasp nest and iw as stung once above his right eye. Iw speaks some english but he is from vietnam. ()
## 10543                                                                             Per cindy barnes reporting the incident... Mr. Mordo reported to on 4/21 that he had gone to the beach medical care on 5/15 because his left ear had been bothering him since 5/11. ()
## 10544                                                                                                                               Performed forward roll scuba entry. Right ear hurt underwater. Subsequent attempts to equalize were successful but not pain free. ()
## 10545                                             Performing a routine search of inmate in the bathroom. Once contraband was found the inmate attacked vurro and a struggle was ensued. The inmate pushed vurro to the floor then knocked him into the bathroom wall. ()
## 10546                                                                                                                                                                                                     Performing duties as wet yard officer, stung on the lt nostril
## 10547                                                                                                                   Performing falling backwards moves during training, hit head hard on the mat, causing her to have a headache and neck pain that is still present
## 10548                                                                                                                                                       Performing locak anesthetic whele performing anesthetic. Fluid sprayed out of junction & needleand into eyes
## 10549                                                                                                                                                                            Performing preventative maintenance to large air handler debris flew into eye (left) ()
## 10550                                                                                                                                                    Performing regular day care to individual when she was touched in the eye while redirecting from a behavior. ()
## 10551                                                                                                                            Performing transcription duties. Listening to tapeon loud sound recorder on tape from ongoing renovation to facility. Injury to hearing
## 10552                                                                                                                           Performing trash detail, EE was looking behind a trash can was up against wall & under window, pick-ed up trash can hit tip of her head.
## 10553                                                                                                                                               Performing undercover work inside location. Live band was playing extremely loud music having a loud deep base tone.
## 10554                                                                                                          Periodically exposure to noisey work environments, I do wear hearing protection all the time, try to control and reduce work environment noise levels. ()
## 10555        Permanent full-time employee brian germick indicates the he (dive safety officer for the ff aquarium) and another diver (mike suchy) were performing routine morning dive feed, and he was approached and bitten on bridge of nose by spotted moray eel. ()
## 10556                                                                                                                                                          Person was walking behind research greenhouse and hit head on an open ventilation window. Cut to eye area
## 10557                                                                                                                                                                                                 Pert advance crdt training, was nit in the nose during advance. ()
## 10558                                                                                                                                                                              Phone slipped off shoulder and EE grabbed phone to his ear w. Corner striking his car
## 10559                                                                                                                                                                             Physical altercation with I/m. Ofc was struck in face & head. Transported to local er.
## 10560                                                                                                                                                        Physical altercation with inmate - inmate pulled c/o into cell and began beating him about the head area ()
## 10561                                                                                                                                                                Physical altercation with inmate in front of sergeant office. Inmate attcked me during a code 4. ()
## 10562                                                                                                                                                                                                                                     Physical assault by patient ()
## 10563                                                                                                                                                                                                                             Picked up box and got something in eye
## 10564                                                                                                                                                                                                             Picked up mace to put on belt, scratched face over eye
## 10565                                                                                                                                                               Picked up mop bucket and bottom hit cart and watersplashed up in both eyes. Water contained chemical
## 10566                                                                                                                                                              Picking up backpack blower, and hit shovel hanging above. Shovel fell and hit charles in the head. ()
## 10567                                                                                                                                                              Picking up box of coffee to put back on table and raised up and struck nail that was on cabinet above
## 10568                                                                                                                                                            Picking up chair that was stuck together with another chair. EE pulled on chair and hit lip. Upper lip.
## 10569                                                                                                                                                                              Picking up crayon's that a pt dropped, pt came running in room striking EE in face ()
## 10570                                                                                                                                                                                                            Picking up food trays and inmate threw feces in face ()
## 10571                                                                                                                                 Picking up food trays in hcon when inmate threw an unknown liquid through the food passage door and into the facial area and torso
## 10572                                                                                                                                                                 Picking up limbs in wooded area, arm full of limbs, picked up one more limb when poked in left eye
## 10573                                                                                                                               Picking up litter off of us74; broke a dead limb off of pine tree when, a piece flew off and hit eye. List injuries as: right eye ()
## 10574                                                                                                                                          Picking up signs on the maintenance yard, one came flying off hitting employee in head. List injuries as: back of head ()
## 10575                                                                                                                                                                      Picking up trays when an inmate threw unknown liquid substance in face when approaching cell.
## 10576                                                                                                                                                                                                          Piece of dirt got into lt eye while driving through park.
## 10577                                                                                                                                                                                                                Piece of flex flew loose and wire hit right eye. ()
## 10578                                                                                                                                                                                                                          Piece of metal flew in eye while welding.
## 10579                                                                                                                                          Pieces of particles from tile fell into hair. Dislodged from hair & ended up in his right eye before he could comb it out
## 10580                                                                                                                                                                                                                                                           Pink eye
## 10581                                                                                                                                 Pipe wrench slipped when breaking into a union. Fell forward into electrical box that did not havea cover or wire nuts (bare wire)
## 10582                                                                                                  Pipetting pbmc's from known hiv viral ludic undetectable source using waste bucket that had pooled pbmc from other sources, splashed on her l cheek and l eye. ()
## 10583                                                                                                                                                                                                       Pivoting client into bed, client accidentally hit EE in nose
## 10584                                                                                                                                                                 Placed something in trash can. As she raised up, struck lt side of head on manual alarm panel box.
## 10585                                                                                                                                                      Placed weapon on top of locker. Retrieved lockkboxfor weapon, while placing weapon in lockbox gun discharged.
## 10586                                                                                                                                                                                                    Placing caution signs in parking lot, and surface was icing. ()
## 10587                                                                                                                                                                                          Placing detergent into cabinet some of the detergent got into her lt eye.
## 10588                                                                                                                Placing inmate in hand cuffs. I opened the food passage door on lb-40 to place inmate in hand cuffs and he then threw a cup of urine in my face. ()
## 10589                                                                                                                                  Placing inmate in restraints... When he pulled out and struck her in the face full force, chipped tooth and facial contusions. ()
## 10590                                                                                                              Placing inmate in segregation inmate kicked in right rib cage and right cheek while using proper crdt techniques to control an aggressive offender ()
## 10591                                                                                                                                                           Placing inmate into holding cell and removed handcuffs when inmate punched me in left side of my face ()
## 10592                                                                                                                                                                                                  Placing pt in restraints, pt bit his lips, spat blood on to EE ()
## 10593                                                                                                                                               Placing pt into ptc, pt swung arm and struck staff in face and knocked glasses off and broke frames and lens chipped
## 10594                                                                                                                                                                         Placing pt on transport board, pt spat in EE's left eye and mouth, spit had bloor in it ()
## 10595                                                                                                                       Placing rip rap on shoulder and employee went down to get something out of creek when, a piece dislodged and hit him on back of his head. ()
## 10596                                                                                                                                                                         Placing something in mail box on wall turned and hit head on the corner of the wooden box.
## 10597                                                                                                             Plane landing at rdairport felt a sharp pain in ears, on 2/20/07at 9:45, has constant ringing in left ear both feel stopped. Difficulty hearing & pain
## 10598                                                                                                                                                                                                                    Plant stem scraped left eye and caused abrasion
## 10599                                                                                                                                                                                    Plaster fell over edge of eye glasses into rt eye during demolition of ceiling.
## 10600                                                                                                                                                         Plastering a wall pan with plaster in lt hand used rt hand to load joint knife plaster popped up in lt eye
## 10601                                                                                                                                                        Plastering a wall. Pan with plaster in lt hand used rt hand to load joint knife plaster popped up in lt eye
## 10602                                                                                                                                                                                                              Plastering overhead and wet plaster fell into rt eye.
## 10603                                                                                                                                                                                                                      Plate broke and pieces went into left eye. ()
## 10604                                                                                                                                                             Playing bakk w/another resident. The other residentcame up behind EE & started spitting. Charged staff
## 10605                                                                                                                                  Playing basketball in courtyard with patients. Atient and staff ran into each other and the patient's hit her in the right eye ()
## 10606                                                                                                                                                                                                             Playing basketball w/ resident and got poked in rt eye
## 10607                                                                                                                                                        Playing basketball w/inmates. Stepped in front of inmate driving to basket. Elbow came down on left eyebrow
## 10608                                                                                                                                                                                              Playing basketball with patients and staff, got poked in right eye ()
## 10609                                                                                                                                                                                 Playing basketball with patients, patient undercutstaff & staff fell hitting face.
## 10610                                                                                                                                                                                                               Playing basketball with patients-ran into light pole
## 10611                                                                                                                                                                 Playing basketball with students and bumped heads with a student and received a cut near hairline.
## 10612                                                                                                                                                                            Playing football with patient when the patient accidently struck staff in the left eye.
## 10613                                                                                                                                                                                           Plowing wildfire. Fire activity increased and came into the tractor cab.
## 10614                                                                                                             Plugged battery charger in outlet. When he stood up hit his head on a nail that was placed in the wall years ago to hang things on such a clipboard ()
## 10615                                                                                                                 Poked in the eye by a stick as he was walking through the marshes to survey birds & vegetation. Went to er, & they sent him to a local eye doctor.
## 10616                                                                                                                                                                                 Poked in the eye by a tree limb; was not working on tree, but other plants in area
## 10617                                                                                                                                                                                                                      Possible exposure to student w/ eye infection
## 10618                                                                                                                                                                                              Possible noise caused hearing loss due to occupational noise exposure
## 10619                                                                                                                                                                       Possible scratch left eye, irritation... Washing windows and sweeping, debris went into eyes
## 10620                                                                                                                                                                                                                      Possibly airborne material flew into left eye
## 10621                                                                                                                                                                                                         Posted at zone 16 and a bug bit staff on top of the eye ()
## 10622                                                                                                                                                         Potassium chloride glass capsule accidentally hit employee near face, causing mild left eye irritation. ()
## 10623                                                                                                                                                                                               Potatoes came flying out of mixer and EE in l eye, potatoes were hot
## 10624                                                                                                                                                                                                                               Potting plants and dirt flew in eyes
## 10625                                                                                                                                                                                          Pouring clorox down drain in ladies locker room some splashed in left eye
## 10626                                                                                                                                                                                                             Pouring hi-con into another bottle, splash into rteye.
## 10627                                                                                                                                                                                        Pouring water for a juvenile when juvenile hit EE in the face with his fist
## 10628                                                                                                                                                                                                              Pouring wax in mop bucket and some splashed in EE eye
## 10629                                                                                                                                                                                       Powerchair malfunctioned by stopping and throwing EE onto concrete sidewalk.
## 10630                                                                                                               Ppo conducted a urine test (instant). Test showed negative- ppo went to dispose of urine in toliet and urine splashed back into ppo's eye/face area.
## 10631                                                                                                                                                Ppo reid had conducted a home visit and was returning to his vehicle when a tree limb poked him in the left eye. ()
## 10632                                                                                                                                                                Preparing breakfast; client grabbed bowl; hit EE on side of face (right jaw) and right shoulder. ()
## 10633                                                                                                               Preparing client for bath, client went inside door, turned around and came after EE with hands stretched out. EE moved back, lost balance, hit wall.
## 10634     Preparing to pack out two inmates for segregation. Employee was walking to control as she got to the door employee slipped on the floor inmate had mopped too much water on the floor employee slipped face hit the locker employee went down employee on back
## 10635                                                                                                                                    Presenting patient education program to inmates in third floor mental health & was slapped on right side of face/head by inmate
## 10636                                                                                                                                                                                    Preventing inmate from hanging himself, inmate punched employee in the nose. ()
## 10637                                                                                                                                           Prison inmate threw cup of unrine and feces on the right side of the correctional officer... In the general face area ()
## 10638                                                                                                                                                                                                   Probing wood active themites was coming off of joist hit in face
## 10639                                                                                                                                                   Procedure complete root canal, calcuium hydroxide was on rubber damm that popped into EE's right eye burning it.
## 10640          Proceeding to remove my bookbag from my trunk, I was close to the rock bed, I stopped on rocks and took out one of my bags and set it aside. I went back to get my other bag, as I stepped on the rock bed again the rock shifted throwing me forward. ()
## 10641                                                                                                                                             Process of opening my office door, miscalculated the distance between the door and myself - hit left brow with door ()
## 10642                                                                                                                                                                                                                 Prolonged exposure to excessive noise in workplace
## 10643                                                                                                                                                                    Protecting students from agressive student, when kicked in the face. Left cheek just below eye.
## 10644                                                                                                                                                                Provided inmate with insulin. Inmate portion of meds and squirted remainer in my eyes and mouth. ()
## 10645                                                                                                                                                                       Providing basic client care told staff she was dizzy then fainted hitting her head on bed ()
## 10646                                                                                                                                                                    Providing first aid to swimmer who had received cut above lip. Fluid May have been human blood.
## 10647                                                                                                                    Providing security while inmates were digging ditch. Stepped back along length of ditch, side ofditch collapsed. Fell backwards hit head on gun
## 10648                                                                                                                                                                    Providing treatment to client who had pink eyes (conjunctivitis); eye irritation (left eye). ()
## 10649                                                                                                                                                                                  Pruning fence line with gas powered trimmers, came in contact with poison ivy. ()
## 10650                        Prybar slipped from point of leverage; employee was struck by the handle of the praybar, employee was using leverage to check for wear in the ball joint of an upper control arm. Employee states injury was to right eyebrow & bruised. ()
## 10651                                                                                                                                                                                 Psychological injury caused by compensable injury and circumstances of employment.
## 10652                                                                                                                                                                                                                         Pt accidentaly struck employee's right eye
## 10653                                                                                                                                                                    Pt accuse me of laughing at him years ago pt then sucker punched me and knocked me to the floor
## 10654                                                                                                                                                                            Pt asked for a cigarette staff told pt he did not have one pt struck staff in right eye
## 10655                                                                                                                                                                                                           Pt attacked EE fm behind, hitting EE in head and face ()
## 10656                                                                                                                                                                                                        Pt attacked EE hitting him in the face and back of head. ()
## 10657                                                                                                                                                                                    Pt attacked EE, fell to floor, pt grabbed EE's badge, scratching him on face ()
## 10658                                                                                                              Pt attacked EE, striking EE in the face, EE wears glasses, hit caused glasses to cut EE on right side of face, reported blurry vision in right eye ()
## 10659                                                                                                                                                                                               Pt attacked employee when being redirected to move from horseshoe ()
## 10660                                                                                                                               Pt attacked staff while trying to take another pt on to elevator, staff tried redirection with pt, failed, pt hit staff in face area
## 10661                                                                                                                                                                                                         Pt attacked staff, hit staff on l side of face under l eye
## 10662                                                                                                                                                                                                                       Pt became aggitated, scratched EE on face ()
## 10663                                                                                                                                                                                     Pt became aggressive, shoving EE to the floor, EE hit head on wall & floor. ()
## 10664                                                                                                                                                                                                                             Pt became aggressive, spit in EE's eye
## 10665                                                                                                                                                                                                    Pt became aggressive, struck EE in the head with closed fist ()
## 10666                                                                                                                                                                        Pt became aggressive/swung @ EE, during eri, fell, hit left side of head on arm of chair ()
## 10667                                                                                                                                         Pt became agitated and started throwing ta staff and pt was put ih nte pic hold and EE was hit in the lt side of the face.
## 10668                                                                                                                                                                                           Pt became agitated, began hitting EE in face area, back began hurting ()
## 10669                                                                                                                                                                                                                         Pt became combative, spat in EE's r eye ()
## 10670                                                                                                                                             Pt became upset after being redirected, pt raised arm to strike EE, EE tried to block, pt hit EE in right eye/cheek ()
## 10671                                                                                                                                                                                                                              Pt became upset, spat in EE's face ()
## 10672                                                                                                                                                                        Pt became violent and was hitting other pts and staff. Pt struck me in the left hand jaw ()
## 10673                                                                                                                                                                    Pt began aggressive, began kicking EE, EE grabbed pt's feet, pt scratched EE in the left eye ()
## 10674                                                                                                                           Pt began fighting EE after being told to take a shower, pt spit on EE, punch him in the face causing him to hit his head on the wall. ()
## 10675                                                                                                                                                                                                                                      Pt began pulling EE's hair ()
## 10676                                                                                                                                                                                                                                Pt began punching EE in the face ()
## 10677                                                                                                                                                                                                       Pt being transported to restraint room, spat in EE's eyes ()
## 10678                                                                                                                               Pt came in, demanded coffee, cna asked him to calm down and stop yelling, pt struck EE in r lower jaw causing cut to inside of mouth
## 10679                                                                                                                                                                                        Pt came out of bedroom, attacked EE, slapped EE on the left side of face ()
## 10680                                                                                                                                                                  Pt came out of room asked me what I was doing and just started hitting me in head and left eye ()
## 10681                                                                                                                                                                                                        Pt came out of room, grabbed EE's hair, began pulling it ()
## 10682                                                                                                                                                                                                                    Pt came up to EE and smacked her across face ()
## 10683                                                                                                                                              Pt came up to office very upset, pt was asked to wait to try to talk to rn, patient then vballed up fist and hit cna.
## 10684                                                                                                                                                                  Pt didn't want to stay in class, pt was being removed, lungded fw pulling EE's hair forcefully ()
## 10685                                                                                                                                                                                                                  Pt got aggitated, began hitting EE in the head ()
## 10686                                                                                                                                                                                 Pt got up and began shaking fist in EE's face, sticking EE in right temple area ()
## 10687                                                                                                                                                                                                                       Pt got up out of chair, spat in EE's face ()
## 10688                                                                                                                                                                                  Pt grabbed EE's hair on right side, pulled until c0-worker released pt's grasp ()
## 10689                                                                                                                                                                                                                                               Pt hit EE in face ()
## 10690                                                                                                                                                                                                                                 Pt hit EE in left jaw with fist ()
## 10691                                                                                                                                                                                                                               Pt hit employee in face with fist ()
## 10692                                                                                                                                                                                           Pt hit employee in right eye and mouth, fell to ground on right shoulder
## 10693                                                                                                                                                                                                                          Pt hit employee in side of head/temple ()
## 10694                                                                                                                                                                                                                        Pt hit me closed fist on left side of mouth
## 10695                                                                                                                                                                                                                                    Pt kicked EE in the left ear ()
## 10696                                                                                                                         Pt on ca1:1 went to br, another pot and the sapt started to get aggressive. Emp stepped in between pts and one pt punched stf in r-eye. ()
## 10697                                                                                                                                              Pt picked up a puzzle that was in a box and swung it across room, something came out of box hitting EE in the nose ()
## 10698                                                                                                                                           Pt pulling on g-tube & EE took his hand loose fromtube. Pt hit EE in rt jaw, busted lip, & chipped rt lower tooth-molar.
## 10699                                                                                                                                                                                                                                          Pt punched EE in mouth ()
## 10700                                                                                                                                                                                                                     Pt punched EE on face, glasses abrased nose ()
## 10701                                                                                                                                                                                                                             Pt punched employee in throat area. ()
## 10702                                                                                                                                                                                                       Pt punched employee with closed fist on left side of face ()
## 10703                                                                                                                                                                                               Pt ran up to EE, punched EE in the lip and right side of eye area ()
## 10704                                                                                                                                                                                                                            Pt scratched EE on left side of face ()
## 10705                                                                                                                                                                                                                      Pt sitting on floor, got up and threw a punch
## 10706                                                                                                                                                                   Pt slammed a chair against a window in the pt library causing glass to get in EE's hair, face ()
## 10707                                                                                                                                                                                                                                            Pt spat in EE's eyes ()
## 10708                                                                                                                                                                                                                                            Pt spat in EE's face ()
## 10709                                                                                                                                                                           Pt spit in EE's eyes when placing pt in restraints, later EE's blood pressure shot up ()
## 10710                                                                                                                                                                                           Pt spit in EE's eyes, EE rubbed eyes, hitting the corner of right eye ()
## 10711                                                                                                                                                                                                                                            Pt spit in EE's face ()
## 10712                                                                                                                                                                                                                  Pt spit in EE's face and hit EE, fracturing tooth
## 10713                                                                                                                                                                                                                                                 Pt spit on EE face
## 10714                                                                                                                                              Pt started in to restroom when occupied, EE redirected pt, pt become aggressive, scratched EE on left side of face ()
## 10715                                                                                                                                                                                                                             Pt struck EE in forehead, no injury ()
## 10716                                                                                                                                                                                                                       Pt struck EE in nose, nose began bleeding ()
## 10717                                                                                                                                                                                                                         Pt struck EE in right eye for no reason ()
## 10718                                                                                                                                                                                                                         Pt struck face and threw juice in left eye
## 10719                                                                                                                                                                                                                                     Pt struck left eye open handed
## 10720                                                                                                                                                                               Pt threw remote controller, EE tried to redirect pt, pt began punching EE in face ()
## 10721                                                                                                                                                                                                      Pt threw shampoo bottle at EE hitting her in the lip/mouth ()
## 10722                                                                                                                                                                                                         Pt tried to snatch paper and coupons from EE, pt hit EE ()
## 10723                                                                                                                            Pt trying to throw ensure on EE, swinging hands & arms, grabbing for door, yelling. EE tried to keeppt from falling. Forehead/lt wrist.
## 10724                                                                                                                                                                                                                                   Pt turned, punched EE in face ()
## 10725                                                                                                                                                                                                                       Pt upset, threathen EE, hit EE 3x in head ()
## 10726                                                                                                                                                                                         Pt upset, threw chair at window, shattered. Sent to tx rm to check eyes ()
## 10727                                                                                                                                                                                                                            Pt walked past EE, spat in EE's eyes ()
## 10728                                                                                                                                                                                                         Pt walked to EE, began hitting EE in head several times ()
## 10729                                                                                                                                                                                                      Pt walked up to EE and punched her in the back of the head ()
## 10730                                                                                                                                                         Pt walked up to trash can, began starring at EE, EE redirected pt, pt struck EE in the nose/ head/chest ()
## 10731                                                                                                                                                                                                               Pt was aggressive, turned and hit EE in right jaw ()
## 10732                                                                                                                                                                               Pt was agitated on hall, EE approached pt, pt punched EE in the left side of head ()
## 10733                                                                                                                                                                                               Pt was attacking another pt, EE intervened, pt hit EE on left jaw ()
## 10734                                                                                                                                                           Pt was being placed in 4 points disruptive/threat-ing behavior and spit directly into EE's face and eyes
## 10735                                                                                                                                                                     Pt was being self injurious, EE put pt in cpi hold, pt kicked EE, headbutted EE in left eye ()
## 10736                                                                                                                                       Pt was being self injurious, EE tried to stop, pt kicked EE on right side of face, EE fell backwards hitting head on wall ()
## 10737                                                                                                                                                                    Pt was cleaning up a urine spill-removed gloves and was washing hands, splashed into right eye.
## 10738                                                                                                                                                                                                    Pt was extremly angry, started fighting, hit EE in face w/ fist
## 10739                                                                                                                        Pt was going to attach EE's co-worker, EE intervened, pt hit this EE in the right jaw, when placing pt in manual restraints EE hurt back ()
## 10740                                                                                                              Pt was trying to go over to the male ward I was standing at the door trying to get her to go back she punched me pulled my hair bit me and spit on me
## 10741                                                                                                                                                   Pt was upset, jumped up, rushed office door, EE tried to hold door, door hit EE on the right side of forehead ()
## 10742                                                                                                                                                                                     Pt was walking to t/o room, began picking bloody nose, flicking blood on EE ()
## 10743                                                                                                                        Pt was wanting in laundry room, EE let him in, began messing with damp clothes, tried to get them to lv alone, pt hit EE above right eye ()
## 10744                                                                                                                                                                                                    Pt's hand got loose, swung at EE, scratching EE in right eye ()
## 10745                                                                                                                                                                                                   Ptient attacked and hit staff on the back of head and on nose ()
## 10746                                                                                                                                                                     Pts got in altercation among themselves, throwing food trays, EE was struck in head by tray ()
## 10747                                                                                                                                                                               Pulled a binder from a book shelf, some dust hit my right eye, causing inflammation.
## 10748                                                                                                                                                                                                                                 Pulled down visor in service truck
## 10749                                                                                                                                                                     Pulled fish tape out of conduit checking end of tape. When it slipped striking EE on right eye
## 10750                                                                                                                                                                                           Pulled limb out of tree- leaned over another linb hit him in the rt eye.
## 10751                                                                                                                                                                                             Pulled on stuck door to open and it swung open andhit him in the mouth
## 10752                                                                                                                                                                                       Pulled out dresserflatscreen tv on top, tv flipped and hit on top of head ()
## 10753                                                                                                                                                    Pulled out key board encoder and was unwrapping cord. The end of the metal pc flew up and hit me in the eye. ()
## 10754                                                                                                                                                                                                Pulled out patients bed to make and hit head on shelf above bed. ()
## 10755                                                                                                                                                                                                                       Pulled paper from stack and scratched eye ()
## 10756                                                                                                                            Pulled staple out of a stack of papers using a staple puller & the staple flew from paper into left eye striking employee in the pupil.
## 10757                                                                                                                                                                                                               Pulled statrer cord on motor and hit himself in jaw.
## 10758                                                                                                                                Pulling 5th wheel locking device w/metal rod used to unlock 5th wheel & rod slipped out of place & struck EE on chin just under lip
## 10759                                                                                                                                                                           Pulling a cart with a rope, rope got stuck under wheel and broke loose and hit EE in eye
## 10760                                                                                                                         Pulling a file from bottom drawer of filing cabinet & raised up, hitting her head on corner oftop filing cabinet drawer. Head-top lt side.
## 10761                                                                                                                     Pulling a file from bottom of 4-drawer lateral file cabinet, top drawer floated open, and when eestood up she hit her head on top drawer. Head
## 10762                                                                                                                      Pulling apart a stack of 7 or 8 chairs and chair got stuck and when he jerked it came loose and hit his two front teeth chipping both of them
## 10763                                                                                                                                                                                   Pulling bearing and housing burst releasing pullerunder force. Knot on forehead.
## 10764                                                                                                                                                                                                        Pulling cable in ceiling and something fell into his eye ()
## 10765                                                                                                                                                                                             Pulling cable to a room, opend up the ceiling, tile fell into left eye
## 10766                                                                                                                                                                               Pulling files out of cabinet when drawer came all the out of the cabinet and hit her
## 10767                                                                                                                                                                                                        Pulling foil sheet from roll, foil edge scraped left eye ()
## 10768                                                                                                                                                                                                      Pulling honeysuckle in gardens, plant branch struck right eye
## 10769                                                                       Pulling key from office door; felt myself slipping and as I was turning the key slipped on the edge of the plastic bag hanging out of shelf of book case. Hit head against entrance door. ()
## 10770                                                                                                                                                                                      Pulling old shelving off of wall and it struck him left side of face near eye
## 10771                                                                                                                     Pulling ratchet strap for binding tractor from thebed of a 2 ton truck. Metal & strap got hung, snapback striking EE in the mouth, broke teeth
## 10772                                                                                                                                                                Pulling sign post out of ground when sign post hit tree limb knocking it down on employees head. ()
## 10773                                                                                                                                                                                Pulling telephone wire. Pull rope broke, fell stricking back of head on door frame.
## 10774                                                                                                                                                                                Pulling the recycling can the top flew off hitting me on the side of my forehead ()
## 10775                                                                                                                                                                                         Pulling trash and empting into larger trash barrell. Pulled muscle in back
## 10776                                                                                                                                                                                     Pulling trash on 4th floor. Raised head and hit bookcase on left side of head.
## 10777                                                                                                                                                                                        Pulling up carpet strips from adhesive floor. Lost balance and hit head. ()
## 10778                                                                                                                                                Pulling wire for receptical in manhole when wire flipped back after pulling through tie wrap & hit him in right eye
## 10779                                                                                                                                                          Pulling wook strips off top of cabinet when cabinet fell over on him. Top edge of cabinet hit him on head
## 10780                                                                                                                                   Pumping up container that holds asphalt cleaner. End of hose broke off; spraying cleaner into eyes. List injury as: both eyes ()
## 10781                                                                                                                                                                                                                     Punched by patient on top left side of head ()
## 10782                                                                                                                                                                                                                                       Punched in face by a patient
## 10783                                                                                                                                                                                                                                        Punched in face by resident
## 10784                                                                                                                                                                                                                                       Punched in left eye by pt ()
## 10785                                                                                                                                                                                                                       Punched in mouth with patient's closed fist.
## 10786                                                                                                                                                                                                   Punched in stomach & hit left side of staff's facewith his fist.
## 10787                                                                                                                                    Pushed by an inmate from behind. Fell down to floorcutting finger, bumping forehead & striking ribs. Exposed to inmate's blood.
## 10788                                                                                                                                                                                                  Pushed/shoved into wall by patient. Caused her to strike her head
## 10789                                                                                                                                                                                                       Pushing cart when chemical on cart splashed into her eye. ()
## 10790                                                                                                              Pushing chair from behind the deska dn the chair hit something and started to flip over and caught legs of chair and scrapped nose on the metal desk.
## 10791                                                                                                                                                                                           Pushing up floors & eyes kept getting red & started to hurt in right eye
## 10792                                                                                                                                        Pushing vander lift in room & wheels on vander lift would not move & the vander lift hit the left side of front forehead ()
## 10793                                                                                                                                                                                                       Put on robe for bath, client head butted me. Injured lt eye.
## 10794                                                                                                                                                                                                                        Put stethoscope in ear with endcap on it ()
## 10795                                                                                                                     Putitng phone book in overhead bookcase. Went to move away & feet became tangled in data cables causing her to fall backwards hitting her head
## 10796                                                                                                                                                                                         Putting a bag in trash can and walked into corner of the wall hitting nose
## 10797                                                                 Putting an inmate up from recreation and I was attempting to take him from the outside rec cubicle. Myself & co travis spence exited rec cubicle with inmate and were struck with fecal matter. ()
## 10798                                                                                                                                                                                    Putting away broom when piece of something fell out of broom & went in left eye
## 10799                                                                                                                                     Putting away clothin in an individuals drawer, she struck the left side of her temple against the corner of an open drawer. ()
## 10800                                                                                                                                                                                         Putting away stock. Can fell off shelf and hit her on lft side of her head
## 10801                                                                                                                                                      Putting bags on a shelf that was under a protruding shelf holding a tv and struck his head on the tv shelf ()
## 10802                                                                                                                Putting cleaning bottles into white cleaning bucket, one of the bottle hit nozzle of another cleaning bottle w/ cleaner in it sprayed her in lt eye
## 10803                                                                                                                                                                                                              Putting clients socks on and he kicked EE in forehead
## 10804                                                                                                                                                       Putting clothes in men's clothes locker - raised up and hit head on metal rack that holds arm rack in place.
## 10805                                                                                                                                                                                  Putting creative arts kits together, whipe taping sandshakers, sand got in lt eye
## 10806                                                                                                                                                                                                               Putting dirty cages onto wash rack. Hit hand on edge
## 10807                                                                                                                                                                             Putting down strip floors grabl. Buffer and slipped hit head on hanles. Head stitches.
## 10808                                                                                                                                                                                           Putting forms in a file cabinet, struck corner of rt eye w/ a paper form
## 10809                                                                                                                                                                      Putting hip protectors in cabinet, cabinet door open and hit back of head on cabinet door. ()
## 10810                                                                                                                                                                                                              Putting inmate back in his cell when he spit on me ()
## 10811                                                                                                                                                                                                            Putting inmate in restraints, inmate spit in my face ()
## 10812                                                                                                                                                                                                      Putting keys up, hit mouth on arm of chair, breaking tooth ()
## 10813                                                                                                                                                                                                 Putting lense in water to clean with. Did not haveon safety shield
## 10814                                                                                                                                                                                                                       Putting liquid in washer, splashed in rt eye
## 10815                                                                                                                                                                               Putting nozzle on bottle of all purpose cleaner & liquid from nozzle splashed in eye
## 10816                                                                                                                                                                 Putting out fire in cell. Inmate threw unknown liquid substance in EE's face, getting in right eye
## 10817                                                                                                                                                                                                                   Putting out mulch and debris flew in left eye ()
## 10818                                                                                                                                                                                                       Putting out mulch on windy day and mulch blew in left eye ()
## 10819                                                                                                                                                                  Putting out pines straw and when he bent over the tree branch went under glasses and scraped eye.
## 10820                                                                                                                                         Putting patient in cpi hold, employee fell backward with patient & employee strcuk her head on the corner of a television.
## 10821                                                                                                                                                                                      Putting patient in time out co-worker's shirt collar brushed across right eye
## 10822                                                                                                                                                                                                    Putting patients shoes on-kicked in l. Side of face/jaw line ()
## 10823                                                                                                                                                                                                      Putting resident in chair; resident headbutted EE in the nose
## 10824                                                                                                                                                       Putting socks and shoes on resident. Aggressive resident kicked EE in mouth, breaking tooth. Left eye tooth.
## 10825                                                                                                                                                                                                                        Pvc pipe shattering & fragment hit left eye
## 10826                                                                                                                                                                                Qtip with specimen somehow came out of vial-EE felt a wetness on left side of face.
## 10827                                                                                                                                                                                                    Qualifying for firearms hearing loss ( traumatic only ) ears ()
## 10828                                                                                                                                              Qualifying shooting shot gun, at firing range & after shooting. Hit safety glasses. Glassed pushed hard against nose.
## 10829                                                                                                                                              Qualifying with the shotgun when the recoil of the weapon kicked back and hit him on the rt cheeck bone under his eye
## 10830                                                                                                                                                                                                   Racking juice for breakfast. Stood up & hit head on metal shelf.
## 10831                                                                                                                                                                                                                             Ran into a support duck - injured head
## 10832                                                                                                                                                                       Ran into bottom of open file drawer. Setting up to look into an EE's file to research letter
## 10833                                                                                                                                                                                                                 Ran into door while opening it, split left eyebrow
## 10834                                                                                                                                                                                                          Rash on face for 1 wk. Working w/fabric in upholstry shop
## 10835                                 Raymond mosley was lighting the furnace in the davis center. There was a longer daelay than usual and he moved in closer to see why the furnace was lit and at that moment the unit ignited blowing debris in his face and eye. ()
## 10836                                                                                                                                                                                                       Re-directing pt, pt swung at EE striking him in the cheek ()
## 10837                                                                                                                                                           Reached down to pick up a wooden block from the floor and a client threw a brush and hit her in the eye.
## 10838                                                                                                                                                                          Reached to pick something off the floor, came up in full force and hit head on xray tube.
## 10839                                                                                                                                                                                             Reached up and wiped eyes with gloved hands that had sporclenz on them
## 10840                                                                                                                                         Reaching for a dry mop when a open container of liquid 105 deodorizer knocked off the shelf and splashed into EE left eye.
## 10841                                                                                                                                                   Reaching up on shelf to get envelope when another piece of paper fell out of closet shelf striking in right eye.
## 10842                                                                                                                                                                                                                                             Reacted to flu shot ()
## 10843                                                                                                                                                                     Received direct face exposure to pepper spray during pepper, oleoresin capsicum spray training
## 10844                                                                                                                                                                   Recieving packages on edge of dock; fell between dock and delivery truck hitting head on railing
## 10845                                                                                                                                                                                                    Redirecting 2 combative clients - client struck emp in the nose
## 10846                                                                                                                                           Redirecting aggressive client towards bedroom-client slammed emp. Into door causing emp. To hit back of head on door. ()
## 10847                                                                                         Redirecting and intervening between 2 patients having an altercation, one patient hit staff in the right eye, breaking his glasses and causing bleeding near nose area. ()
## 10848                                                                                                                                                                           Redirecting patient and the patient struck the staff on right exterior ear with fist. ()
## 10849                                                                                                                                                                                               Redirecting patient with her behavior and was slapped on her face ()
## 10850                                                                                                                                                                       Redirecting patient, another patient came up from behind hitting EE in head knocking EE out.
## 10851                                                                                                                                                                                             Redirecting patient, attempting manual hold, pt hit EE in right ear ()
## 10852                                                                                                                                                                                        Redirecting patient, patient hit tray, tray tipped up and hit EE in nose ()
## 10853                                                                                                                                                                                                Redirecting patient, patient punched employee in r eye and cheek ()
## 10854                                                                                                                                                           Redirecting patient, patient threw a plastic trash can at staff, hitting him on the left side of head ()
## 10855                                                                                                                                                                                                 Redirecting patient-patient punched in r. Jaw with closed fist. ()
## 10856                                                                                                                                                                        Redirecting patient-peer to peer altercation-patient punched in r. Side of head and ear. ()
## 10857                                                                                                                                                                                                 Redirecting patient-pulled glasses off and scratched r. Eyelid. ()
## 10858                                                                                                                                                                              Redirecting resident from another resident0resident spit in face (mouth and eyes). ()
## 10859                                                                                                                                                                      Redirecting resident into room-agitated-kicked in jaw, knocking of glasses and hitting lip ()
## 10860                                                                                                                                                                                               Redirecting resident-aggitated-swung fist and hit on back of head ()
## 10861                                                                                                                                                                Redirecting resident-resident swung and hit with fist on r. Side of face and scratched r. Elbow. ()
## 10862                                                Reece was diving under the bonner bridge in approx. 50' h2o. He was inspecting the pilings and started to complain about an ear squeeze. He was recalled back to the boat. List injury as: ruptured left eardrum ()
## 10863                                                                                                                        Refilling sprayer with floor sealant. Lid failed to latch properly & dropped to ground. Floor sealant splashed in his face & into right eye
## 10864                                                                                                                                                           Released safety locking system on shot gun. Openedit, & unknown object flew off & struck EE in right eye
## 10865                                                                                                                                                   Relieving staff inside control station and walked into the spiral staircase striking the rt side of her forehead
## 10866                                                                                                                        Removed protective eyeware. Repositioned some disposable glass pasteur pipets in glass waste container. Glassed chipped off and hit his eye
## 10867                                                                                                                                                                 Removed shield to look for band on jel. Shield was blocking good view uv exposure to face and eyes
## 10868                                                                                                                                                          Removing a clean out needed to use a hammer, chisel to remove and a chip of brass went into EE right eye.
## 10869                                                                                                                                                                         Removing articles from podium when top slipped & struck her on left hand side of her head.
## 10870                                                                                                                                                                                                              Removing boxes from shelf standing in chair & fell ()
## 10871                                                                                                                      Removing brush out of travel lane due to a fallen tree, during this task employee stated that small amount of dust or debri entered right eye
## 10872                                                                                                                                                                   Removing built in closet w/other employees and a piece of concrete broke hitting EE in the head.
## 10873                                                                                                                                                                                                                   Removing carpet off floor and dust got into eye.
## 10874                                                                                                                                                                                      Removing cath. -patient moved-resulted in urine being splashed into r. Eye ()
## 10875                                                                                                                                                                                             Removing copy from copier, bent down and paper hither in her left eye.
## 10876                                                                                                                                                                                                   Removing inmate (d. Hair) from shower and he spit in his face ()
## 10877                                                                                                                                                                                               Removing inmate from rec cage; cut on left side of face by inmate ()
## 10878                                                                                                                                                                                               Removing inmate from shower when inmate spit in both eyes and mouth.
## 10879                                                                                                                                      Removing linen from apartment in martin village. While taking linen off bed raised up too quickly and struck head on shelving
## 10880                                                                                                                                                                                                      Removing lookout switch. Struck corner of door w/right eyelid
## 10881                                                                                                                  Removing old hard chewing gum that was stuck to bed rails. Gum chipped & pieces of gum flew into her left eye causing her to feel cut & irritated
## 10882                                                                                                                                                  Removing starter from truck from underneath truck as starter was loosened & taken off rust chip fell into his eye
## 10883                                                                                                                                                                       Removing steri strips fm wound to clean, pt jerked away and struck EE in the right eyelid ()
## 10884                                                                                                                                                                                              Removing trash from shelf area, EE bumped her lefteye are on brackets
## 10885                                                                                                                                                                     Removing window tint from window and paint chip popped into eye. Flushed with water and ok. ()
## 10886                                                                                                                                                                   Repairing an elliptical fitness machine grinding off a screw, piece of metal went into right eye
## 10887                                                                                                                                                           Repairing computer workstation when the corner of the overhead cabinet struck his face under his rt eye.
## 10888                                                                                                                                                                                                      Repairing duct work, air pressure blew trash in right eye. ()
## 10889                                                                                                                                                 Repairing steam conditioner tank leak. Old fiber glass and dust fogged into air and entered into his right eye. ()
## 10890                                                                                                                                                  Repeatly hit in the face and back of head by inmate with closed fist. Trying to get inmate off of other coworkers
## 10891                                                                                                              Replacing a valve on one of the argon welding gas distribution line. Pressure valve blew off & hit EE in face & chin. Particles in eyes/cuts on face.
## 10892                                                                                                                                                                                   Replacing broom when broom slipped from hand and inadvertently struck EE in head
## 10893                                                                                                                                                                                                   Replacing bubler of acetic anhydride when vapor got into eyes ()
## 10894                                                                                                                                                                                                    Replacing damaged pipe and came in contact with sewage water ()
## 10895                                                                                                                                                                            Replacing fluorescent lamps. Lamp fell from fixture. Lamp burst & got into right eye ()
## 10896                                                                                                                                     Replacing smoke detector in suspended ceiling some foreign object fell into his eye while removing smoke detector from ceiling
## 10897                                                                                                                                 Replacing supplies following an event, bent down to pick up dropped item, corner of lip of cardboard box hit in open right eye. ()
## 10898         Reported for work at 5:00 pm on 11/7/12. Class began at 5:15 pm. Felt tired and drained when she got to work. 8:30 pm she smelled fumes in the classroom and left. Class ended at 8:45 pm as usual. Went to medical to check vitals. Normal. Went to doc (
## 10899                                                                                                                                                     Reportedly pt & EE were getting off elevator when pt hit EE with the back of his hand. Rt side of mouth/cheek.
## 10900                          Reports voluntarily participating in a volleyball game during a the soar program niner night social event. As he tried to maintain the ball he and a soar participant collided; the participant's shoulder contacted his face and jaw. ()
## 10901                                                                        Reports while standing and talking in an elevated classroom, she stepped wrong at the edge of the step and lost her balance. She fell one step down and struck her head on a table/desk. ()
## 10902                                                                                                                   Repotting plant in greenhouse at wyi, process of removing plant that lodged in brittle plastic container, small piece broke off & flew in lt eye
## 10903                                                                                                                  Required to take direct oc spray to face to be certified in oc spray, officer was receiving the oc spray. Rx#1-cortisporin opthalmic ointment. ()
## 10904                                                         Res swatted at student, hit rt. Ear area outsid of rt ear, no redness or swelling noted. Student had head down close to resident attemping to push res in wheel chair. Res was being transported in wc. ()
## 10905                                                                                                                                 Researcher filling syringe with acrylic acid. Nisarg sprayed with acrylic acid while trying to remove air bubbles from syringe. ()
## 10906                                                                                                                                                                                                                            Resident accidently poked EE in the eye
## 10907                                                                                                                                                    Resident attempting to enter kitchen became combative when redirected & head butted me on left side of face. ()
## 10908                                                                                                                    Resident became aggressive and attempted to pull self out of wheelchair, when trying to keep patientfrom falling to floor patient hit left eye.
## 10909                                                                                                                                                                                              Resident became aggressive and hit EE in the head with a hard object.
## 10910                                                                                           Resident became upset while being provided his tray line privileges. He struck me three times while I attempted to protect another staff member & calm the situation. ()
## 10911                                                                                                                                                     Resident came out of his room, hit me in my face, then he grabbed me around my neck, we both hit the floor. ()
## 10912                                                                                                                                                                                      Resident came out of room upset & slapped EE in rteye slamming head into wall
## 10913                                                                                                                    Resident entered another resident; s room. Attempted to redirect resident then resident punched me on left side of face breaking my glasses. ()
## 10914                                                                                                                                                                                            Resident grabbed my hair & hit me in the back of head multiple times ()
## 10915                                                                                                                                                                                      Resident head butted staff in the face/forehead area causing unconsciousness.
## 10916                                                                                                                                                                                                                                    Resident headbutted EE in mouth
## 10917                                                                                                                                                                                       Resident hit EE in face-lft jaw. Pain in jaw mild contusion lft side of face
## 10918                                                                                                                                                                                   Resident hit EE w/her walker and scratched her in the face and pulled EE's hair.
## 10919                                                                                                                                                                                                                                       Resident hit staff in rt eye
## 10920                                                                                                                                                                                                                                      Resident hit staff in rt eye.
## 10921                                                                                                                                   Resident in classroom became upset, EE attempted to redirect him to sit down in chair, resident head butted staff when EE turned
## 10922                                                                                                                                                                                                 Resident in unit head butted staff as staff was giving him a bath.
## 10923                                                                                                                                                                                   Resident intervention-EE was punched in left side of head in the cheek bone area
## 10924                                                                                                                  Resident jumped up from soft & slapped emplyee on l side of face. Resident tried to turn table over on emplyee. Emplyee caught w/extended thumbs.
## 10925                                                                                                                                                                                                           Resident kicked EE in the mouth possibly dislocating jaw
## 10926                                                                                                                                                                                                            Resident kicked door, causing it to slam into EE's head
## 10927                                                                                                                                                                                                                         Resident poked finger in staff's right eye
## 10928                                                                                                                                                                                                                         Resident punched EE in face hitting lip ()
## 10929                                                                                                                                  Resident punched me in the head left side and I backed away and asked him if he was okay. Punched with right hand closed fist. ()
## 10930                                                                                                                                                                                     Resident put up laundry in EE's area from a cot- tage that had conjunctivitis.
## 10931                                                                                                                                                                                             Resident repositioning himself, raised to EE and struck EE on forehead
## 10932                                                                                                                                                         Resident snatched belt while personal care was being given and hit EE in the forehead with belt buckle. ()
## 10933                                                                                                                                                                                                                                              Resident struck EE ()
## 10934                                                                                                                                                                                                 Resident struck EE across the nose while EE was walking up hallway
## 10935                                                                                                                                                                                                                 Resident struck EE in the head and chest with fist
## 10936                                                                                                                                                                                               Resident struck EE in the mouth while EE was assisting with haircuts
## 10937                                                                                                                                                                                                          Resident swung left arm, contacted with my right cheek ()
## 10938                                                                                                                                                                                                             Resident threw football striking EE on rt side of face
## 10939                                                                                                                                                                                                                         Resident threw laundry powder in EE's eyes
## 10940                                                                                                                                                                                                                                Resident threw soap in staff's eyes
## 10941                                                                                                                                                                                                                            Resident threw soap powder in EE's eyes
## 10942                                                                                                                                           Resident try to get out of the bed and I gave him some assistant then he hit me in the nose. I cried out & help came. ()
## 10943                                                                                                                 Resident using right hand hit EE in face. Another hct was assisting at that time with getting resident dressed. Resident was standing at the time.
## 10944                                                                                                                          Resident wanted to go on golf cart ride-informed would go in the afternoon-resident hit employee in l. Side of head and ear with fist. ()
## 10945                                                                                                                                                                                 Resident was at the window getting paid and turned around and hit EE in the rt eye
## 10946                                                                                                                                                                         Resident was chasing another resident and EE turned around and was head butted by resident
## 10947                                                                           Resident was mad about something. I asked him why he was in his room hitting his chest and he started mumbling something. He then stepped out the doorway and punched me in the chin. ()
## 10948                                                                                                                                                                                          Resident was upset and rocking, she jerked her head up hitting EE in nose
## 10949                                                                                                                                                                             Resident was very combative and aggressive, resident hit EE in the head & the mouth ()
## 10950                                                                                                                                              Resident was walking down the hall and EE kept resident from falling and resident hit EE on forehead with his fist ()
## 10951                                                                                                                                                    Resident was walking to time out, she turned around and aggressed towards staff, scratching right side of face.
## 10952                                                                                                                      Responded to a domestic dispute in parking lot during football game. Vehicle was struck by another vehicle. The computer struck the his face.
## 10953                                                                                                                                  Responded to code yellow & two officers had used their oc spray (pepper spray) to control an inmate & the spray got into his eyes
## 10954                                                                                                                                                  Responded to fire set by inmate. Piece of mattress filling got into eye as evacutating and extinguishing fire. ()
## 10955                               Responded to offender's residence for eha strap tamper and arrest with assistance by law enforcement. During arrest procedure, he was struck on the left side of face by offender's left hand causing contusion on left jaw area. ()
## 10956                                                                                                  Responded to officers distress call. When I arrived at the upper shower, the inmate spit in another officer's face and a lot of the spit when in my right eye. ()
## 10957                                                                                                                                                                                                Responding for a call of assistant. Got hit in the back of the head
## 10958                                                                                                                                                  Responding for assistance. Hit on back of head, inmate landed on top of right knee after 2 other fights broke out
## 10959                                                                                                                                                                                               Responding to a code 4 (fight) inmate spit blood on officers face ()
## 10960                                                                                                                                                                                          Responding to a code 4 when inmate struck him in the face with a baton ()
## 10961                                                                                                                                                                                                                                            Responding to code 4 ()
## 10962                                                                                                                                                          Responding to code 4 - inmate disturbance employee hit face first into the bars causing facial contusions
## 10963                                                                                                                                                           Responding to code 4 struck by baton. Attempting to break up a fight, other staff using baton hit me. ()
## 10964                                                                                                                                                                                                      Responding to code 4; dropped radio; hit head on door jam. ()
## 10965                                                                                                                                                                                                  Responding to code 7 assualted by I/m hit by chair and punched ()
## 10966                                                                                                                                                                                          Responding to disturbance call. Suspect struck officer with clothing iron
## 10967                                                                                                                                                                                                            Responding to pt escalating, pt punched EE in mouth. ()
## 10968                                                                                                                                                       Responding to pt's call, EE stood up suddenly and felt dizzy and passed out, fell and hit forehead on table.
## 10969                                                                                                                                                                                    Restoring hvac equipment in warwick center boiler room. Hit head on rusty pipe.
## 10970                                                                                                                                                                Restrained inmate following altercation. Inmate continued to scream at inmate. Blood squirted at EE
## 10971                                                                                                                                                                 Restraining a juvenile and during altercation got a facial laceration/contustion, broke eyeglasses
## 10972                                                                                                                                                                Restraining a juvenile that was fighting, he tripped and fell hitting his nose of a filing cabinet.
## 10973                                                                                                                             Restraining agitated pt. Pt tried to bite staff. Staff had to let go, pt started hitting staff on head 3x's. EE got bite by pt anyway.
## 10974                                                                                                                                                                                                       Restraining an inmate and got hit in the back of the head ()
## 10975                                                                                                                                                                                                    Restraining inmate and inmate head butted with extreme force ()
## 10976                                                                                                                                                                                                                                Restraining inmate and sprain wrist
## 10977                                                                                                                                                                                                          Restraining of juvenile, juvenile spit in employee's eyes
## 10978                                                                                                                                                                                                      Restraining patient fell and struck forehead on edge of chair
## 10979                                                                                                                                                                                                                  Restraining pt pt's arms flailing struck r eye ()
## 10980                                                                                                                                                                                                                       Restraining pt striking out grazed right eye
## 10981                                                                                                                                                                                                     Restraining resident, was headbutted, breaking bridge in mouth
## 10982                                                                                                                                                                                     Retrieving his lunch from refrigerator all purposecleaner & go some in his eye
## 10983                                                                                                                    Retrieving tools from tool box on leading clock. As bent over tool box when antoher EE accidental-ly knocked a roll of duct tape from top shelf
## 10984                                                                Return from field trip and student became agitated and employee placed student in therapeutic hold and student head butted employee in the face chipping upper. Lower incisor teeth of left side ()
## 10985                                                                                                                                          Returning detection wand to union sgts office, inmate attacked sgt. Zimmerman, attempted to control inmate disturbance ()
## 10986                                                                                                                            Returning to meeting tripped on uneven marble floor & fell, splitting head open, also injured left cheek, eye & left knee, face & chin.
## 10987                                                                                                             Returning to office after parole release traffic heavy & continuosly breaking car behind attemped to stop, but was unable to due to excessive speed re
## 10988                                                                                                                                                                                                       Returning to unit on 64 bypass something flew in my r-eye ()
## 10989                                                                                                                         Riding in privately owned vehicle on passenger side. Was struck by another vehicle. Passenger side door frame was bent & EE's head was hit
## 10990                                                                                                                                                                                                                       Riding john deere gator and dirt flew in eye
## 10991                                                                                                                                                                                                                                                          Right eye
## 10992                                                                                                                                                                                                  Right eye is pink after working w/client who had conjunctivities.
## 10993                                                                                                                                                                                       Right eye/face, driving tractor down mlk Dr, Hit telephone pol with tractor.
## 10994                                                                                                                                                                                                  Right side of the head (employee was found lying on the floor) ()
## 10995                                                                                                                                                                                                                                                Ringing in ears. ()
## 10996                                                                                                                                                                                                     Rinsing glassware with solvent, solvent splashed back into eye
## 10997                                                                                                                                                                                                           Rinsing out patients boxers-water splashed onto face. ()
## 10998                                                                                                                                                                                                           Rinsing out residents jeans-fluids splashed in l. Eye ()
## 10999                                                                                                                                                                                         Rocess of restraining a resident and hit her head on the dining room door.
## 11000                                                                                                                                                                                                                                                    Rock in the eye
## 11001      Rosa was stocking her supplies in her supply closet on the 5h floor of sullivan room 505. She was moving stuff around to make room and placed a bottle of kai dri on the second shelf when it fell and the top came off causing the fluid to splash in her ()
## 11002                                                                                                                             Rosco russell was on ladder putting light tubes inwhile EE passed light bulbs to EE, the light fixture fell, hitting EE in left temple
## 11003                                                                                                                                                                      Rose from kneeling position and struck his forehead on the door frame in the resraint room ()
## 11004                                                                                                                                                                                        Route block check. Inmate struck me in the forehead with his right fist. ()
## 11005                                                                                                                                                                                                                         Rt eye injury during pepper spray training
## 11006                                                                                                                                                                                                            Rt eye was struck by a branch fro ma rhododendron tree.
## 11007                                                                                                                                                                                                        Rubber band broke when stretched & hit eye (freak accident)
## 11008                                                                                                                                                                                            Rubber band removed with calcium hydroxide and popped into EE's rt eye.
## 11009                                                                                                                                                                     Running a machine ditch witch and the wind was blowing the soil around and went in his eye. ()
## 11010                                                                                                                                                                                                                           Running through the parking lot and fell
## 11011                                                                                                                                                                                                    Ruptured a hydraluic fluid line while moving a basket of rubber
## 11012                                                                                                                                                                                             Rust from grader got stuck in right eye, EE was wearing safety glasses
## 11013                                                                                                                                                                                  Rusty wire lying loose on ground. Went to coil it up and popped up to strike face
## 11014                                                                                                                                                                           Sam was last seen restocking the drink cooler, he was found on the kitchen floor. Denied
## 11015                                                                                                                                 Samantha was tightening a nut on a gas regulator when the wrench she was using slipped off the nut and hit her in the forehead. ()
## 11016                                                                                                                                            Sampling bulk load of peanuts struck about the head by unknown object no object found unsure of the mechanism of injury
## 11017                                                                                                                                                                                Sand in right eye while riding in van from job site to job site, sand blew into eye
## 11018                                                                                                                       Sat down in chair, leaned back and chair flipped over backwards. Struck head on a peg on the wall and then struck back of head on the floor.
## 11019                                                                   Saw 3 officers with there backs to me in the lot and I realizied they did not see my car so I avoid hitting them I went up on the curb and slammed my eye and head on visor with items on it. ()
## 11020                                                                                                                                                                                                                             Saw dust flew in eyes while using saw.
## 11021                                                                                                                                                                                                                             Saw dust got into eye after using saw.
## 11022                                                                                                                                                                                                                              Sawdust and debris flew into left eye
## 11023                                                                                                                                                                                                                      Sawdust blew into rt eye while using air hose
## 11024                                                                                                                                                                          Sawing a piece of metal and small piece went under safety glasses and went into left eye.
## 11025                                                                                                                                                                                      Sawing tile/concrete and something flew into lft eyes. Had safety glasses on.
## 11026                                                                                                                                                                                                                      Sawing wall when piece of metal flew into eye
## 11027                                                                                                                                                                                                                      Sawing wood, adn wood chips flew into rt eye.
## 11028                                                                                                                       Says after giving blood to red cross began to walk to end of blood mobile to where snacks were/reachd for cookie and passed out and hit head
## 11029                                                                                                                                                                           Scraping paint chips from ceiling w/saftey glasses on, chip accidentily got in right eye
## 11030                                                                                                                                                                                                          Scraping paint fm windows, chip of paint got in left eye.
## 11031                                                                                                                                                                                         Scraping paint on overhead columns at barrett blg foreign object in eye ()
## 11032                                                                                                                                                                                                           Scrapping paint off wall and got paint chip in left eye.
## 11033                                                                                                                                                                                                                  Scratch to lt side of face, abrasion to rt elbow.
## 11034                                                                                                                                                                                                              Scratched by inmate on face during cell extraction ()
## 11035                                                                                                                                                                                  Scratched l/r arms, l side of face - pt became combatative began scratching EE ()
## 11036                                                                                                                                                                                                                 Scratched left eye after taking off safety glasses
## 11037                                                                                                                                                                                          Scratched on left eye by a patient while reaching to take b-ball from me.
## 11038                                                                                                                                                                          Scuba diving in game fish exhibit tank & pressure in water caused ear infection-right ear
## 11039                                                                                                                                                                              Scuba training & began experiencing pain in ears. Continued after diving was complete
## 11040                                                                                                                                                                                                                                   Search of offender sresidence ()
## 11041                                                                                                                                                                                     Searching a locker and found container with unknow liquid with stronf smell ()
## 11042                                                                                                                                 Searching d-hall, went into the bathroom to wash face & hands, washed hands first, washed face nexteyes began burning and watering
## 11043                                                                                                                                                                                                                    Searching inmate and was assaulted by inmate ()
## 11044                                                                                                                                      Searching inmate's cell. Asked inmate for keys to his locker. Inmate threw keys & hit officer in left side of head @ left eye
## 11045                                                                                                                            Searching truck prior to it leaving area. Leaning down looking under truck & when raised up struck head on metal brace at back of truck
## 11046                                                                                                                                             Seated at her desk, other staff accidently shoved her chair causing her coffe cup to strike a gainst her 2 front teeth
## 11047                                                                                                                                                                            Seated next to the client while he was at work. Client hit employee in the left eye. ()
## 11048                                                                                                                                                                                          Securing an inmate for movement, inmate struck the officer in the face ()
## 11049                                                                                                                                                                                Securing office area at stadium. As he left officehe walked into brick wall in dark
## 11050                                                                                                                     Security personnel was removing out-of-controlstudent from the classroom and student hit EE in the eye with her fist when she tried to assist.
## 11051                                                                                                                                                                 Separating 2 patients fighting, hit on left side of face and both arms strained during struggle ()
## 11052                                                                                                                                                                                                                Separating 2 pts, turned hit top of head on wall ()
## 11053                                                                                                                                   Sergeant glance stated that an inmate stood up and begin swinging a cane. The inmate head butted sgt. Glance in his forehead. ()
## 11054                                                                                                                                                                                               Sergeant was returning from the yard when something went into his ()
## 11055                                                                                                                                                                                                                        Serum splashed in eye. Possible hiv contact
## 11056                                                                                                                                                                                                                   Served volleyball and it acidently hit EE in eye
## 11057                                                                                                                                                                     Service crane was stuck causing the mechanism to explode & a large piece of metal in right eye
## 11058                                                                                                                                                                    Serving client lunch. Client punched EE in the mouth, breaking denture plate and cutting mouth.
## 11059                                                                                                                                                                        Serving inmate food trays in segregation when inmate threw cup of urine in EE's facial area
## 11060                                                                                                                                                                                                                     Setting up power washer, branch hit emp in eye
## 11061                                                                                                                                                     Several recent health issues including sleep, coughing, sneezing, headaches related to her office environment.
## 11062     Several students and Dr. Tilotta were unloading equipment from parking lot between hodges lab and upper miller fields. Simultaneously a group of students were playing soccer in upper miller field near the same parking lot. One soccer ball was kicked over
## 11063                                                                                                                                                                      Severe nose bleed. Employee exposed to extreme hot, dry conditions and smoke on fire line. ()
## 11064                                                                                                                                                                                                                   Severe stress, high anxiety and major depression
## 11065                                                                                                                                                          Sewing a bungee cord to a round case when the cord slipped and snapped back sticking her above her eye ()
## 11066        Sgt furr was attempting to clear the inmate yard. An altercation erupted between other inmates and staff. Sgt furr was struck in the right ey by an inmate. The inmate used only his fist to strike sgt furr from behind. (sgt furr was attempting to clear
## 11067                                      Sgt furr was attempting to clear the inmate yard. An altercation erupted between other inmates and staff. Sgt furr was struck in the right eye by an inmate. The inmate used only his fist to strike sgt furr from behind. ()
## 11068                                                                                                                                                                             Sgt stated that inmate threw a work glove at her striking her on the left side of head
## 11069                                                                                                                                                                          Sgt. Jonas was breaking up a fight - inmate bloody spit splattered in her facial area. ()
## 11070                                                                                                                                                                               Sgt. Kuhn was attempting to place inmate nto the holding cell when he refused to go.
## 11071                                                                                  Sgt. Mcrae heard code blue & he approached the corridor & recognized c/o kayla lee laying on the floor. C/o lee had complained of a headache & was advised to go home earlier. ()
## 11072                                                                                                                                                                      Sgt. Miller alleges he was choking on some food and dropped to his knees and fell on back. ()
## 11073                                                                                                                                      Sgt. Reported he was removing chain from inmate when the inmate stood up & spat in sgt. Farrish's face, striking him in eyes.
## 11074                                                                                                                                                                                          Sharpening a machete & metal dust particle went into his lt eye f18 filed
## 11075                                                                                                                                                                         Sharpening putty knives on grinding wheel. Piece flew into rt eye (wearing safety glasses)
## 11076                                                                                                                                                                                           Shaving from copper tubing flew into EE's eye when he cut cooper tubing.
## 11077                                                                                                                                                                                                            Shavings from tree blew into eye while cutting trees ()
## 11078                                                                                                               She looked in a room being renovated in owen hall to see if it was completed so the housekeepers could go in and clean it. She got something in eye.
## 11079                                                                                                                                         She tripped over the stool in the file room and hit her cheek on the corner of a cabinet and has rug burn on her knees. ()
## 11080                                                                                                                  She was at stop light, and another car was stoppedbehind her. A 3rd car behind 2nd car did not stop, hit 2nd car from behind and 2nd car hit her.
## 11081                                                                                                                                                                           She was cleaning, use chemical cause asthma to recurrent. Claim needs to be investigated
## 11082            She was feeding an individual and stood up to assist another one. She sat back down without looking, and completely missed the stool she was using and sat on the floor. She states that by missing her stool, she hit her head and back on a table. ()
## 11083          She was feeding breakfast to inmate in unit one, on the bottom tier of bc 1b. Inmate marvin adams was given a food tray and juices, and he would not secure his food passage door, and threw a liquid mixture of lotion, feces, and urine at her. Aids ()
## 11084                                                                                                                                               She was head butted by an inmate when she was assisting another officer with removing the inmate from the shower. ()
## 11085                                                                                                                                                                                              She was helping arrest a person and was hit in the jaw by the suspect
## 11086                                                                                                                                                   She was loading boxes onto a hand cart, and the handle snapped back striking her face and injuring her left eye.
## 11087                                                                                                                                             She was observing inmates on the smoke pad and an inmate spit and the wid carried it and the spit hit her on the lips.
## 11088                                                                                                                                  She was outside on the yard and started to feel dizzy. She asked another officer to walk her in & when she got in she passed out.
## 11089                                                                                                                                                  She was putting papers and books in metal cabinets, as she was bending down she hit her nose on metal cabinet. ()
## 11090                                                                                                                                                              She was shelving newspaper at dh hill in the west wing and tripped over a power well in the floor. ()
## 11091                                                                                                                                                  She was taking air freshener out of cabinet when it fell over. The contents spashed in her face and right eye. ()
## 11092                                                                                                                                                                                  She was walking down the stairs to leave the office when she fell down the steps.
## 11093                                                                                                                                                                                    She was weeding with a trimmer and blowing when she started bleeding from nose.
## 11094                                                                                                                                                                                                                                              Shelf fell on head ()
## 11095                                                                                                                                                                  Shelly was walking across campus, hit bump in the pavement and fell face forward on the pavement.
## 11096                                                                                                                                                                                        Shelving and pulling newspaper from the hanging folders in the serials dept
## 11097                                                                                                                                                                                                     Shooting shotgun on firing range became dizzy & blacked out ()
## 11098                                                                                                                                                                                                                            Shooting weapons, during weapons recert
## 11099                                                                                                                                Shoveling gravel off of sidewalk and trip over shovel and hit curb with head - stepping from sidewalk - rt side of head behind ear.
## 11100                                                                                                                                                                                                    Shoveling saw dust into a cart, when it blew into her left eye.
## 11101                                                                                                                                Showing jcc dogs to client. Client asked if it wasok to pet the dog. After 15 secs of petting him- dog got aggressive and bit jcc .
## 11102                                                                                                                                                                                                          Shrub branch poked into right eye causing pain andredness
## 11103                                                                                                                                      Shuffling papers at her desk when felt something in her eye does not remember anything hitting her in eye or falling into eye
## 11104                                                                                                                                                                                                                          Sickness since December - head and chest.
## 11105                                                                                                                                                                                                              Side door fell on EE's head while throwing away trash
## 11106                                                                                                                                                                                                               Sidewalk wet and uneven, caused employee to trip. ()
## 11107                                                                                                  Sidonia was using hydrogen peroxide to clean the kitchen counter tops. She sprayed the peroxide on a cleaning rag and splashed back off the rag into her eyes. ()
## 11108                                                                                                                   Simulating a dark smoke filled room, the officer in front of him spun around and EE was struck in the nose with the bottle of the scott air pack
## 11109                                                                                                                                                                           Since 1997 entry to trailers has been necessary tostore equipment - problem with sinuses
## 11110                                                                                                                                                                                                        Since construction started EE has had reoccuring headaches.
## 11111                                                                                                                                                                                                                               Sinus problems related to dust/fumes
## 11112                                                                                                                                                                                                          Sinuses worsening with increased exposure to lab animals.
## 11113                                                                                                                                                                                  Sit down in chair at control desk, chair slid out causing employee to hit head ()
## 11114                                                                                                                                                                                                          Sitting 1:1 w/pt, struck by pt's fist on left jaw area ()
## 11115                                                                                                                                 Sitting 1:1 with pt, pt started after another pt, pt placed in manual restraint, EE was hit in the left side of face (near eye) ()
## 11116                                                                                                                                                  Sitting 1:1, pt walked by approached EE, began hitting EE in head, under right eye and in the back of the neck ()
## 11117                                                                                                                                                                                      Sitting 2:1 w/ pt, pt began hitting EE, struck EE in the left side of face ()
## 11118                                                                                                                                                                                               Sitting 2:1 w/pt, pt charged at EE, began striking EE in the head ()
## 11119                                                                                                                                                                       Sitting against wall in multi-purpose room-metal thermostat fell hitting on crown of head ()
## 11120                                                                                                                                                                                Sitting at desk and something got in ear. Felt fluttering sensation in left ear. ()
## 11121                                                                                                                                                                                   Sitting at desk filing folders and poked self in the eye with folder. Right eye.
## 11122                                                                                                                                                                                                      Sitting at desk in a wing. I/m jimmy davis hit me in face. ()
## 11123                                                                                                                                                                        Sitting at desk near yard door; thought dirt got in left eye, Dr Said it was conjunctivitis
## 11124                                                                                                                                        Sitting at desk tranferring data on the network, some one (1) dropped something on EE head. Head contusions & chipped teeth
## 11125                                                                 Sitting at desk working, odor came over the area and caused employee respiratory distress. It was necessary for employee to leave the building. Continued in distress nose. Employee went home. ()
## 11126                                                                                                                                                                            Sitting at table with clients, client went into bedroom, started hitting, head butting.
## 11127                                                                                                                                                                                                             Sitting at the hospital outside, and eye irritation ()
## 11128                                                                                                                                       Sitting behind nursing station desk, patient became agitated and began hitting staff on left side ofhead with a tape holder.
## 11129                                                                                                                                                                            Sitting beside client, client turned and head butted EE in face, r side of face bruised
## 11130                                                                                                                       Sitting beside pt on bed rest. Pt attempted to getup, when EE reached to help pt, chair slid out from under her & metal back hit EE in head.
## 11131                                                                                                                                                      Sitting in a chair in receiving and when I stood up the nail on the board went into the l side of my head. ()
## 11132                                                                                                                                                                                               Sitting in chair on porch, client threw walkman and hit EE forehead.
## 11133                                                                                                                                                                                           Sitting in chair when client approached and unexpectedly hit her on head
## 11134                                                                                                                                                                                      Sitting in chair, fell back on the floor & hit head on brick wall and leg. ()
## 11135                                                                                                                    Sitting in front of client holding hand while applying blood pressure cuff; client started talking and saliva came from mouth into left eye. ()
## 11136                                                                                                             Sitting in officer's station after donating blood to american redcross and EE felt light headed and put head down on desk, surrounded by medical staff
## 11137                                                                                                                               Sitting in pickup truck waiting for the school bus to remover the stop sign, while waiting we wererear ended by another pickup truck
## 11138                                                                                                                                                                                                         Sitting in rolling chair, leaned back and chair flipped ()
## 11139                                                                                                                                                                                                              Sitting in single cell b when felt insects biting her
## 11140                                                                                                                                                                      Sitting in van, turned on air conditioner, vent blew out particles of somehting into left eye
## 11141                                                                                                             Sitting on floor at filing cabinet-top drawer was open, phone rang, EE jumped to answer phone & hit head against open cabinet drawer. Cut top of head.
## 11142                                                                                                                                                                                               Sitting w/pt, pt jumped up and throwed hot chocolate in EE's face ()
## 11143                                                                                                                                                                  Skaing out erlenmeyer flask to remove liquid inside, thought liquid was water and got into rt eye
## 11144                                                                                                                                            Slipped & fell on concrete floor while waiting for bathroom. Stripper was on floor causing the floor to be slippery. ()
## 11145                                                                                                                                                                                                                           Slipped and fell on newly waxed floor ()
## 11146                                                                                                                                                                                                                    Slipped and hit head and shoulder on jack stand
## 11147                                                                                                                                                                                        Slipped on floor and fell, hitting her head. Injuryrequired stitches at er.
## 11148                                                                                                                                                                                                                  Slipped on ice and fell backwards hitting head ()
## 11149                                                                                                                                                                                                             Slipped on ice in parking deck and slammed her head ()
## 11150                                                                                                                                                                                                                   Slipped on logs in exhibit and hit head on glass
## 11151                                                                                                                                                                                                                    Slipped on slippery floor and hit head on sink.
## 11152                                                                                                                                                                                                                                               Slipped on wet floor
## 11153                                                                                                                                                                                                                                            Slipped on wet floor ()
## 11154                                                                                                                                                                                 Slipped on wet floor hitting head, aggravating site or sutures from earlier injury
## 11155                                                                                                                                                 Slipped on wet piece of metal while running doing physical fitness training for law enforcement training class. ()
## 11156                                                                                                                                                                 Slow gas leak into window - window open breathing fumes for long time dizzy, lightheaded, headache
## 11157                                                                                                                                                                                    Small laceration/2 small knots on head, vehicle accident, vehicle struck bridge
## 11158                                                                                                                                                                                                                             Smoke inhalation - eyes red & inflamed
## 11159                                                                                                                                                                           Sneezing & nasal discharge after maintenance department used chemicals to unclog a drain
## 11160                                                                                                                                 So was using the bathroom and drew service weapon from holster released the magazine turned weapon on its side and weapon fired ()
## 11161                                                                                                                                                                                                               Soap splashed into eyes while changing soap capsule.
## 11162                                                                                                                                                Social worker sitting in nursing station at window, patient punched fist in window causing glass to hit face of EE.
## 11163                                                                                                                                                                                                                      Softball coach was struck in face by softball
## 11164                                                                                                                                                                                                                           Soldering copper pipe. Solder got in eye
## 11165                                                                                                                        Soldier driving 2 1/2 ton truck from elizabeth city to williamston when 18 wheeler side swiped vehicle. Glass entered cab & got in his eyes
## 11166                                                                                                                                                                                                                Solution from a demonstration splashed into her eye
## 11167                                                                                                                                                                                                    Solution that was in the mop bucket splashed into EE's left eye
## 11168                                                                                                                                                                                       Some blood flicked into EE left eye while it was bbeing taken out of patient
## 11169                                                                                                                                                                                                                       Some type of bug bit EE on back of her head.
## 11170                                                                                                                                                                                                                              Some type of bug flew into his rt eye
## 11171                                                                                                                                                                        Someone knocked on survaillance door. Stood up & turned around to open door. Struck in head
## 11172                                                                                                                                                                                                                                  Something fell into EE's left eye
## 11173                                                                                                                                                                                                              Something fell into EE's rt eye while soldering pipe.
## 11174                                                                                                                                                                                                              Something flew in eye when throwing trash in dumpster
## 11175                                                                                                                                                                                                                            Something flew in to EE's left eye.. ..
## 11176                                                                                                                                                                                                                                      Something flew into EE's eye.
## 11177                                                                                                                                                                                                                                  Something flew into EE's left eye
## 11178                                                                                                                                                                                                                                            Something flew into ear
## 11179                                                                                                                                                                                                   Something flew into left eye while helping with special olympics
## 11180                                                                                                                                                                  Something got in employees eye while blowing off walkway. Employee was wearing safety glasses. ()
## 11181                                                                                                                                                                                                                            Something got in his eye - blew by wind
## 11182                                                                                                                                                                                                          Something got into EE r eye causing it to hurt andbe red.
## 11183                                                                                                                                                                                                                                                  Something in eye.
## 11184                                                                                                                                                                                                                                              Something in l eye ()
## 11185                                                                                                                                                                                                                                 Something went into EE's right eye
## 11186                                                                                                                                                                                                      Sore throat - exposed to patient diagnosed with strep throat.
## 11187                                                                                                                                                                                                                                                     Spider bite ()
## 11188                                                                                                                                                                                                                                           Spilled chemicals in eye
## 11189                                                                                                                                                                                                                                                               Spit
## 11190                                                                                                                                                                                                                        Splashed "liquid live" cleaner in right eye
## 11191                                                                                                                                                                                                                                     Splashed bleach in left eye ()
## 11192                                                                                                                                                                                                  Splashed caustic soda in right eye while adding chemical to tank.
## 11193                                                                                                                                                                                                             Splashed chemical inot eye. Not wearing safety glasses
## 11194                                                                                                                                                                                                         Splashed cleaning agent with 36 % phosphoric acid in l eye
## 11195                                                                                                                                                                                                                              Splashed detergent into right eye. ()
## 11196                                                                                                                                                                                                  Sprayed in the face with a substance that smelled like bleach. ()
## 11197                                                                                                                                                                                                                             Sprayed shower, mist got in to eyes ()
## 11198                                                                                                                                                                                                                      Sprayed w/oc pepper spray during use of force
## 11199                                                                                                                                                                                                               Sprayed w/oc spray during training, directly in face
## 11200                                                                                                                                                                                                                      Sprayed with pepper spray as part of training
## 11201                                                                                                                                                              Sprayed with pepper spray while in training. Had a bad reaction to pepper spray. Severe headaches. ()
## 11202                                                                                                                                                                                                                       Spraying aerosol fragrance & sprayed lt eye.
## 11203                                                                                                                                                                                                                    Spraying cleaning chemical and mist got in eye.
## 11204                                                                                                                                                                                       Spraying or trimming or blowing something got into left eye and irritated it
## 11205                                                                                                                                                                                                   Spraying pepper spray - two inmated - pepper spraygot into eyes.
## 11206                                                                                                                                                        Spraying pt's clothing and belongings which were infected with lice, nites and scabbies, head hair infected
## 11207                                                                                                                                           Spraying shower & top was not secure on diluted bleach. Placed on higher counter. Bleach fell spraying substance in eyes
## 11208                                                                                                                                                                                      Spraying tables with general purpose cleaner and spray got into EE right eye.
## 11209                                                                                                                   Spraying the shower curtain, trigger gun to hose shot off hose, presure from water caused had and goggles to be blowen off, chemcial got in eyes
## 11210                                                                                                                                                                                                              Spraying vivicide in farm room. Got some in left eye.
## 11211                                                                                                                                                                                   Spraying wall w/speedy cleaner some of cleaner came back hitting her in left eye
## 11212                                                                                                                                                          Spraying weeds/shrubs near williams hall, employeewas stung or bite by and insect near his right eyearea.
## 11213                                                                                                                                                                                                                    Spreading mulch. Blew into eye scatching cornea
## 11214                                                                                                                                                                      Spreading salt on icy sidewalks & steps wind blew salt dust into his eyes causing irritation.
## 11215                                                                                                                                                                                       Spring was being pulled down by hammer claw, springlet go, cut over left eye
## 11216                                                                                                                                                                                 Squeeze mechanism in cow chute did not hold, released and hit employee on the nose
## 11217                                                                                                                 Ss stated that she was coming down the stairwell, she tripped and fell injuring her leg and head. Also recieved minor scrateches on top of lt foot
## 11218                                                                                                                                 Stach of paper lifted to close to eye slicing the sclena of the right eye. She was seen by eye care caenter on 12/13 & 12/14/12 ()
## 11219                                                                                                                                                          Staff and students playing basketball in the courtyard. Staff was elbowed in the eye with a lot of force.
## 11220                                                                                                                                                                                                  Staff assaulted by a patient. Hair pulled and struck in left eye.
## 11221                                                                                                                                                                         Staff attempted to redirect pt, pt became aggressive towards staff, hit staff in the face.
## 11222                                                                                                                                                      Staff attempting to intervene with patient fighting peer, patient struck staff in head x4 with thier fist. ()
## 11223                                                                                                                                                                 Staff attempting to prevent patient from falling, patient struck staff on the left temple area. ()
## 11224                                                                                                                                                                                                    Staff bumped head while assisting with restraint of a juvenile.
## 11225                                                                                                                                                                Staff grabbed bypatient in a choke hola and also hit by patient with fist on right side of face. ()
## 11226                                                                                                                                                                                             Staff hit by client in the face & head by a dora explorer sketch board
## 11227                                                                                                                                                                                                                 Staff hit in left eye by a patient with their fist
## 11228                                                                                                                                                                                                    Staff hit on face when trying to prevent patient from escaping.
## 11229                                                                                                                                    Staff injured left foot when placing a patient in restraints. The patient fell on staff's left foot & struck staff in the head.
## 11230                                                                                                                           Staff intervened to assist a patient who was beingattacked by another patient. The staff's watch wasbroken and he was kicked in the head
## 11231              Staff located in hct station, patient repeatedly came around and into station area. Patient grabbed rn's hair, pulled out nickle size area of hair from scalp as noted by Dr. And minor abrasions to forehead from being scratched by the patient. ()
## 11232                                                                                                                                                                      Staff member fell and hit head on copier machine, made knot on head we sent her to emergency.
## 11233                                                                                                                            Staff member was placing laundry in dirty cart. Laundry bag hit flourescent light and light broke. Staff member felt scratch in lft eye
## 11234                                                                                                                                                                    Staff member was supervising juvenile assigned to her, juvenile became upset and assaulted her.
## 11235                                                                                                                                                               Staff outside of building, maintenance crew was blblowing leaves & foreign body blew into EE's r eye
## 11236                                                                                                                                                                                                             Staff possibly contrated conjunctivitis to the rt eye.
## 11237                                                                                                                                                                                   Staff providing incontinence care, patient headbutted this staff on her nose. ()
## 11238                                                                                                                                                                                                                                Staff punched in nose by a patient.
## 11239                                                                                                                                                                                                       Staff punched on right side of face during group activities.
## 11240                                                                                                                                                                                                    Staff pushed by a patient causing her to fall hitting her head.
## 11241                                                                                                                                              Staff sat in chair which fell apart causing her tofall striking her lt side of head (back of head) against book case.
## 11242                                                                                                                       Staff stated resident came from behind, grabbed herthe resident got ahold of her hair threw her to the floor and scratched her arm and face.
## 11243                                                                 Staff stated she was raising up lift in the bathroom, turned away because she thought someone said something to her, she turned around and hit head with overhead lift in the left temple area. ()
## 11244                                                                                                                                         Staff stated that while she was distributing medications in seg inmate spit directly in her face this occurred three times
## 11245                                                                                                                                                            Staff states that a piece of debris was ejected from the heater on tower floor and landed in his rt eye
## 11246                                                                                                                                                                  Staff took patient out to smoke. Patient threw a juice cup and hit staff member in the lt eye. ()
## 11247                                                                                                                                                                             Staff trying to contain individual & got hit in mouth with elbow & ind. Squezed l hand
## 11248                                                                                                                                                                                  Staff was applying ice to pt's hand, pt kicked staff's right jaw causing brusing.
## 11249                                                                                                                                                                                                                                  Staff was assaulted by a patient.
## 11250                                                                                                                Staff was assisting resident in transferring clorox from rolling cart to storage area. Resident dropped bottle and it burst, getting clorox in eye.
## 11251                                                                                                                                                                  Staff was assisting rn during med pass. Patient struck her on the rt side of the neck and ear. ()
## 11252                                                                                                                                                                             Staff was assisting with redirecting client and he hit staff in rt cheek with fist. ()
## 11253                                                                                                                                                                                                                  Staff was bending over, client hit her in the eye
## 11254                                                                                      Staff was breaking up fight, one patient was fighting a peer. Staff placed patient into therapeutic wrap and was head butted on the right side if his head by the patient. ()
## 11255                                                                                                                                      Staff was changing another pt when EE turned, pt struck EE in mouth with fist. Rec'd abrasion contusion & bleeding upper lip.
## 11256          Staff was changing battery in back of clock and it had dried white acid from the old battery he removed the old battery while standing at my desk with me sitting he blew the white stuff out trying to clean it and it blew into seated staff's eyes. ()
## 11257                                                                                                                                                                                    Staff was cleaning out consumer locker and some- thing fell into EE's left eye.
## 11258                                                                                                                                                   Staff was counseling student for banging on door &student became irate & hit staff. Staff was hit inthe left eye
## 11259                                                                                                                                                                                                    Staff was doing resident bath and resident spit in staff eye ()
## 11260                                                                                                                           Staff was dressing resident, began to lose balance, residents' hand flew up and hit staff on l jaw causing a scratch w/ minimal bleeding
## 11261                                                                                                                                                   Staff was exiting truck to go in building to repair copier machine & the wind blew something into his right eye.
## 11262                                                                                                                                           Staff was helping to restrain a patient. He was hit in the mouth by a co-worker's shoulder while going through the door.
## 11263                                                                                                                                                                                                                   Staff was hit by client in the eye with fist. ()
## 11264                                                                                                                                                                                                                         Staff was hit in the head by a patient. ()
## 11265                                                                                                                                                                                           Staff was injured during a restraint of separating students fighting. ()
## 11266                                                                                                                           Staff was intervening between two patients fighting. Staff pulled patient off another patient and fell and hit her head on the floor. ()
## 11267                                                                                                                                                                                        Staff was moving chemical box and a jug fell out and splashed in his eye ()
## 11268                                                                                                                   Staff was on a work detail with patients when one agresses and poked Mr. Pugh in the right eye displacing the eyeball deeper into the socket. ()
## 11269                                                                                                                                                            Staff was on ward picking up trash and the patient walked up to staff and punched him in his right eye.
## 11270                                                                                                                                                                                                  Staff was punched in jaw & mouth by a student during a restraint.
## 11271                                                                                                                                                                                                            Staff was punched in the face by a agitated patient. ()
## 11272                                                                                                                                                                                       Staff was punched in the face by a patient. Her lt upper tooth is broken. ()
## 11273                                                                                                                                                                                              Staff was punched in the face by client during a trt intervention. ()
## 11274                                                                                                                                                                                 Staff was redirecting a combative pt, pt hit staff in the head, face and right ear
## 11275                                                                                                                                                                          Staff was redirecting a patient from hurting herself. Staff was punched in the rt eye. ()
## 11276                                                                                                                                                        Staff was redirecting the patient and then patient got upset and punched staff on the left side of his jaw.
## 11277                                                                                                                                               Staff was responding to student. While getting up from couch, staff fell to floor, chipping tooth and cut lower lip.
## 11278                                                                                                                                           Staff was restraining a student that was out of control, st5udent hit staff several times on the head and broke glasses.
## 11279                                                                                                                                                                                                     Staff was sitting at table and was struck in face by client ()
## 11280                                                                                                                                                                                  Staff was sitting with pt that was in bed kicking staff. Punched in rt eye by pt.
## 11281                                                                                                                                                          Staff was taking flags down from flag pole and the wind took it out of my hand and it hit me on the chin.
## 11282                                                                                                                                    Staff was walking toward a juvenile to take a shirt off when he tripped over an unknown object and hit his head on the wall. ()
## 11283                                                                                                               Staff was with another staff trying to control a patient and the patient spit at staff 2x and the spit got into staff eyes is known for hic positive
## 11284                                                                                                                                                                                      Staff went to sit in chair, chair & staff rolled back, staff hit head on wall
## 11285                                                                                                                                                        Staff worked with patient who was diagnosed with pink eye, now staff having problems with his right eye. ()
## 11286                                                                                                                                                                                              Staff's head was struck by adaptive equipment while feeding client ()
## 11287                                                                                                                                                                     Staking boxes on platform when one box slid from stack; fell and struck EE in the left eye. ()
## 11288                                                                                                                                                                                       Standing approx 1. 5 feet from heavy door. Studen slammed door w/ full force
## 11289                                                                                                                                                                                     Standing at control desk when inmate pulled her chair causing her head to jerk
## 11290                                                                                                                                                       Standing at his assigned vehicle posting a weapon for ? When he was stung by insect on left side of his face
## 11291                                                                                                                                                                                    Standing at the gate outside and face started buring and broke out in a rash ()
## 11292                                                                                                                                                               Standing at traffic assignment and passed out and struck the back of her head on her patrol vehicle.
## 11293                                                                                                              Standing by as inmate was being restrained, inmate had cuff on one wrist and jerked away from staff, turning around and swinging her arms, hitting EE
## 11294                                                                                                                                                         Standing by metal pole that adjust heat measure eedropped her coat on floor hit her forehead on metal pole
## 11295                                                                                                                                     Standing down stairs in hospital for 7 hours while outside contractor was welding and removing insulation from a water heater.
## 11296                                                                                                                                                                              Standing drinking with a straw and c/o bumped elbow and straw went into right eye. ()
## 11297                                                                                                                          Standing in core observing inmates. Had a rubber band in my hand. Pulled it a couple of times and it broke hitting me in the left eye. ()
## 11298                                                                                                               Standing in dayroom door located in l & l dorm, inmate approached her wanting to take mop & bucketpushed mop towards EE forcefully striking forehead
## 11299                                                                                                         Standing in doorway talking to supervisor. He pushed chair under desk and hit an extra flourescent bulb. It exploded and something flew into employees eye
## 11300                                                                                                                                 Standing in front of sgt. Hargett's desk searchinga student's jacket when student struck EE on the side of the head with his fist.
## 11301                                                                                                                                                    Standing in kitchen; resident wrapped arm around head and head banged side of face (cheekbone and forehead). ()
## 11302                                                                                                                                                                                              Standing in lobby and student ran off and hit EE in left side of head
## 11303                                                                                                                                                                                                               Standing in sallyport, stung in the face by a bee ()
## 11304                                                                                                                                                                          Standing near fire alarm. Fire alarm went off. Loud sound in right ear, causing headache.
## 11305                                                                                                                                                                           Standing near patient's head who was having breastbiopsy. Struck by needle above eyebrow
## 11306                                                                                                                Standing next to shower in seg when inmate was shaking water off and had blood on his left arm. I felt drop of liquid in corner of my right eye. ()
## 11307                                                                                                                    Standing on a stationary chair watering plants, became dizzy, fell and hit her head on a bulletin board resulting in a large protrusion on head
## 11308                                                                                                                                                                        Standing on chair to change light bulb, chair slid causing fall, striking head against wall
## 11309                                                                                                                                        Standing on chair while working on wooden shed bldchair tilted throwing EE backwards causing his head to hit concrete floor
## 11310                                                                                                                                                                  Standing on ladder removing loose paint chips w/ putty knife. Right eye started feeling scratchy.
## 11311                                                                                                                              Standing on the lift gate of 5 ton grip truck; opened rear rolling door; climbing in truck; door rolled down; hit him on top of head.
## 11312                                                                                                                                                                                                               Standing out side when a bug flew in my right eye ()
## 11313                                                                                                                                                                                                                Standing outside and something blew in left eye. ()
## 11314                                                                                                                                                                                       Standing up after having gotten pamphelts from a bar. Hit head on metal bar.
## 11315                                                                                             Stanley was walking across the welding shop area when someone opened the door to the building which caused a breeze. Stanley said something flew into his left eye. ()
## 11316                                                                                                                                                                                Stapler was on cardboard on desk. Wind blew cardboard up. Struck in head by stapler
## 11317                                                                                                                                                      Stapling black plastic over opening where door hadbeen removed. Left eye starting hurting when he blinked it.
## 11318                                                                                                                                                                                                                         Start of headaches from cleaning supplies.
## 11319                                           Started walking to her office, turned to look at a van thinking it might be the van that picks employees up, then I started back walking the next thing she knew she had fell down on the sidewalk and broke glasses. ()
## 11320                                                                                                                                                                             Starting down the ladder and missed the first run fell about 8 ft from control room ()
## 11321                                                                                                             Starting to sit down when the chair rolled causing her to fall striking her head on the keyboard drwaer hitting her rt arm on the corner of wrkstation
## 11322                                                                                                                                                                             Starting weed eater picked up and threw an object cutting grass. Scratch of rt cornea.
## 11323                                                                                                               Stated he was taking inmates medical jacket to thenurses station and was walking on the sidewalk in front of fir dorm when insect flew into lt eye..
## 11324                                                                                                               Stated he was walkng around outside housng unit# 5dedorm dayroom.. As rounded corner walked into edgeof window that was pushed open contact on mouth
## 11325                                                                                                                                 States he was supervising inmates in gym, when a tiny object struck him in the right eye and lodgedthere. Unable to remove object.
## 11326                                                                                                          States he was working on the control tower, walkedout to open gates, slipped on some ice, grabbed for hand rail, could not hold due to ice, hit head-wall
## 11327                                                                                                                                                                                                                             States patient struck him in the face.
## 11328                                                                                                                    States she was pitching to inmates during softballgame when ball was thrown to her, states the sun was in her eyes and she did not see the ball
## 11329                                                                                                              States that he started through the double door at wake med they started to close causing him to fallbackwards on the floor striing head, back hip and
## 11330                                                                                                                                                                States while painting cell doors, the paint fumes made him dizzy and he got sick and passed out. ()
## 11331                                                                                                                                                                     Stepped into g1 stairwell, feet slipped, and fell forward hitting chin and left elbow on steps
## 11332                                                                                                                                                                                                           Stepped on ice, slipped and fell and hit back of head ()
## 11333                                                                                                                           Stepped on the tongue of a loading cart left in aninapprop place by an unknown inmate worker, r rearof head struck the cart when EE fell
## 11334                                                                                                                                                                                                                                Stepped over a wire and tripped. ()
## 11335                                                                                                                                                                                                           Stick hit EE in the eye while pulling them out of a tree
## 11336                                                                                                                                                                                                             Stocking janitor's closet-mopping floor-had nose bleed
## 11337                                                                                                                                        Stocking supplies on shelf, box of forks fell, striking face, bent frame & scratched glasses (newat that) did have headache
## 11338                                                                                                                                                                                                          Stood up and hit head on a dust table ledge above her. ()
## 11339                                                                                                                                                                                                             Stood up and hit head on corner of cabinet in restroom
## 11340                                                                                                                                                                                                                  Stood up and hit head on sharp edge of shelter ()
## 11341                                                                                                                                                                          Stood up from picking a pen up off the floor EE struck head on corner of wall cabinet. ()
## 11342                                                                                                                                                                                                     Stood up from sitting position & hit his head on concrete beam
## 11343                                                                                                                                                                                                     Stood up on lawnmower to unlock gate, head struck on fence. ()
## 11344                                                                                                                                                                       Storage room, reached to get a piece of cardboard off cabinet, wooden drawer fell on head ()
## 11345                                                                                                                           Straight baton training, while practicing the technique"front jab" & playing the role of the inmate he was accidently struck in the nose
## 11346                                                                                                                                                                 Strange fumes that smelled like chemicals in her office area. She had a headache through March 27.
## 11347                                                                                                                                                                                Stress-related condition related to cumulative effects of career in law enforcement
## 11348                                                                                                                                                                                                                                                            Stress.
## 11349                                                                                                                                                                 Strip searching inmate, inmate hit him in the face twice with his fist by her left eye and nose ()
## 11350                                                                                                                                                                                         Stripping floor near wall partition & partition fell on head on right side
## 11351                                                                                                                                                                                                                                 Stripping floor, throat irritation
## 11352                                                                                                                                                                                                           Strong chemical-like odor on her floor causing headache.
## 11353                                                                                                                                                                       Strong gust of wind blew dirt in left eye while inmates he was supervising loaded dump truck
## 11354                                                                                                                                                                                                                                             Struck by an object ()
## 11355                                                                                                                                                                                                                                     Struck by argumentative inmate
## 11356                                                                                                                                                                                                                                Struck by inmate in face and eye ()
## 11357                                                                                                                                                                                                                          Struck by patient on left side of face ()
## 11358                                                                                                                                                                                                                                   Struck by patient on r side face
## 11359                                                                                                                                                                                                              Struck by patient unprovoked on right side of face ()
## 11360                                                                                                                                                                                                                                                  Struck by peer ()
## 11361                                                                                                                                                                                                                                      Struck by pt on left cheek ()
## 11362                                                                                                                                                                                                  Struck by weedeater in the face after startling another employee.
## 11363                                                                                                                                                                                                   Struck head above left eye while unloading pipe on 3/27/2013. ()
## 11364                                                                                                                                                                                                                                   Struck head on "t" beam of tower
## 11365                                                                                                                                                                                                        Struck head on overhead shelving while cleaning out closets
## 11366                                                                                                                                                                                          Struck herself in eye with several pieces of paper. Injury to left cornea
## 11367                                                                                                                                                                                                                                           Struck in eye by inmate.
## 11368                                                                                                                              Struck in eye by pad lock that was attached to end of belt. Attempting to dissolve disturbance between two inmates that were fighting
## 11369                                                                                                                                                                                                                   Struck in face across bridge of nose by resident
## 11370                                                                                                                                                                                                                                        Struck in face by an inmate
## 11371                                                                                                                                                                                                    Struck in face by client as she was cutting his fingernails. ()
## 11372                                                                                                                                                                                                                                           Struck in face by inmate
## 11373                                                                                                                                                                                                             Struck in face by inmate and head butt in the face. ()
## 11374                                                                                                                                                                                                          Struck in head while assisting with inmate disturbance ()
## 11375                                                                                                                                                                       Struck in head with a closed fist blow by inmate &also struck in left leg by an ice pitcher.
## 11376                                                                                                                                                                                                                                   Struck in left eye by a patient.
## 11377                                                                                                                                                                                                                                      Struck in left eye by patient
## 11378                                                                                                                                                                                                                                Struck in mouth by elbow of inmate.
## 11379                                                                                                                                                                                                                    Struck in mouth by patient. Chipped front tooth
## 11380                                                                                                                                                                                                                                        Struck in nose by a patient
## 11381                                                                                                                                                                                                                                     Struck in right eye by inmate.
## 11382                                                                                                                                                                                                                     Struck in temple by softball that had been hit
## 11383                                                                                                                                                                                                                           Struck in the face by a students foot ()
## 11384                                                                                                                                                                                                                  Struck lip with rear van door while closing door.
## 11385                                                                                                                                                                                                                                        Struck on chin by inmate ()
## 11386                                                                                                                                                                                                            Struck on head by sign while removing boxes from van ()
## 11387                                                                                                                                                                                               Struck on left side of his temple while being assaulted by an inmate
## 11388                                                                                                                                                         Struck on right side of top of his head by ceilingfan that was running at time & received small laceration
## 11389                                                                                                                                                                                             Struck on the upper right side on forehead with her baton by an inmate
## 11390                                                                                                                                                                                                                      Struck open cabinet door and lacerated scalp.
## 11391                                                                                                                                                                                                        Strucked by an object/person rubbed or abraded by object ()
## 11392                                                                                                                                                                                  Student activated a fire extinguisher and sprayed it around staff. C/o headaches.
## 11393                                                                                                                                                                                        Student assaulted EE and knock EE to the ground- EE struck head on pavement
## 11394                                                                                                                                                                       Student assaulted EE during a struggle while being restrained for assaulting another student
## 11395                                                                                                                                                                                                   Student assaulted EE w/fist & broom handle. Strangled by student
## 11396                                                                                                                                  Student assaulted staff by striking staff in the jaw w/ a brick. During struggle with student, sta ff's eye glasses were damaged.
## 11397                                                                                                                 Student banging head on floor against baseboard. EE securing protective helmet strap student bobbedhead up and hit EE in mouth. Chipped frnt tooth
## 11398                                                                                                                                                                                                             Student became agressive and struck EE in the left eye
## 11399                                                                                                                                                                            Student became physically assaultive toward EE andhit EE in the left eye with his fist.
## 11400                                                                                                              Student became upset & tried to destroy property EE redirected her & student hit EE in face & triedto trip EE. Student also hit staff on side of face
## 11401                                                                                                                                                                          Student became upset after he was told he had to cut his nails and hit staff in the face.
## 11402                                                                                                                                   Student came after EE with clinched fist. EE put student in therapeutic restraint & student head butted EE in mouth. Front toot.
## 11403                                                                                                                                          Student grabbed EE's hair in an attempt to hit EE with her forearm on rt side of her face. Hit EE in the rt temporal area
## 11404                                                                                                                                                                                                                                            Student hit EE in nose.
## 11405                                                                                                                                                                                                               Student hit EE in the head with a fire extinguisher.
## 11406                                                                                                                                                                                                Student hit EE in the mouth. Required 6 stitches and glasses broke.
## 11407                                                                                                                                                                                                                 Student hit staff on side of head near lt ear drum
## 11408                                                                                                                                                                                                             Student kicked out a car window and glass flew in eyes
## 11409                                                                                                                                                                                                                               Student knocked EE into a brick wall
## 11410                                                                                                                                                                         Student on unit 413 activated a fire extenguisher, causing staff to suffer from headaches.
## 11411                                                                                                                                                                          Student picked up a picture frame and struck staff on the right side of her head with it.
## 11412                                                                                                                                                             Student punched EE in the head when he escorted her to transportation van. Blow to right side of head.
## 11413                                                                                                                                                                 Student punched me on the left side of my head. I was standing in the hall near the restroom door.
## 11414                                                                                                                                                                                                          Student punched staff member in the eye during restraint.
## 11415                                                                                                                                                                                          Student punched staff member in the head with her fist. Blow to the head.
## 11416                                                                                                                                                                   Student refused to shut door and then started swinging wildly and hit EE in the top of the head.
## 11417                                                                                                             Student refusing to go to bed. Other EE called for assist. Cause he had already tried to hit her. Walked into room, going to move suitcase, student gr
## 11418                                                                                                                                  Student requested to speak w/counselor and when the door was opened the student attached EE and the attack resulted in hair loss.
## 11419                                                                                                                                                                                                                                       Student scratched EE in face
## 11420                                                                                                                                                                                                                  Student slammed door and EE had pain in both ears
## 11421                                                                                                                                                                                                           Student sprayed EE's left cheek with a fire extinguisher
## 11422                                                                                                                                                                                   Student stopped at time out door and punched staff on the right side of face. ()
## 11423                                                                                                                                                                                               Student struck EE by accident with lt elbow (students were fighting)
## 11424                                                                                                                                                                                                      Student struck EE in the mouth during physical altercation ()
## 11425                                                                                                                                                                                                            Student struck EE in the side of the head with his fist
## 11426                                                                                                                                                      Student struck staff in the face while he was restraining him and another student hit him on side ofhis head.
## 11427                                                                                                                                                                                                             Student struck staff in the nose with a close fist. ()
## 11428                                                                                                                                                                                 Student swung and hit Ms. Childers in the head with her purse. Also scratched her.
## 11429                                                                                                                                                                                                        Student threw a plastic container and hit EE on the head ()
## 11430                                                                                                                                                                                                                Student threw comb at EE & hit right eye on purpose
## 11431                                                                                                                                                                                                   Student threw volleyball and accidentally hit the EE in the face
## 11432                                                                                                                                                                                                                                  Student threw water bottle at him
## 11433                                                                                                                                  Student was angry at home problems and also with another student, EE tried to calm student down andstudent struck EE in the head.
## 11434                                                                                                                              Student was coming out the door, as EE was going in the door, edge of door hit EE on left side of head. Lacertion over left eye-head.
## 11435                                                                                                                                                     Student was grinding on a piece of metal. Charlie walked behind student; foreign object lodged in left eye. ()
## 11436                                                                                                                                  Student was melting agarose gel in a microwave oven. Student removed the bottle and stirred it. Solution splashed on his face. ()
## 11437                                                                                                                                                                                   Student was moving teflon bottles when a top blew off spraying base into eye. ()
## 11438                                                                                                                                                                       Student was playing dodge ball and hit EE in face with ball. Broke glasses and cut her nose.
## 11439                                                                                                                                                                               Student was released to go to restroom-before going back to room student attacked EE
## 11440                                                                                                                                                                      Student was standing next to EE and throwing some-thing. Student hit EE in the face and nose.
## 11441                                                                                                                                                                                                              Student was swinging bat & it accidently hit his face
## 11442                                                                                                                                                                                                                                  Student's head hit EE in the nose
## 11443                                                                                                                                                                           Students were at rec playing ball while the ball was being throwed it hit EE in the head
## 11444                                                                                                                                                                                                              Studnet struck staff in the left side of face/ mouth.
## 11445                                                                                                                                                                                               Stuedents were fighting and EE was breaking up thefight at the pool.
## 11446                                                                                                                                                                                                                            Stumbled and fell walking into work. ()
## 11447                                                                                                                                                                                                                                     Stumbled on side walk and fell
## 11448                                                                                                                                                                                                                                            Stumbled over road bump
## 11449                                                                                                                                                                                     Stung by a bee on her forehead. Working with beesin the entomology department.
## 11450                                                                                                                                                                                                        Stung by a bee while walking to a water storage building ()
## 11451                                                                                                                                                                                                                                   Stung by hornet or flying insect
## 11452                                                                                                                                                                                                                            Stung by wasp on right side of his head
## 11453                                                                                                                                                                                              Stung on left ear by a wasp while getting paint from storage building
## 11454                                                                                                                                                                                         Subject control arrest techniques. Left ear-tympanic membrane perforation.
## 11455                                                              Submitted in error-need to delete- county funded not state... While assisting with removing the pit, Mr. Johnnie hit the front of his head on the metal framing of the pit on the auditorium stage ()
## 11456                                                                                                                                                              Sudden outburst from student. Student hit EE in nose, causing bridge in glasses to cut brige of nose.
## 11457                                                                                                                                                      Suffered severe allergy attack due to black soot falling from ventilation system in her office onto her desk.
## 11458                                                                                                                                                          Suffered smoke inhalation when entering a burning cell and putting the fire out using a fire extinguisher
## 11459                                                                                                                                                            Supervising an inmate at the hospital. Another officer's weapon discharged in a small enclosed room. ()
## 11460                                                                                                                                      Supervising an inmate in medical facility. Inmate jumped out of wheelchair & hit EE w/a closed fist on left side of lower lip
## 11461                                                                                                                                                                                         Supervising carpentry students and wind blew saw dust into his left eye ()
## 11462                                                                                                                                                                                     Supervising cleaning of hotbox by an inmate when fan blew cleaner into his eye
## 11463                                                                                                                                                                        Supervising ims, im struck me in the right side of the head while separating trash bags. ()
## 11464                                                                                                                                                                          Supervising inmate in kitchen cooking area he was bitten on left ear by an unknown insect
## 11465                                                                                                                     Supervising inmate of center who were assigned to community work crew. EE stated a farmer was cutting wheat field & debris went into right eye
## 11466                                                                                                                                        Supervising inmate work crew & was accidentally hit in left eye w/wood chip. Was wearing safety glasses at time of accident
## 11467                                                                                                                                             Supervising inmates cleaning ice off the sidewalkshe slipped on ice that was on the sidewalk & fell hitting his head..
## 11468                                                                                                                                                                                        Supervising inmates for yard call, inmate walked up & hit him in the lt jaw
## 11469                                                                                                                                                  Supervising inmates in firm dormitory when some type of object flew into officer left eye while walking by a fan.
## 11470                                                                                                                                                                               Supervising inmates on recreation yard and felt debris or gravel in the left eye. ()
## 11471                                                                                                                                                            Supervising inmates spreading rocks around the edge of curb, wind was blowing gravel & dust. Right eye.
## 11472                                                                                                                                                                                               Supervising inmates while on construction site & felt object in eye.
## 11473                                                                                                                                         Supervising inmates while they were using bathroom& inmate took some soap, placed it in soak and hitee in left temple area
## 11474                                                                                                                                                            Supervising inmates; inmate would not follow directive and he became hostile. Pepper spray was used. ()
## 11475                                                                                                                                                                                                Supervising juveniles when one juvenile punched him in the face. ()
## 11476                                                                                                                              Supervising mental health group when she was hit by basketball on right side of head caused her to jolt neck knocking glasses of face
## 11477                                                                                                                                                                                                                    Supervisor demeaning and hostile causing stress
## 11478                                                                                                                                                      Supervisor placed his hand on a tree along a forest trail. The tree snapped at the base and hitee on the head
## 11479                                                                                                      Supervisor states emp. Was servicing fan motor on return air fan when he fell to a wooden platform and hit his head and other body parts against the wall. ()
## 11480                                                                                                              Supervisor transporting EE via golf cart from one bldg to another & ran into a lamp post, EE hit herhead on dashboard of golf cart & fell into floor.
## 11481                                                                                                                Supv states shelby came to her stating that she was injured while under her desk doing something head was slightly bleeding. Co worker suggest meds
## 11482                                                                                                                                                                Sweeping the top of the stairs and felt liquid hit him in face on left side and arm on left side ()
## 11483                                                                                                                                                                                                                         Sweeping walkway outside building entrance
## 11484                                                                                                                                                                                                                                          Swimmer's ear from diving
## 11485                                                                                                                 Syepped in back of maintenance truck to get a piece of pipe and raised uo and bumped head on cross bar in back of truck that is attached to ladder
## 11486                                                                                                                                                                                            Tackling a student; landed on concrete and student landed on my head ()
## 11487                                                                                                                                                                                          Taking I/m to shower when I/m came out of restraints and assaluted EE. ()
## 11488                                                                                                                 Taking a blood press. Reading, exam stool wheels slipped out of position while EE attempted to sit down, hit head in 2 places against utility cart
## 11489                                                                                                                                                                                                Taking an aggressive pt to timeout, pt hit EE across bridge of nose
## 11490                                               Taking bolts off bottom of pilot on spence valve. The bolts were really tight and on the last one it broke free and he slipped and his face hit the wall and his fist & channel locks. Chipped lower molar tooth. ()
## 11491                                                                                                                             Taking case of bleach off top shelf. Case had been opened & only 3 of 6 bottles remained inside. Dropped case. Splashed into EE's eyes
## 11492                                                                             Taking client to outing in en route when motor vehicle accident occurred on ashe street involving another vehicle, with impact hit head on client's chair (wheel) causing headache. ()
## 11493                                                                                                                                                                                   Taking coffee wtr out of microwave-cup slipped andhot water splashed up in face.
## 11494                                                                                                                                                                                                                         Taking consumer to ito and was head-butted
## 11495                                                                                                             Taking grout bags off pallets, empting them into mixer, once bags were busted the grout then flew into his face and eyes. List injury as: both eyes ()
## 11496                                                                                                                                                                                                 Taking inmate from shower, inmate stabbed employee in the face. ()
## 11497                                                                                                                                                                                                    Taking inmate he spit came out of his mouth and get his rt eye.
## 11498                                                                         Taking inmate out from recreation cage, inmate walked toward the side of the cage and flipped up the cuffs into the front and ran out of the cage and hit me in the face with his hand. ()
## 11499                                                                                                                                                                                          Taking inmate out of cell when he threw an unknown liquid on employee. ()
## 11500                                                                                                                                  Taking inmate out to recreation and he attacked me when I open the door causing me to fall then striking my head on the ground ()
## 11501                                                                                                                                                                                                       Taking inmate to cell-- inmate struck officer in the face ()
## 11502                                                                                                                                                          Taking inmate to nurses station and inmate spit blood out and some splattered on my face and in my eye ()
## 11503                                                                                                                                 Taking inmates from rec back into the unit when placing one inmate in cuffs another inmate jumped on his back and attacked him. ()
## 11504                                                                                                                            Taking money & paper work up to courthouse when eeslipped while walking through jail corridor & hit head on metal door. Head/arms/neck.
## 11505                                                                                                                                                                           Taking patient to activity room another EE kicked door striking EE in center of forehead
## 11506                                                                                                                       Taking photos of dna electrophoresis gel on uv light box. Repetitive exposure caused damage to eyes because no protective eye wear was worn.
## 11507                                                                                                                                                                                                             Taking pt to seclusion rm, pt struck EE in the nose ()
## 11508                                                                                                                                                                                                         Taking pt to timeout rm, pt scratched EE on right cheek ()
## 11509                                                                                                                                                    Taking pt to timeout room, pt turned/struck EE on left side of head causing EE to fall, landing on left knee ()
## 11510                                                                                                                                                               Taking spectrophotometric reading, waste collection bottle which was under water aspirationexploded.
## 11511                                                                                                                  Taking the bungy cord off of the drawers to file the files back and the cord hit EE in the forehead and eyelid. Cut & knot on forehead, eye hurt.
## 11512                                                                                                                                                                                      Talk to an officer in the booth, leaned back and hit head on phone holder. ()
## 11513                                                                                                                                                               Talking on the phone when inmate walked and struck EE with a closed fist on the lt side of EE's face
## 11514                                                                                                                                                  Talking to an agitated inmate; inmate threw an unknown substance at cell door, striking my face, head and arms ()
## 11515                                                                                                                                                                                                                      Talking to inmate and inmate spit in his face
## 11516                                                                                                                                                           Talking to inmate to secure his food passage door, when urine was thrown in face, hair and left torso ()
## 11517                                                                                                                                                Talking to inmates who stated he had drank cleaning fluid when inmate thrown unknown liquid into my face and lt eye
## 11518                                                                                                                                                                                 Talking with a patient. Another patient struck EE on the left side of the face. ()
## 11519                                                                                                                                                                                           Talking with client about labs to be drawn when client spit in EE's eyes
## 11520                                                                                                                                                                              Tangled hplc waste lines sprung up when untangled and splashed acetonitile in eye. ()
## 11521                                                                                                                                                                                          Tape wrapped around feet causing EE to fall - toe elbow, hand, knee, head
## 11522                                                                                                                                                                                     Teaching basketball drills to students. Student jumped up & ball hit EE in eye
## 11523                                                                                                                                                  Teaching how to run waer carnival to our staff, one staff member through a water balloon which hit rob in ear. ()
## 11524                                                                                                                                                                                                                     Teaching students diagnosed with MRSA-left eye
## 11525                                                                                                                                                                                                                         Teaching students diagnosed with MRSA-nose
## 11526                                                                                                                                                                                                                    Teaching students diagnosed with MRSA-right eye
## 11527                                                                                                                                                                                                         Teaching; student (patient) hit employee with her fist. ()
## 11528                                                                                                                                                                                Tearing off edges of printer paper & accidentily brushed right eye ball w/the paper
## 11529                                                                                                                                                                                                                               Tearing paper, paper struck r eye ()
## 11530                                                                                                                                                                                              Temporary EE was suspect of having head lice, instructed to go to wic
## 11531                                                                                                                                            Tennis shoes w/rubber sole got caught or stuck on linoleum floor EE fell face forward on floor. Chipped two front teeth
## 11532                                                                                                                                                                       Teresa was opening the freezer when a glass bowl fell from above and struck her in the face.
## 11533                                                                                                                            The EE states she was conducting a cell search ofan inmate when another inmate entered the cell & struck her in the face with his fist.
## 11534                                                                                                                   The EE's chair had wheels attached to the legs. When the EE attempted to stand the chair rolled out from under. EE hit their head & fell to down
## 11535                                                                               The adjustable wrench was on top of the board separating the oxygen and acetylene tanks and was unsecure when, board was bumped the wrench fell hitting employee on his forehead. ()
## 11536                                                                                                                                                                                           The arm on the bag mower came up and hit me when I pulled the pin out ()
## 11537                                                                                                                                                                                                              The chemical that EE was using went into his righteye
## 11538                                                                                                                                                                                                        The chemical that the EE was spraying got into her left eye
## 11539                                                                            The claimant fell off a ladder while changing a filter in the ceiling. When the ladder buckled and slipped from under him, he fell to the ground striking his head and right elblow. ()
## 11540                                           The claimant reports he worked in an area where he was exposed to mold despite the fact he was using a mask. Subsequently he states he experienced irritation in his nose and throat. Also, he had trouble breathing. ()
## 11541                                                                                                                                    The claimant reports she slipped on her computer mat twisting her ankle, bruising her knee and hitting her head on her desk. ()
## 11542                                                                                        The claimant slipped in grease deposited on the roof by a kitchen fan resulting in a laceration to his left forehead. Also claimant reports a sore left wrist and thigh. ()
## 11543                                                                                                      The claimant states that after a day of cleaning and moving items in her work area, she experienced red, swollen eyes and a burning sensation on her face. ()
## 11544                                                                                                               The claimant states that while cleaning her vehicle at the end of her shift, she hit the right side of her head on the dispatch radio head piece. ()
## 11545                                                                                             The claimant was in the computer classroom at the prison. She was looking down for the door stop. The flip chart fell from behind the door and hit her on the head. ()
## 11546                                                                                                                                                       The claimant was lifting boxes off of a high shelf and one of the boxes fell hitting the claimant's head. ()
## 11547                        The claimant was removing a ladder from his work van. While sliding the ladder out, the van's overhead light burst resulting in dust in the claimant's eye, a small cut on the corner of his left eye and small lacerations to his face. ()
## 11548                                                                                                      The claimant was repairing farm equipment on the university farm when a cap on the equipment came dislodged and struck him on his face under his left eye. ()
## 11549                                                                    The claimant was using a boom sprayer that stopped working after going up hill. He raised the boom up to allow a car to pass by and the chemical sprayed on his face and protective glasses. ()
## 11550                                                                                                                                                                                             The cleaning solution that the EE was using splashed into her left eye
## 11551                                                                                                                 The employee alleged she was inspecting packages @visitation when she bent over to look into a box the corner of the lid punctured her in the eye.
## 11552                                                                                                 The employee alleges that when enter cage door in maintenance, handle fell and hit her above the right eye brow. She was entering the cage to get copier paper. ()
## 11553                                                                   The employee picked up a histology specimen jar (with lid) to place in sink. When we went to move it, the bottom part of jar came off causing 10% formalin solution to splash into right eye. ()
## 11554                                                                                                                                       The employee was cleaning the bathrooms in her work area, using the chemicals cc 905 clingup gel and oc omega, c/o headaches
## 11555                                                                          The employee was involved in a car chase and deployed the pit maneuver to bring the chase to a conclusion. The employees car traveled off the right side of the roadway and stuck a ditch
## 11556                                                                                                                              The employee was removing equipment and a chemical fluid squirted in his right eye causing a burning pain and was taken to the er. ()
## 11557                                                                                         The employee was using a chainsaw and cutting a tree out of the road. The tree slid down the bank and struck him on his face and nose causing a laceration to his nose. ()
## 11558                                                                 The employee was using fork lift to remove concrete pipes off of the delivery truck and over to the stock pile when somehting flew into his left eye. List injury as: iritation in the left eye ()
## 11559                                                          The employee was washing the wall in the restroom with the kiavac machine and kiabosh chemical when her safety glasses fell from her face and the chemical splash into her eyes, while still spraying. ()
## 11560                                                                                                                              The employee was welding and grinding on a bulkhead. Some debris in the air got into his right eye causing redness and irritation. ()
## 11561                                                                       The evening of 7/18/12, employee reached above kitchen cabinet for box. A mixing bowl on top of box fell, hitting employee on (l) eye. Vision in (l) eye has been blurry since. Per nurse ()
## 11562                                                                                                                                                                                                                   The fan blew the log paper acros EE right eye ()
## 11563                   The gps antenna on the fixed height pole tripod hit the employee in his left eyebrow as he was disassembling a gps survey set-up, because one of the telescoping tripod legs collapsed when he removed the gps receiver from the receiver mount.
## 11564                                                                                                                                               The individual fell on a concrete walkway resulting in a injured nose, right swollen knee and cuts on her left hand.
## 11565                                                                                                                                                                   The jolt from firing shotgun jammed EE's saftey glasses into the bridge of her nose and sinuses.
## 11566                                                                                                                                                                                         The lid from the file cabinet slid down and hit EE in the back of her head
## 11567                                                                                                                                          The noise from the air conditioner makes it hard for me to hear someone speaking on the other end when it is running loud
## 11568                                                                                                                  The office next to Ms. Gordon's was being painted and the fumes were very strong in the office. She got up to go get fresh air and passed out. ()
## 11569                                                                                                                        The pepper spray was used in atraining exercise the spray casued irritation to the extent that an infection was noticed several days later.
## 11570                                                                                                                                 The pressure that was exerted on metal fence post caused the post to bow and pop out. The post struck EE in the face near her eye.
## 11571                                                                                                                                                         The scaffold was by the locker room. EE was insidelocker room and came out. The scaffold fell on her head.
## 11572                                                                                                                                                                                          The screwdriver that EE was using slipped and struck him in the right eye
## 11573                                             The stool was on wheels and when she pulled the file cabinet out the stool slide from under her. She fell backwards and hit her head on the cabinet behind her. List injury as: had a slight headache; vision clear ()
## 11574                                                                                                                                                                                                     The wind blew an unidentified flying object into the EE's eye.
## 11575                                                                                                                                                                                                                              The wind blew sand into EE's left eye
## 11576                                                                                                                                                                        The wind blew the patrol car door back against face and glasses broke and lenses scratched.
## 11577                                                                                                                                                                                                           The wind blew trash right eye while working on side gate
## 11578                                                                                                                                                                                                             The window fell out and struck EE' noses and forehead.
## 11579                                                                                                             There was a pile of brush w/ long pieces and truck was full. Having to heave the branches over her head. Branch popped in ear and out quickly, tiny br
## 11580                                                                                                                          This employee was restraining an aggressive juvenile when she was struck by the juvenile in the left side of the face by her left eye. ()
## 11581                                                                                                                                                     This is a hearing loss caused by exposure to gunfire while conduction training. Occured over a period of time.
## 11582                                                                                                                                                                This is a temporary solutions employee who was cleaning toilet w/chemical and it splashed in rt eye
## 11583                                                                                                                                                                                                                        Three 6lbs boxes fell on staff member head.
## 11584                                                                                                                                                                                                                                       Three wasp stung EE on face.
## 11585                                                                                                                                                        Threshold shift recorded during audiometric testing. Possible hearing loss due to occupational exposure. ()
## 11586                                                                                                                                                                    Threw limb onto burning debris pile; something flipped out not embers, hit on right cheek & eye
## 11587                                                                                                                                                                                                                             Throat.... Strong smell from chemicals
## 11588                                                                                                                                                                   Throwing limbs into woods when something flew intohis left eye. Continued to work after incident
## 11589                                                                                                                                                                                                                               Tick bite while making stream calls.
## 11590                                                                                                                                                                  Tick bites occurred while fuel sampling. Left eye was scratched while collecting fuel samples. ()
## 11591                                                                                                                  Tightening bolts on piece of equipment. Bolts werehard to turn so had to put considerable pressure on them. Wrench slipped and hit EE on forehead
## 11592                                        Tightening the last wheel bearing nut on a hudson trailer, wrench slipped, and he lost his balance. Hitting the right side of his head and ear against the blunt edge of the frame. List injury as: r side of head & ear ()
## 11593                                                                                                                                                            Tilted vacuum cleaner while stooping over to checkbelt. Released vacuum and handle struck her right eye
## 11594                                                                                    Tin was detail cleaning the 2nd floor berry hill. She was wearing a dust mask and cleaning tables, floors, and chairs. Face, nose, cheeks. Redness and difficulty breathing. ()
## 11595                                                                                                      Tom was reviewing a case file folder. The phone rang and when he turned to answer it the corner of the file folder scratched the surface of his right eye. ()
## 11596                                                                                                                               Took a sip of a his drink, felt a sharp pain on his upper lip. Used his finger and extracted a small spider from under his upper lip
## 11597                                                                                                                                                Took trash to dumpster, on way back drop radio, pick up and when raise back up struck head on power box on wall. ()
## 11598                                                                                                                                                                                                                Top of van transporting patient struck top of shed.
## 11599                                                                                                                                                        Touched corner of eye while pushing up glasses on his face after touching I/m that had been pepper sprayed.
## 11600                                                                                                                                                                          Tracking subject in a wooded area with bloodhoundswhen a small brush hit EE in the rt eye
## 11601                                                                                                                                                          Tracking violator that had jumped and run in a thick wooded area, tree branch struck trooper in right eye
## 11602                                                                                                                                                                                  Trainee was assisting resident into chair, resident head butted trainee's in fall
## 11603                                                                                                                                                                                        Training at gun range. Unable to see out of right eye. Had bad headache. ()
## 11604                                                                                                                                                                                               Training for pepper spray, and EE had a reaction to the pepper spray
## 11605                                                                                                                                                                                            Training holding combat pillow impact forced watch into side of nose ()
## 11606                                                                                                                                                                                                     Training in cell extration, sgt. Was inadvertenly head butted.
## 11607                                                                                                               Training in defensive tactics, participating in the redman drill. EE was struck in the jaw w/fist by instructor. Jaw sore. On 2-6-09 crown came out.
## 11608                                                                                                                                                             Training partner accidentally scratched employee's chin while performing chin bar escort technique. ()
## 11609                                                                                                                                                               Transferring hanging folder files from one drawer to another file folder hanger caught in side nose.
## 11610                                                                                                                                                                               Transferring individual from bed to wheelchair, individual hit right side of head ()
## 11611                                                                                                              Transferring the chemical from the drum to the smaller container the filling hose on the pump stripped and the chemical splashed all over my face. ()
## 11612                                                                                                                                                                                   Transportation driver: rear ended in state vehicle while transporting juveniles.
## 11613                                                                                                                                                                                                                      Transporting an inmate to another facility ()
## 11614                                                                                                                                                            Transporting client from chair to wheelchair, trying to break client's fall, fell hit head against door
## 11615                                                                                                                                                                                     Transporting client, removed belt and hit EE on lt side of face, broke glasses
## 11616                                                                       Transporting clients stopped at gas station to use restroom; on EE's way back to the car after exiting the station tripped on a curb and fell forward hitting her chin, r knee and r hand ()
## 11617                                                                                                                                                                   Transporting employee home due to snow - loss control of state vehicle on snow/ice covered road.
## 11618                                                                                                      Transporting patients back to their bldg when patient from another bldg attempted to gain entry. When patient couldn't get in struck employee in the face. ()
## 11619                                                                                                                                                                                                    Trap door fell and hit back of head towards lt side and lt hand
## 11620                                                                                                                                                                                                                                            Trash blew into EE face
## 11621                                                                                                                                                  Trash blew out of vent in van into both eyes. Left eye mostly irritated causing soreness. Foreign body both eyes.
## 11622                                                                                                                                                                                                                                           Trash fell into left eye
## 11623                                                                                                                 Trash fluing/eye, loss of vision in left eye. Christy with eye clinic called- patient should be through w/trmt for inj eye- rtns congenital proble
## 11624                                                                                                                                                                                                        Trash got into eye while blowing and cleaning lawn mower ()
## 11625                                                                                                                                                                                            Trash in lt eye, trimming tree and trash flew in eye used saw on limbs.
## 11626                                                                                                              Traumatic stress was suddedn when superintendent failed to act repsonsibly and compassionately whenee asked for help and expressed his fear of an. ..
## 11627                                                                                                Traveling down 40 east to turn off the road to stop. When turned off, was hit in side of van on driver's side; causing head to hit left window on driver's side. ()
## 11628                         Traveling from direct service, I got a flat tire. A good samaritan stopped & helped me change it. The spare tire was pretty dirty and needed air. I stopped at a gas station & when I tried to pump the air, it blew dirt into my eyes. ()
## 11629                                                                                                                           Traveling on I-40 in alamance county, returning home from wilson to lenior. Vehicle hydroplaned & flipped over coming to rest on its top
## 11630                                                                                                               Traveling on highway, noticed deflated tire on roadway. Stopped vehicle to remove tire. Tractor-trailer passed by and blew foreign body into his eye
## 11631                                                                                                                    Traveling so. On rp1478 a vehicle traveling north crossed centerline toward EE's vehicle EE drove off road lost control struck ditchbank & tree
## 11632                                                                                                                                                 Treating I and d site of pt, cleaning when fluid was expelled into the air landing on mouth, eye glasses, and face
## 11633                                                                                                                                                                                                                                   Tree brach struck EE in the eye.
## 11634                                                                                                                                                                                                                     Tree branch fell and landed on top of her head
## 11635                                                                                                                                                                                                                     Triage of ophtalmic patients with adene virus.
## 11636                                                                                                                                                              Tried to prevent a student from hurting another student and student broke free and punched at my eye.
## 11637                                                                                                                                                             Tried to sat down on rolling stool, the stool rolled off from under her and she fell and hit her head.
## 11638                                                                                                                                                                                                                  Tripped and fell hitting head on a concrete wall.
## 11639                                                                                                                                                                                                                      Tripped and fell on furniture and cut head ()
## 11640                                                                                                                                                                                                                                    Tripped and fell on her face ()
## 11641                                                                                                                                                                       Tripped and fell walking toward office building. Gash in chin and scraped knee and hands. ()
## 11642                                                                                                                                                                                             Tripped and hit head on door while attempting to deescalate a patient.
## 11643                                                                                                                                                                                                            Tripped going down stairs and hit mouth on hand rail ()
## 11644                                                                                                                                                                                                                 Tripped in parking lot, hit face, broke eyeglasses
## 11645                                                                                                                  Tripped leaving hotel's work out room. Fell on concrete, injured head/face; r ring finger fracturedboth knees, & black eye. Lump on head, bruised
## 11646                                                                                                              Tripped on borad on the floor taking trash can inside building and did not see board laying on floor, tripped and fell (this was a construction site)
## 11647                                                                                                                                                                                                                           Tripped on cables and wires in classroom
## 11648                                                                                                                                                                         Tripped on edge of concrete floor - bruise on cheekbones, lacerations around eyes and nose
## 11649                                                                                                                                                                                                                                        Tripped on step and fell ()
## 11650                                                                                                                                                                                          Tripped on vent in floor of bathroom drain. List injuries as: forehead ()
## 11651                                                                                                                                                                                                                       Tripped over a chair and fell cutting lip ()
## 11652                                                                                                                                                         Tripped over a student's feet while supervisng a student dance, fell and hit chin on the ground- open gash
## 11653                                                                                                                                                                                                                                   Tripped over obstacle in pathway
## 11654                                                                                                                                                                                                                                Tripped over trash can and hit head
## 11655                                                                                                                                                              Tripped when getting up from her desk, fell on knees. Also hit the top of her head on the closet door
## 11656                                                                                                                                                                                                  Tripped, slipped forward hit head on door frame with great force.
## 11657                                                                                                                                                                                                                     Tripped/slipped; fell and bumped head on door.
## 11658                                                                                                                             Trooper attempting to make arrest when subject resisted, subject struck EE several times about the face and head with fist & handcuffs
## 11659      Trooper freeze was conducting a collision investigation on I-85. A pickup truck traveling in the right lane attempted to avoid the motorist and struck the rear of trooper freeze's patrol car. Trooper freeze was sitting in the car while it was struck. ()
## 11660                                                                                                                                        Trooper king had stopped several cars on routine traffic stops. The wind blee sand/dirt particles into his face & left eye.
## 11661                                                            Trooper was completing weighing a commercial vehicle. When they where taking the scales back to their issued chevy tahoe the trooper struck their head on the open hatch on the rear of the vehicle. ()
## 11662                                                                                                                                                                                    Trooper was injured in a collision during the conclusion of a vehicle chase. ()
## 11663     Trooper was investigating a collision on I-40 when a vehicle traveling west on I-40 lost control on ice and ran off the road hitting trooper daniels' car in the rear while he was about to exit his patrol car. The impact ejected the trooper from the car's
## 11664                                                                                                                                                  Tropper assisting another trooper with arrest, subject resisting, subjects foot struck troopers right side of jaw
## 11665                                                                                                                                                                     Trp baity swerved to avoid a collision & ran off road, lost control of vehicle & struck a tree
## 11666                                                                                                                                          Truck door kicked back as vehicle was being exitedby EE & EE was struck in the head behind ear on skull causing headache.
## 11667                                                                                                                                                                                      Truck pulled out in front of EE while on routine car patrol. Vehicles struck.
## 11668                                                                                                                                                 Truck radiator cap was removed, coolant was under pressure & sprayed in EE's eyes because he was standing near by.
## 11669                                                                                                                                                 Trying to break up a fight between juveniles, while restraining one juvenile the other juvenile hit me in the face
## 11670                                                                                                                                                                                                        Trying to break up inmate fight and got hit in the nose. ()
## 11671                                                                                                                                                                     Trying to break up patient hitting on peers. Patient swung back and hit staff in her left eye.
## 11672                                                                                                                                                                                        Trying to control patient and hit with open fist on right timple behind eye
## 11673                                                                                                                                                                                                          Trying to detain inmate. Punched in face/back of head. ()
## 11674                                                                                                                                                                                    Trying to escort student into apt, fell to floor acting wild, kicked EE in face
## 11675                                                                                                                                                              Trying to feed resident her breakfast tray when resident spit food in my face getting into my eyes ()
## 11676                                                                                                                                                  Trying to get individual to place top on tray correctly individual pushed tray top against forehead causing a cut
## 11677                                                                                                                                                                                        Trying to get out of baggage compartment of bus and missed step and fell ()
## 11678                                                                                                                                                                          Trying to get student out of the van and she hit EE in the nose, resulting in bloody nose
## 11679                                                                                                                                                      Trying to get student under control when student swung his left elbow and struck EE in back left side of head
## 11680                                                                                                                                                                  Trying to handcuff inmate when he swung and punched me in my face and knocked me to the floor, ()
## 11681                                                                                                                                                                                                  Trying to help pt not fall, pt back handed EE in face/jaw area ()
## 11682                                                                                                                                                                                                       Trying to hold patient, patient kicked staff in the face. ()
## 11683                                                                                                                                                                     Trying to keep pt from falling out of bed, pt's knee hit EE in the mouth knocking tooth loose.
## 11684                                                    Trying to move buffer and did not realize it was partially covered under a box, while pulling the buffer towards me, the buffer broke free of the box and the handle of the buffer hit him on the left brow. ()
## 11685                                                                                                                    Trying to offer client snack, client refused. Grabbed EE's hair with both hands very firmly. My earring got struck & punctured behind right ear
## 11686                                                                                                                                                                                Trying to open window when the blind fell down on top of her, cutting above her lip
## 11687                                                                                                                     Trying to peel off what appeared to be adhesive strip behind toilet started to peel piece of corner up it snapped back & splattered urine face
## 11688                                                                                                                                                                                                                Trying to physically control child. Was hit in face
## 11689                                                                                                                                                                                         Trying to pick something up off of floor and fell bumping back of head. ()
## 11690                                                                                                                                                                             Trying to push wheelchair into van & chair became stuck in door causing EE to hit head
## 11691                                                                                                                                                Trying to redirect resident from the wrong room and resident turned around and hit me in the face with his fist. ()
## 11692                                                                                                                                                    Trying to regulate the water on tower 5 when a 2" pvc "t" broke loose from a 6" pvc line & hit him in the face.
## 11693                                                                                                                                                                              Trying to remove a nut from a bracket in the sink, something got in the right eye. ()
## 11694                                                                                                                                                         Trying to remove pipe fitting from 6000 john deeresprayer. The adjustable wrench slipped and hit hismouth.
## 11695                                                                                                                                                                                                                         Trying to restrain out of control juvenile
## 11696                                                                                                                                                                     Trying to secure trap door and I/m threw unknown liquid on chest, face, arms and midsection ()
## 11697                                                                                                                                                          Trying to separate two students during a fight, Mr. Bright was hit on the left side of his head twice. ()
## 11698                                                                                                                                                                                                               Trying to subdue inmate that got out of his cell. ()
## 11699                                                                                                                                                                               Tryng to keep client calm during a tornado alert... Client struck staff in right eye
## 11700                                                                                                                                                                     Tube of partially purified protein was dropped on the floor, contents of tub splashed into eye
## 11701                                                                                                                                                                                   Tuning a sonicator. High pitched sound from sonicator caused ringing in ears. ()
## 11702                                                                                                                                                              Turned around to get mail out of the back of the ttruck. Hit head on the top of the truck door corner
## 11703                                                                                                                               Turned to reenter the recreation bldg at craggy c. C. And tripped over concrete flower pot stricking head, hand and knee on concrete
## 11704                                                                                                                                                                     Turned to walk away from the copier & fell on a spilled wet area - lt elbow, back of head, hip
## 11705                                                                                                                                                                                 Turned, felt dizzy, lost balance and hit nose on the sink as she fell to the floor
## 11706                                               Two inmates were arguing and officer called a code 4 and attempted to disperse the crowd. Officer reached for pepper spray and was struck with a cane across the right side of face, eye, ear and head by inmate. ()
## 11707                                                                                                                                                                        Two patients fighting during which time I went to seperate them and got hit in the left eye
## 11708                                                                                                                                    Two patients were fighting, employee stepped in & tried to separate them. EE was struck in the neck & head during the fight. ()
## 11709                                                                                                                                     Two patients were in an argument this staff stepped between them to break them up, one of the pt's hit this staff in the nose.
## 11710                                                                                                                              Two pts were fighting, one began to fall, EE tried to catch pt tripping over other pts feet, EE hit his face on other staff's knee ()
## 11711                                                                                                                      Two students became very aggitated in p. E. Class. EE stepped between the two students & was elbowed in the nose by one of the students. Nose
## 11712                                                                                                                                                                  Typing annotation labels for plant specimens on loan. Rose & hit right corner of opened top metal
## 11713                                                                                                                                                                                                              Unable to read - resident injured EE struck in mouth.
## 11714                                                                                                                                                                                                 Uncertain to reason why but fell forward and hit face on ground ()
## 11715                                                                                                                                      Unclogging an a/c unit in a room at stacy dorm. Hewas using a crz tube to blow out lines. Hit trigger & material blew in eyes
## 11716                                                                                                                                      Unclogging water fountain with caustic dhemical, splashed up into eyes. EE had removed safety glasses because they fogged up.
## 11717                                                                                                                                                                      Unhooking client from van; raised up; lifted head and chair arm made a small cut on forehead.
## 11718                                                                                                                                                                                                      Unk object flew into EE's left eye when returning from lunch.
## 11719                                                                                                                                                                                                                                                            Unknown
## 11720                                                                                                                                                                                    Unknown airborn object got into her right eye causing & injury to her right eye
## 11721                                                                                                                                                                                         Unknown if fainted or tripped. Employee hit head on window or doorframe ()
## 11722                                                                                                                                                                                                                   Unknown inmate threw aaa battery to back of head
## 11723                                                                                                                                                                                                              Unknown no report from dept first notice from gove ()
## 11724                                                                                                                                                                   Unknown substance was thrown by inmate hitting employee on right side of face, arm, and body. ()
## 11725                                                                                                                                                                                       Unloading boxes of materials from car onto hand- truck. Handtruck hit mouth.
## 11726                                                                                                                                                                                      Unloading client off van and client from another cluster spit in left eye. ()
## 11727                                                                                                                                                               Unloading computer boxes, one box slipped and felloff stack and struck EE just above the left temple
## 11728                                                                                                                                                                                Unloading seed spreader from truck, handle hit lip as he put spreader on ground. ()
## 11729                                                                                                                                                                          Unlocked coffee pot in the south wing unplugged coffee pot raised up and hit head on hasp
## 11730                                                                                                                                                  Unlocking a cabinet and when he opened the door, the left side door came off the hinge and struck him in the head
## 11731                                                                                                                                                                                                                Unlocking door when wasp began stinging left eyelid
## 11732                                                                                                                                                                                                                             Unsure, carpentry work, metal working.
## 11733                                                                                                                                                 Upon approaching an intersection she did not see astop sign & continued through the intersection without stopping.
## 11734                                                                                                                                                       Upon ascending from routine scuba dive, acute discomfort was felt in left eardrum; left eardrum ruptured. ()
## 11735                                                                                                                                                                           Upon closing the truck of the state car it struck employee in forehead causing an injury
## 11736                                                                                            Upon exiting the building at the end of the work day, Ms. May tripped and fell on the rear sidewalk. She tripped where the sidewalk dips for handicap accessibility. ()
## 11737                                                                                                                                   Upon opening door of girls locker room, employee bumped head first into desk standing on it's side, with nail or screw puncture.
## 11738                                                                                                                                                                                                Upper lip bitten by hospitalized patient while doing treatments. ()
## 11739                                                                                                                                                                                               Upper red was assaluted by multiple inmates with a broom and fist ()
## 11740                                                                                                               Upset client tried to push EE. When EE didn't moveclient took off helmet and threw it at EE. Helmet hit EE in the face bending glasses and cut nose.
## 11741                                                                                                                                                                                                                               Urine like substance thrown in face.
## 11742                                                                                                                                                                                           Urine splashed into EE's eye while she was disguarding it into the sink.
## 11743                                                                                                                                                             Urine splashed into rt eye when draining a foley catherter bag EE reports. Urine splashed into rt eye.
## 11744                                                                                                                                                                                                 Use of force I/m fell on EE causing EE to hit head on the floor ()
## 11745                                                                                                                      Use of force on richmond seg unit with inmate in a-pod and handcuffs that were on inmate scraped head and when he fell to floor hurt knee. ()
## 11746                                                                                                                                                                           Use of office space with door closed led to allergic reaction coming from dust and mold.
## 11747                                                                                                                                                                                 Use of spray disinfectant routinely used in dentalclinic caused irritation to eye.
## 11748                                                                                                                      Used nci correctly on pt trying to attack employee. During struggle, staff hit back of his head against the wall and eye glasses were crushed
## 11749                                                                                                                                                                        Using a grider to work on a fence, peice of metal flew over safety glasses and into eye. ()
## 11750                                                                                                                                                               Using air hose to blow out tool box on work truck, got something in left eye. Had safety glasses on.
## 11751                                                                                                                                                                                          Using bleach to mop blood from floor-fumes caused irritation to both eyes
## 11752                                                                                                            Using buffer machine, asked co-worker to let handledown to see if he could get it started for me. Whenstarted, spun him around & machine knocked EE out
## 11753                                                                                                                                                                                       Using cashier. Tripped lost balance & fell hitting side of face close to eye
## 11754                                                                                                                                                                                    Using chainsaw; cutting tree and piece got in eye. List injury as: right eye ()
## 11755                                                                                                                                                         Using come-along & tightening cable when handle ofcome-along hit his right upper cheek. Contusion to cheek
## 11756                                                                                                                                                                                Using grinding tool while welding and metal piece embedded in eye under face shield
## 11757                                                                                                                                                                                                                                       Using hammer drill over head
## 11758                                                                                                                                                                                Using hole digging tool for garden stakes and it hit him on the top of his head. ()
## 11759                                                                                                                                         Using liquid nitrogen in cys- put fresh qtip onto cys and caused the product to bubble into area. Discomfort both eyes. ()
## 11760                                                                                                                                                                                               Using new floor stripper became light headed and throat irritated ()
## 11761                                                                                                                                                                                     Using plunger to de-clog toilet. Water from toilet splashed into right eye. ()
## 11762                                                                                                                                                             Using screwdriver to pry out head of broken nail that was being used to retain rotary chain on sprayer
## 11763                                                                                                                                                                                    Using steam cleaner to clean bathtub and a piece of putty flew into EE's lt eye
## 11764                                                                                                                               Using stripper solution to clean basebords and walls of wax buildup, used her rt hand w/ her glove on to wipe away sweat on her face
## 11765                                                                                                                                                                    Using the key cutting machine, was wearing safety glasses. Piece of cut key got into right eye.
## 11766                                                                                                                                                                         Using welding machine and a fragment went in his eye, under his safety glasses. Right eye.
## 11767                                                                                                                                                                                                                   Uv exposure to eyes while doing dna preparation.
## 11768                                                    Uzzell reported she sustained an injury to the right side of her face. She was closing the trap door, dropped the lock, bent over to retrieve it, the trap fell back open and trap door hit her in the face. ()
## 11769                                                                                                                                                                                                                          Vaccuuming a grill, dust blew into rt eye
## 11770                                                                                                                                                                                                          Vacuuming shelves when paper particles fell into her eyes
## 11771                                                                                                                                                                                                                   Vehicle she was driving was struck by a truck ()
## 11772                                                                                                                     Vial containing cie of ammonium hydroxide was being manually transferred from 55c bath to ice when cap blew off and material sprayed EE's eyes
## 11773                                                                                                                                                                                                           Visit bone sites with state inspector bee stings to face
## 11774                                                                                                              Visiting offender, stopped car, stepped out of vehicle with engine running. Stepped away from vehicle, began to roll backwards, made an effort to get
## 11775                                                                                                                                                                                             Walk back to desk, lost footing and fell, hit head on desk/cabinet. ()
## 11776                                                                                                                                                                                                                            Walk through door while EE was grinding
## 11777                                                                                                                  Walked around a group of people standing in the hallway to access the office door. Foot slipped & slid into the door striking her head on handle.
## 11778                                                                                                                                                                       Walked away from desk and tripped over a moving box that she was packing for office move. ()
## 11779                                                                                                                                                                         Walked by a hood vent something flew in eye I washed it out thought is was ok. Left eye ()
## 11780                                                                                                                                                                                      Walked into a beam, causing a contusion on her left eye brow. Report only. ()
## 11781                                                                                                                                                                                Walked into a pole with extreme force, while on way to acu from morning meeting. ()
## 11782                                                                                                                                                                                                                                     Walked into an open window. ()
## 11783                                                                                                                                                                                               Walked into building and caught reflction of laser beam in both eyes
## 11784                                                                                                                                                                                                                        Walked into door in hallway of peabody hall
## 11785                                                                                                                                                                         Walked into flashover simulator while it was being cleaned & debris flew in EE's right eye
## 11786                                                                                                                                                  Walked into patient's room. Patient was standing in middle of room w/no clothes on. Smiled & hit EE w/fist in jaw
## 11787                                                                                                                                                                                                Walked into the corner of a/c unit outside the sergeant's office ()
## 11788                                                                                                                                                                               Walked into the corner of the door on the camera safe-scratching r. Side of nose. ()
## 11789                                                                                                                                                                                                                           Walked off elevator and fell on floor ()
## 11790                                                                                                                                              Walked out of office; stripper was on floor & she fell face first on the floor, chipped front teeth contusion to knee
## 11791                                                                                                                                                                 Walked out of walnut 203. Both feet shot out from under employee. Wet floor. Hit head on floor. ()
## 11792                                                                                                                                                                                                           Walkilng in woord and tree limb struck EE in left eye ()
## 11793                                                      Walking across campus from bus to work in asc #1. Distracted by worker trimming plants in front of library storage facility. Moved to left side of sidewalk. Forehead down to left ear ran into sign post. ()
## 11794                                                                                                                                                     Walking across floor to assist I/m. Feet went out from under me, head hit bed, fell on lt. Side of hiplft. Arm
## 11795                                                                                                                Walking across parking lot, slipped on pieces of loose pavement; fell caught self with right hand; fell on right hip striking left side of face. ()
## 11796                                                                                                                                                                      Walking across room when pushed into elevator door/hit in head and choked in neck by coworker
## 11797                                                                                                                                                                                                         Walking across yard, an unknown object struck in right eye
## 11798                                                                                                                                                                                                   Walking and slipped in water, fell down and hit head and hip. ()
## 11799                                                                                                                                                                                              Walking around corner in hallway & ran into stuent, breaking her nose
## 11800                                                                                                                                                                                  Walking around pool area of hotel, gust of wind blew abraisive material into eye.
## 11801                                                                                                                      Walking around tailgate of dumptruck, branch sticking out of bed; came around corner of tailgate walked into it and scratched left eyelid. ()
## 11802                                                                                                                          Walking around the avery county landfill conducting compliance audit. When he brushed his clothes some debris from clothes flew into eye.
## 11803                                                                                                                                                                                    Walking around the yard & something landed on my face & stung me under the eye.
## 11804                                                                                                                                            Walking away from gate, coming toward towerand metal basket was down. Did not see and walked into basket with her head.
## 11805                                                                                                         Walking away from resident's bed, I tripped over bed sensor cord, fell on b knees & it l side of my head on dresser. Bruised knees, lump l side of head ()
## 11806                                                                                                                                                                                               Walking back from withers to 1911 and something flew in left eye. ()
## 11807                                                                                                                                                                             Walking back through tunnel and had to bend over to get by light casing that. Cut head
## 11808                                                                                                                                                                            Walking between cars, slipped on ice receiving contusions to left hand, head & left hip
## 11809                                                                                                                                                               Walking between gravely building and hospital construction site-EE had foreign body fly in left eye.
## 11810                                                                                                                                                                                                          Walking down hall on ward, felt something in my righ eye.
## 11811                                                                                                                                                                                                                       Walking down hall, pt hit EE on side of head
## 11812                                                                                                                    Walking down on sidewalk in front of new dorm and the windwos were open out on the sidewalk and he walked into one of the windows, cutting face
## 11813                                                                                                                 Walking down outside back stairs & was hit in eye by large piece of roofing gravel. It broke into smaller pieces on impact. Re-roofing in progress
## 11814                                                                                                                                                                                                   Walking down stairs in j bldg, slipped and fell about 5 steps ()
## 11815                                                                                                                              Walking down stairs to basement where office is located, missed a step, fell down 4-5 steps, twisted ankle and hit head on stairs. ()
## 11816                                                                                                                                                                                                                 Walking down stairs, fell down to concrete landing
## 11817                                                                                                                                                                                Walking down stairs, tripped and fell against doorhitting face (tooth May be loose)
## 11818                                                                                                                                                  Walking down steps at back entrance feet slipped on steps, head hit steps lower right back and right buttocks. ()
## 11819                                                                                                                              Walking down the steps in courthouse foot slipped on something slippery making EE fall on marble floor. Hit rt knee, head & shoulder.
## 11820                                                                                                                                                                                                    Walking from back tower when an unknown insect went into lt eye
## 11821                                                                                                               Walking from bureau of mines to atrium, when mist was felt on his skin. Eyes began to have a burningsensation. Landscape worker was spraying in area
## 11822                                                                                                                                                                                                              Walking from canteen wasp stung on lt side of head ()
## 11823                                                                                                                                 Walking from car to holding hall when she fell causing lt hand scrapes & contusions, lt face & punctured lip when tooth pierced it
## 11824                                                                                                                                                                                                    Walking from car to the hickory district court bldg. Slipped ()
## 11825                                                                                                                                                                         Walking from dining facility to dorm when rock wasthrown & officer was hit in back of head
## 11826                                                                                                                                                                 Walking from hallway to room 111 door entrance slipped on damp floor, fell with head hitting door.
## 11827                                                                                                                                                                                          Walking from one building to the next one employee was stung by a wasp ()
## 11828                                                                                                                      Walking from radio console area to breakroom. Floor had just been mopped, EE was aware that floor was wet slipped & fell & hit back and head.
## 11829                                                                                                                                                                  Walking hastily from the gatehouse trying to get out of the rain, and tripped on uneven pavement.
## 11830                                                                                                                                                                                                                 Walking in chute an insect flew into his right eye
## 11831                                                                                                                                                                                                  Walking in front of fan in block when something flew into his eye
## 11832                                                                                                                                             Walking in hall way, slipped & fell down. Right knee, right arm, right head, elbow went into center of chest--brusied.
## 11833                                                                                                                                                                             Walking in office parking lot and stepped in a hole/indentation is asphalt and fell ()
## 11834                                                                                                                                                   Walking in opearation upstairs in the breezeway, maintentance was painting, and he felt something in his eye. ()
## 11835                                                                                                                     Walking in parking garage to asst co-worker removematerials from her car & she ran into cable whichhit her in the face causing her to stumble.
## 11836                                                                                               Walking in parking lot and slipped on ice and hit her head on pavement. She felt okay that day but decided by the next day that the injury should be checked out. ()
## 11837                                                                                                                                                  Walking in pharmacy to put an authorization number on a dc175 medication Mar nurse hansen stuck his thumb in eye.
## 11838                                                                                                                                Walking in student parking area at 6am, tripped on step, fell forward on concrete sidewalk, injured chin, head, l. Hand and knee ()
## 11839                                                                                                                 Walking in the emergency lane of I26, when a tractor and trailer passed out work squad at high rate of speed, rock flow up, hit EE in side of head
## 11840                                                                                                                                                                                                            Walking into bldg tripped over uneven sidewalk andfell.
## 11841                                                                                                                                                                             Walking into front gate of institution when she was stung by bee/wasp on her right ear
## 11842                                                                                                                                                                              Walking into maint bldg lower level through east roll up door, tripped over threshold
## 11843                                                                                                                                        Walking into maintenance warehouse & bay door was not rolled all the way up. Subject struck on top of head w/bottom of door
## 11844                                                                                                                  Walking into my office, slipped on clear wrapper on floor, grabbed door frame to prevent fall, hit head on wall and eye on mail holder on wall ()
## 11845                                                                                                                                                                                              Walking into pod to change tv, when inmate punched me in left face ()
## 11846                                                                                                                                                                                                    Walking into van, she hit her head on stationary door latch. ()
## 11847                                                                                                                                                                                   Walking off transfer bus & hit head. Exit compartment area lower than her height
## 11848                                                                                                                    Walking on descending asphalt pavement w/ no near by handrails, employee lost footing & fell onto ltside of body. Bruised left cheek bone, scap
## 11849                                                                                                                                                                                Walking on her lunch hour and tree limb fell & hither on her head causing dizziness
## 11850                                                                                   Walking on sidewalk to off campus facility, tripped on sidewalk, fell to the ground, tried to catch herself with her left arm, injuring wrist and hitting head/face on ground ()
## 11851                                                                                                                  Walking on the sidewalk & stepped off curb, fell onto her side, striking head & twisting ankle. Strain neck/sprain ankle/contusion forearm/wrist/
## 11852                                                                                                                                              Walking out austin and stepped on rock, fell, Miss-Ing 4 steps and hit head first and then legs hit and twisted back.
## 11853                                                                                                                               Walking out of a resident's room to look for lift-did not see resident and ran into resident. Resident's chin hit left brow bone. ()
## 11854                                                                                                                  Walking out of b pod, the pod door was not in motion, as I stepped through to exit the pod door closed and hit me in the head on the left side ()
## 11855                                                                                                                                     Walking out of courthouse, consturction was going on, exit door was opened, wind gushed and blew in my face, later eye swelled
## 11856                                                                                                                                                  Walking out of djjdp sponsored forum the plastic name tag flew up&hit me in the eye. I have had lasik surgery. ()
## 11857                                                                                                                                                                                              Walking outside & gust of wind blew foreign partical into rt. Eye. ()
## 11858                                                                                                                               Walking over pine plantation that was grown up w/ briars and grape vines. Grape vines struck EE in right ear and punctured ear drum.
## 11859                                                                                                                                                                                              Walking past rear of truck & struck head on a piece of wood stick out
## 11860                                                                                                                                                                                                   Walking patient back to ward pt. Hit EE in the back of the head.
## 11861                                                                                                                                                                                           Walking through door and fell back and hit head on concrete pavement. ()
## 11862                                                                                                                                                                             Walking through dorm when she felt a grain of sandwas in her lt eye and began to water
## 11863                                                                                                                                                                   Walking through parking lot, tripped and fell while carrying a back pack sprayer in front of him
## 11864                                                                                                                     Walking through the hanger, slipped on some oil onthe floor. Tried to break fall by grabbing power cart, tipped over & hit head on work bench.
## 11865                                                                                                                        Walking through woods, flagging boundry for timbersale. EE walked through large spider web. Debris in web hit EE in eye, causing infection.
## 11866                                                                                                                                                                             Walking thru hall escorting inmate to medical when something fell into my left eye. ()
## 11867                                                                                                                                                   Walking thru shop & metal hand grinder was in operation - metal partical flew out from grinder & hit his eye. ()
## 11868                                                                                                                                                                                                       Walking to assigned duty station felt faint and collapsed ()
## 11869                                                                                                                                                                                                                          Walking to building in the parking lot ()
## 11870                                                                                                                                                                                                          Walking to car employee slipped on ice in parking lot. ()
## 11871                                                                                                                                                                                                            Walking to check on student when something got into eye
## 11872                                                                                                     Walking to go into work, stepped in a hole in front of white house that threw me down on my face, broke my glasses, threw me on the ground, rolled me over. ()
## 11873                                                                                                                                                                     Walking to lecture, slipped on ice, fell and hit back of head on brick walkway and cut lip. ()
## 11874                                                                                                                                                                                         Walking to move her car and tripped on curb and landed on knee and shin ()
## 11875                                                                                                                                                                                           Walking to work from parking lot a foreign object blew into right eye ()
## 11876                                                                                                                                                        Walking toward room when her knee possibly gave out; knee hit wheel of wheelchair; fell forward & sideways.
## 11877                                                                                                                                                               Walking toward the stairs, an inmate squirted a substance out of a bottle into his eyes and mouth ()
## 11878                                                                                                                          Walking under duct work which has hangers held by threaded rod. Raised his head up too soon and the threaded rod cut a gash in his scalp.
## 11879                                                                                                                                                 Walking under enterprise trailer to get to other side. Stood up too soon causing him to strike his head on trailer
## 11880                                                                                                                                                                                Walking up sidewalk. Fell on top steps hit face on cement. Hurt lip. Cut under nose
## 11881                                                                                                                           Walking up steps she turned to go down the steps returning to her car; she tripped on her untied shoe laces & fell hitting her forehead.
## 11882                                                                                                                                                                                          Walking upstairs and hit head on the ceiling and fell down the stairs. ()
## 11883                                                                                      Walking with client; client started to lean and was going to fall. Trying to keep client from falling, EE's foot got stuck with clients and she fell on face, busting lip. ()
## 11884                                                                                                                                                                                        Walking with pt down hall, pt turned, struck EE on the left side of face ()
## 11885                                                                                                                                                                                                              Walking with pt to pt, pt began hitting EE in head ()
## 11886                                                                                    Walking with students on class field trip and lost balance on un-even pavement. Sandra fell and struck her head, shoulder, and hand on pavement. Bruised face and shoulders. ()
## 11887                                                                                                                                                                                                          Walking, slipped on ice, fell and hit back of his head ()
## 11888                                                                                                                         Walkng through woods stepped on a young sapling tree which when he removed hi sfoot came back and hit him on side of head damaging eardrum
## 11889                                                                                                                                                                                              Wallking down courthouse stairs with supplies, she fell head first ()
## 11890                                                                                                                              Ward 6 had freshly painted walls, within minutes of arriving on the ward, eyes began to swell, facebecame red and skin began to itch.
## 11891                                                                                                                                                            Was applying vaginal cream to pt, had 2 hct help to hold pt, pt got one leg free and kicked EE in mouth
## 11892                                                                                                                Was assaulted by a juvenile. Hit in the head and had bruising on the left side of face and reported having scratches on his right arm and left leg.
## 11893                                                                                                                                                                    Was assaulted by an inmate while escorting him to to segragation. Inmate spit in face and eyes.
## 11894                                                                                                                                                             Was assisting code 4 on green unit. Disturbance on unit and received a cut on the back of the head. ()
## 11895                                                                                                                        Was assisting in patient to be redirected, during manual restraint-hit side of head behind rt ear onside of wall while going to the ground.
## 11896                                                                                                                                                                                                                            Was assisting resident with basic care.
## 11897                                                                                                                              Was assiting pt to take med, pt was resistant, was talking to pt to envourage pt to take meds, put meds in pt mouth and pt spit at EE
## 11898                                                                                                                                                                                                                                         Was assualted by inmate ()
## 11899                                                                                                                                                                                                 Was assulted by inmates upon entering f pod to change channels. ()
## 11900                                                                                                                                   Was at inmates cell passing a food tray after closing the food passage door fluid splashed through the opening on my facial area
## 11901                                                                                                                  Was at the corner of mcdowell/hillborough st. A driver hit the rear of Mr Brown car. He motioned for the driver to pull over, the driver did not.
## 11902                                                                                                                                                                                                                          Was at tower 6 and was stung on right ear
## 11903                                                                                                                                                                    Was attempting to prevent another employee from falling when she slipped and fell to the floor.
## 11904                                                                                                                                           Was attending rcdt training, round robin he stateshe pulled his groin area when performing differenttypes of techniques.
## 11905                                                                                                                                                                       Was bending down to place a fielding table againstthe wall when a dust hanger caught lt eye.
## 11906                                                                                                                                                                        Was bent down to wake resident, when resident lifted head up and struck the employee's nose
## 11907                                                                                                                                                                                       Was breaking up fight and one of the students hitme in the back of the head.
## 11908                                                                                                                                                          Was caught in a cattle chute, while trying to get free, hit her head on a 3 inch diameter metal piece. ()
## 11909                                                                                                                                Was changing resident and co-worker was moving pillow to reposition, hitting a isolation mask & the mask struck officer in the eye.
## 11910                                                                                                                                                                                   Was cleaning and pulled curtain to open and it fell down and hit her on head. ()
## 11911                                                                                                                                            Was cleaning the brass doors with bright boy cleaner and forgot that she had cleaner on her hands and rubbed her eye ()
## 11912                                                                                                                                                                                                   Was doing a yard count and tripped going up steps on platform ()
## 11913                                                                                                                                          Was dumping some debris while using the dingo utility loader, must have disturbed a yellow jacket nest and they stung him
## 11914                                                                                                                                                                      Was getting mop to clean floor which was located under staircase and mop hit top of her head.
## 11915                                                    Was goining through the technique of the forward strike and reversal strick when another student esecuted a reverse strike and the baton flew out of his hand and hit the employee in the nose and forehead. ()
## 11916                                                                                                                                                                              Was handing inmate clean clothes when the inmate threw an unknown substance on him ()
## 11917                                                                                                                                                                        Was holding resident pr prone in ito when residenthead butted him. Headbutted lt upper eye.
## 11918                                                                                                                 Was in nursing office and began smelling strong odor. Eyes began burning, throat became scratchy, tongue became numb, had a strong taste in mouth.
## 11919                                                                                                                                                               Was in process of restraining an assaultive inmate when he grabbed the EE's glasses and crushed them
## 11920                                                                                                                                                                                              Was in sinkroom drying sink out hose came off hookand hit in the nose
## 11921                                                                                                                                       Was in the process of returning the inmate his property; inmate squirted an unknown substance into my face, eyes, & mouth ()
## 11922                                                                                                                                Was inspecting the kitchen work. Walked from the building to the facitlity gate when struck by a flying insect in the right eye. ()
## 11923                                                                                                                          Was instructed to strip search inmate bed and personal property. Used gloves, days later face began to break out. Face, chin, bottom lip.
## 11924                                                                                                                                                               Was lifting an access door to patas exhibit and forgot to secure door down & it fell on top of head.
## 11925                                                                                                                                                         Was looking for materials in the welding department and walked into unseen piece of metal cutting his head
## 11926                                                                                                                                                             Was making rounds on the lower yard & through the dorms- an insect bit me on the left earlobe (bee) ()
## 11927                                                                                                                                                                              Was not completed on the form 19 - per phone call from er EE tripped on the stairs ()
## 11928                                                                                                             Was on a business trip(vermont)awoke 08/08/05 withstomach pain, on the way to bathroom, passed. Awokehead was bleeding, struck head on security latch.
## 11929                                                                                                                                                                                                                 Was on a-blk and felt something in her left eye ()
## 11930                                                                                                                                                                                             Was on unit 3 recreation yard & was stung by a beebehind his left ear.
## 11931                                                                                                                                                         Was on ward 452 and there was water down at med station. Cambe back up and hit door knob with top of head.
## 11932                                                                                                                                 Was opening a box in shipping & receiving, pulled the top lid and it came off very fast, packing material flew up in his right eye
## 11933                                                                                                                           Was operating a statesowned vechicle, returing to facility from refueling when involve in a motor vehicle accident. EE ran into the back
## 11934                                                                                                                                                                               Was outside in the wind & debris got into eye (later realized it was an eye lash) ()
## 11935                                                                                                                                                                Was panning meat and something flew into eye, washed out w/ water but stills feels something in eye
## 11936                                                                                                                           Was parparing to assist with traffic control he was standing outside vehicle when collsion occured with a motor home and a passenger car
## 11937                                                                                                                         Was participating in a practical and was sprayed in the face as part of training, lt eye had irritation/swelling. Taken to wake forest er.
## 11938                                                                                 Was patrolling dorm c. Inmate refused to be restrained and was irate after verbal directive. Inmate refused to be restrained. She attacked me and hit me several times in face. ()
## 11939                                                                                                                                                                     Was picking kernels from hulls by hand to be screamed over shaker ()no treatment - report only
## 11940                                                                                                                                                                                   Was placing full restraints on an inmates when he struck employee in the face ()
## 11941                                                                                                                                                       Was placing hand cuffs on inmate, he struck me with a closed fist on the right side of head and ear area. ()
## 11942                                                                                                                      Was placing samples on the floor & hit head on a metal box that was attached to the wall of the room. Rec a puncture/laceration to her scalp.
## 11943                                                                                                                                                                                  Was playing in wcc sponsored tournament, going up for rebound, got poked in l eye
## 11944                                                                                                                                                                                                                  Was pouring liquid on floor, splashed into EE eye
## 11945                                                                                                                                                         Was prying on post, stretching wire to connect to post & a piece of metal flaked off post & went into eye.
## 11946       Was putting up supplies in supply closet, wires fell down from ceiling and attempted to put them back up so door would close and something fell into my left eye from the ceiling area. I thought my eye was going to be ok but it watered all last week. ()
## 11947                                                            Was rear-ended in motor fleet car; the collision pushed vehicle into car in front. Mr. Walston was returing from a meeting in rocky mount. List injuries as: mild concussion, whiplash, & stiff neck ()
## 11948                                                                                                                            Was removing a box from front passenger seat of state vehicle. When the box slammed shut on EE's head, forcing it to the left door jam.
## 11949                                                                                                                   Was removing contrabands(pictures) from the wall &the inmate pushind into officer twice and causing the clipboard to hit her beneath the rt eye.
## 11950                                                                                                                      Was removing his shotgun from the weapon locker atc-11 when the gun lock cable snagged the trigger causing the weapon to discharge. Rt/lt ear
## 11951                                                                                                                            Was removing vascar from patorl car using side cutters, small piece of wire broke off and flew inleft eye. Corneal abrasion to left eye
## 11952                                                                                                                                                                                  Was reverse head butted during an episode. Was hit in nose mouth and forehead. ()
## 11953                                                                                                                                                                                                                 Was routing wood and a lot od debris got into eye.
## 11954                                                                                                                                                                Was searching an inmate, inmate hit and scratched him on face and neck, broken skin and bleeding ()
## 11955                                                                                                                                                                                                                Was service on line when something got in right eye
## 11956                                                                                                                                            Was setting up a mouse breeding and I dropped the cage and the bedding flew up into my face getting something in my eye
## 11957                                                                                                                                           Was shaping aplace of metal on the grinding wheel when a place of metal flew over his safety glassesand into his lt eye.
## 11958                                                                                                                                      Was sitting 2:1 with patients when one patient walked up to him and pushed him on the chest causing head to hit against wall.
## 11959                                                                                                                                               Was sitting in chair in med room, leaned over to pick up something I dropped and the chair flipped with me in it. ()
## 11960                                                                                                                                       Was sitting in desk chair in classroom, chair collapsed causing him to fall & hit right side of jaw bone on side of his desk
## 11961                                                                                                                                                                                               Was sitting in the gatehouse when sliding window fell on top of head
## 11962                                                                                                                                                                    Was splashed in rt eye when preparing an iv line for reinsertions. Some had ns and blood on it.
## 11963                                                                                                                                                                                                 Was spraying oven cleaner and the cleaner splashed back around eye
## 11964                                                                                                                                                                  Was spraying paper towel container and chemical sprayed splashed in face, EE then wiped her face.
## 11965                                                                                                                                                                                                             Was struck in the chin with a nail from a nail gun. ()
## 11966                                                                                                                                                                                                                     Was struck in the mouth by fist of student. ()
## 11967                                                                                                                                                                                               Was sweeping stages & piece of clear hard material scratched his eye
## 11968                                                                                                                                                        Was taking cap off ladder and struck his forehead on booster reel discharge lever causing lacerationto head
## 11969                                                                                                                                                                                             Was taking lids off trays and lid on tray slid off and hit EE on r eye
## 11970                                                                                                            Was taking mail to courier at courthouse, bent down to pick keys up and had mail under arm. When I bent down corner of large envelope stuck left eye ()
## 11971                                           Was teaching a motorcycle safety class. Laid his helmet and gloves on the parking lot ground. Fire ants crawled in the helmet and gloves. When he put them back on his neck and hands were attacked by the fire ants. ()
## 11972                                                                                                                Was tightening a bolt on one of our forklifts. He was getting the forks on a different level so thathe could move some items in the kelly building.
## 11973                                                                                                                            Was traveling back from basic correctional officertraining in state owned car, was involved in a traffic accident with civilian vehicle
## 11974                                                                                                                                                  Was trying to alaign breaker clips when screw driver accidently slipped and crossed a & b phases creating a flash
## 11975                                                                                                                                                    Was trying to sit down in thair to begin interveiws the chair slid from under and fell hit head on the floor ()
## 11976                                                                                                                                                      Was under boat welding and gust of wind blew debris under welding helmit and into eye under safety glasses ()
## 11977                                                                                                                Was unpacking boxes in her office. She was using aa hand cart to move the boxes and the cart handle hit he rin the temple causing dizziness & pain.
## 11978                                                                                                                                                                        Was using a grinder to grind the barge / cabin of boat, rust particle got into right eye ()
## 11979                                                                                                             Was using wet vac to get water up n units utility door was open it was full of water when EE pushed door back a brick hit EE on head (lt-shldr rt-foot
## 11980                                                                                                                                                                          Was walking down stairs when knee gave way causingher to fall down 4 steps to the ground.
## 11981                                                                                                                                                                     Was walking in woods from job site to his vehicle when a branch(small)raked across hit rt eye.
## 11982                                                                                                                                             Was washing trays and had put the sprayer behind the faucet and it came from behind the faucet and hit her on forehead
## 11983                                                                                                                                 Was weeding with a string trimmer, after wiping her eye protection and putting it on again she felt some irritation around the eye
## 11984                                                                                                                                                                      Was welding and had a quick flash burn to the eyesbefore sheild was pulled in plance on face.
## 11985                                                                                                                                                                  Was welding overhead in an outside area when wind carried a small piece of metal into his rt eye.
## 11986                                                                                                                                                                                                          Was working a computer and fell unconscience on the floor
## 11987                                                                                                                                               Was working assembiling scenery. There was dust in the air, something went behine my safety glassesand got in my eye
## 11988                                                                                                               Was working the mental health wing. Inmate asked officer for a bar of soap, officer opened door tj give inmate the soap and inmate attacked officer.
## 11989                                                                                                                                                                           Was working under truck, debris fell into eye. EE was wearing safety glasses at the time
## 11990                                                                                                                                                                                                              Was working with water and under eyes started to burn
## 11991                                                                                                                            Washed hands dropped paper towel, bent down to pick up towel & on way up struck head against corner of wall causing laceration over eye
## 11992                                                                                                                                                           Washed hands, reached to roll out some paper towels to dry them with. Holder front position fell on head
## 11993                                                                                                                                          Washing bathing table, I dropped a spray bottle ofdiluted clorox (1:64). The top came off and splas hed some in my r eye.
## 11994                                                                                                                                                                                                                              Washing hands and soap flew into eyes
## 11995                                                                                                                                                                                     Washing her hands when towel rack fell & hit her face between eyes on her nose
## 11996                                                                                                                                                                                       Washing walls & baseboards. Went to stand up & bumped head on electrical box
## 11997                                                                                                                                                                                                                                       Wasp sting on top of head ()
## 11998                                                                                                                                                                                                                                        Wasp sting to back of head.
## 11999                                                                                                                                                                                                        Wasp stung nose while supervising inmates on road squad. ()
## 12000                                                                                                         Watching inmate strip & wax the floors, coming around the corner after trying to get the doors to blue unit open foot slipped from under me and I fell. ()
## 12001                        Water fountain drain stopped up. Pured chemical into drain and allowed time to activate. Flushed with hot water and started plunging. Plunger reversed and sprayed chemical water mixture into emp eyes, lips and mouth and facial area. ()
## 12002                                                                                                                                                                                                                      Water from commode splashed into EE right eye
## 12003                                                                                                                                                                                                                     Water splashed in eye while using equipment ()
## 12004                                                                                                                                                                                                     Water was splashed into r eye when dishes fell back into water
## 12005                                                                                                                                                Wax myrtle bush limb recoiled and made contact with EE's right eye while he was working on a site preparation burn.
## 12006                                                                                       Wca description: raised up bumped head on glass () on next care notes: EE bent down to pick up a napkin and quickly raised her head amd hit it on the side rail of the wall.
## 12007                                                                                                                                                                                         Wearing ear plugs and sweat accumulated in the earcausing pain in left ear
## 12008                                                                                                                                                                         Wearing full ppe according to employee - spraying cage with acid and it got into his eyes.
## 12009                                                                                                                                           Wearing respirator hood makes sweat accumlate & run into ears. Wears hearing aids & sweat caused ears to become infected
## 12010                                                                                                                                                                                                          Weedeating at 109 e. North street, raleigh () - right eye
## 12011                                                                                                                                                                                                 Weeding in area of dense vegetation, a plant stem scratched rt eye
## 12012                                                                                                                                                                                                                                         Weeding/laceration to eyes
## 12013                                                                                                                                                                                 Welding & suing slag hammer to remove slag when peice of slag flew & hit EE in eye
## 12014                                                                                                                                                      Welding & was using slag hammer to remove slag when piece of slag flew under his shield & embedded in his eye
## 12015                                                                                                                                                                                                         Welding a hot water pipe, felt something going in left eye
## 12016                                                                                                                                                                                                                    Welding and grinding debris got in left eye. ()
## 12017                                                                                                                                             Welding and had welding helmet on, but glare from welder irritated both his eyes. Later, eyes became red and irritated
## 12018                                                                                                                      Welding drain grates at apex warehouse (used mask gloves & goggles). Stopped to help load piece of equipment onto a truck. It was raining, he
## 12019                                                                                                                                                                                                     Welding equipment failed, causing employee to burn his eyes ()
## 12020                                                                                                                                 Welding helmet was flashing back while welding fuel tank. Woke up during the night with eyes burning. Wife took to emergency room.
## 12021                                                                                                                    Welding material had accumulated in place that couldn't be brush out. EE used air pressure to remove debris. Blew under safety glasses into eye
## 12022                                                                                                                                                                                                                                 Welding metal & eyes began to burn
## 12023                                                                                                                                                   Went in pt's room to take vitals and pt refused and punched employee on back of head, knocking him to the floor.
## 12024                                                                                                                                          Went on trip the van had a real bad smell in it. Looked for something that could be causing the above odor could not fine
## 12025                                                                                                                    Went to check on the hustler in the sullivan st property when something flew out of rafters, he looked up and dust fell from ceciling into eyes
## 12026                                                                                                                                                                                   Went to close inmate's door. Inmate pushed door open & began striking EE in face
## 12027                                                                                                                                Went to cook bldg for a meeting. Nose started burning. Went outside then back inside. Alergic reac- tion to something in this bldg.
## 12028                                                                                                                                                                                   Went to get client up-client reached up and scratched right eye and down face ()
## 12029                                                                                                                             Went to get seeds for inmate use from barn and raninto truck rack that hadn't been there before & that EE did not expect to be present
## 12030                                                                                                                                                             Went to give resident care and she hit me in the face. Resident scratched me on both my lip and arm ()
## 12031                                                                                                                                                                                                    Went to lock door on the textile bldg, stung by bee three times
## 12032                                                                                                                             Went to open resident food tray and resident got upset. Didn't want me to help and started hitting me in the face and busted my lip ()
## 12033                                                                                                                                                                          Went to sit down on stool; stool rooled and I fell on floor and hit my head on cabinet ()
## 12034                                                                                                                                                                                         Went to use toilet, cover dropped, went to pick up, hit head on wall mount
## 12035                                                                                                                                                                                               Wheeled office chair slipped causing EE to fall hitting head on desk
## 12036                                                                                                                                                      Whele defending self & coworkers from 3 assautive wards, I was struck (punch & kick) in the head twenty times
## 12037                                                                                                                                                                                           When I stepped in the (floor/chemical) stripper, I fell to the floor. ()
## 12038                                                                                                                                                                              When attempting to put an inmate in restraints, the inmate spit in employee's face ()
## 12039                                                                                                             When attempting to remove a limb entangled in the passenger side mirror of bus another unseen limb fell & struck EE on top of head.. (road squad duty)
## 12040                                                                                                                                                                                             When carrying out the chemical the needle falls off & went into rt eye
## 12041                                                                                                                                                                                       When coming out of unit an object flew into my rt eye. Verification # 295351
## 12042                                                                                                                                                                                                                                       When debris flew in his eye.
## 12043                                                                                                                                                                                When directing client to walk around other clients-client slapped EE on the rt ear.
## 12044                                                                                                                                                                            When exiting the basket of lift-safety bar fell- breaking upper frt tooth of EE's mouth
## 12045                                                                                                                                                                               When going outside a squirrel jumped out of tree and scratched rt side of EE's face.
## 12046                                                                                                                                                                                       When got of trolley/train tripped, feel forward, hit face & glasses broke ()
## 12047                                                                                                                                                                                                      When grinding on metal, a piece of trash went in left eye. ()
## 12048                                                                                                                                         When helping a client pull his pants up he stepped back and pushed me into the bathroom stall and my head hit the door. ()
## 12049                                                                                                                                                                                                               When interviewing pt, pt struck EE on right cheek ()
## 12050                                                                                                                                                                      When leaving cedar hall after cleaning-hit in headby metal bed part used to prop open a door.
## 12051                                                                                                                     When looking at the avaliable choices I was standard tile to select vinyl flooring for retal property house bent over to look head hit framing
## 12052                                                                                                                                                                                         When moving coe blower, blower blew debris in luke armstrong's left eye ()
## 12053                                                                                                                                                                                                When opened inmate trap door, inmate threw liquid fluid in face. ()
## 12054                                                                                                                                                                                    When opening 10 ml tube, EE's eyes were sprayed with enterococcus fecalis spray
## 12055                                                                                                                                                                                                        When opening file cabinet lock shot out and hit EE in chin.
## 12056                                                                                                                                          When opening the janitors' locker the glass cleaner fell to the floor and splashed. Chemical splashed in eyes and face ()
## 12057                                                                                                                                             When placing handcuffs on inmate one cuff on, inmate turned and swung. Either hit by inmate or cuff that was loose. ()
## 12058                                                                                                                                                                                                   When placing inmate on ground & during struggle EE's ear was cut
## 12059                                                                        When pulling privacy curtain in bathroom to change client, the rod fell on head. Struck the left side of head, pain in left frontal area; left ear and down neck numb; upper left lip numb.
## 12060                                                                                                                                      When putting client in chair with arjo lift, a piece of the lift fell on head. The piece broke off and hit EE in the head. ()
## 12061                                                                                                                                                                             When reaching to get spray can of degreaser off shelf-contents discharged into rt eye.
## 12062                                                                                                                                                                                   When redirecting a patient, the patient hit staff on the right side of his face.
## 12063                                                                                                                                                                                                   When redirecting patient, the patient punched staff in mouth. ()
## 12064                                                                                                                                        When repositioning the laser beam on the sample- worker passed their head through the "scattered light" from the laser beam
## 12065                                                                                                                                                                         When signing out, EE leaned against mail bins causing them to flip board over on her face.
## 12066                                                                                                                                                                       When sitting down at the desk an empty clipboard popped up between my index finger and thumb
## 12067                                                                                                                                                                             When standing up from a bent position employee hit his head on an overhead metal shelf
## 12068             When starting to sit down in the courtroom an individual behind her was leaning over the back of her seat, when she proceeded to sit down she hit the top of his head with the back of her neck and has had a constant headache & stiffness in neck ()
## 12069                                                                                                                                                                              When straightening steps of camper a piece of metal broke off and went into left eye.
## 12070                                                                                                                                                                       When taking a child to sit in time in, the child trew an air conditioner remote at staff. ()
## 12071                                                                                                                                              When taking mop out of bucket she hit the globe over the light bulb because it fell hitting her head and rt shoulder.
## 12072                                                                                                                                                                         When taking out gas valve on kitchen equipment wrench slipped hitting employee in the head
## 12073                                                                                                                                                      When taking time sheets into the oic's office, Ms. Atkins walked by the fan and something flew in her eye. ()
## 12074                                                                                                                                                                                         When testing rotation of pump, hot water splashed on left side of face. ()
## 12075                                                                                                                                                   When the construction started to dig up the ground for the elevator the dust aggrivated sinuses, brochial cough.
## 12076                                                                                                                                                                                                 When toileting a resident, EE was hit in the righteye by resident.
## 12077                                                                                                                                                                    When using pry bar, it slipped and hit himself in the mouth, EE was removing duct from ceiling.
## 12078                                                                                                                                                     When vehicle was cranked up - EE bent down to try to unstick the accelerator padal & truck to off. Bloody nose
## 12079                                                                                                                           When walking patient back from school, staff turnedto lock door back & was struck by patient in the mouth breaking a piece of tooth off.
## 12080                                                                                                                                                             Whie transporting resident from bed to chair, the lift tilted over and hit EE in the face on the nose.
## 12081                                                                                                                                                   Whiel refueling at texaco station, a bee stung her on the lip. EE was taking a drink from a can when it happened
## 12082                                                                                                                    While EE at refrigerator another EE asked her to get something she turned to see what they wanted door knocked glasses off & hit corner of eye.
## 12083                                                                                                                                                                                                   While EE attending a venture course an insect flew into left eye
## 12084                                                                                                                                                                                              While EE changing client's clothes-cleints finger stuck EE in rt eye.
## 12085                                                                                                                                                                                                              While EE changing client-client kicked EE in the jaw.
## 12086                                                                                                                                                                                                  While EE changing filters on a chiller-oil sprayedinto both eyes.
## 12087                                                                                                                                                                                                      While EE cleaning a large pot cleaner splashed into right eye
## 12088                                                                                                                                                                                                       While EE cleaning cooling tower got something in his rt eye.
## 12089                                                                                                                                                                                                         While EE cleaning restroom with spray went into right eye.
## 12090                                                                                                                                                                                                          While EE cleaning the cheese pump soap slashed in rt eye.
## 12091                                                                                                                                                                                  While EE giving client a bath client's knee struckee under chin chipping a tooth.
## 12092                                                                                                                                                                                                While EE grinding wheel exploded and shot metal into EE's left eye.
## 12093                                                                                                                                                                                                              While EE having veh service a bug flew into left eye.
## 12094                                                                                                                                                             While EE leading horse from wash pit to stall-the horse reared and struck out and hit EE on head/back.
## 12095                                                                                                                                                                                                   While EE loading brush on back of truck a stick went inot rt eye
## 12096                                                                                                                                                                                                     While EE operating riding lawnmower-wind blew debris into eye.
## 12097                                                                                                                                                                                 While EE passing meds on the hallway-inmate hit EE on left side of face near mouth
## 12098                                                                                                                   While EE reaching into veh to get flashlight-another veh hit EE's veh causing door to jam and collide w/EE's body injuring rt hand and forehead.
## 12099                                                                                                                                                                                                              While EE removing ceiling tile trash fell into rt eye
## 12100                                                                                                                                                                                While EE sealing envelopes liquid solution over spilled and splashed into left eye.
## 12101                                                                                                                                                          While EE sitting in patrol vehicle struck in rear by another vehicle causing concussion and sprainedneck.
## 12102                                                                                                                                                                       While EE teaching at prison and looking for inmateon roster-inmate assaulted EE in the face.
## 12103                                                                                                                                                                                      While EE trying to restrain client-client fightingback and trying to bite EE.
## 12104                                                                                                                                                                                                          While EE walking from building wind blew dirt intort eye.
## 12105                                                                                                                                                        While EE was applying solution to cow, cow jerked and cup containing solution splashed into EE's right eye.
## 12106                                                                                                                                                                                              While EE was attempting to descolate client-clienthit EE in left eye.
## 12107                                                                                                                                                                                           While EE was blowing with backpack blower some debris got into EE's eye.
## 12108                                                                                                                                                 While EE was bush hogging a limb struck him in theface knocking off his safety glasses and hitting him in the face
## 12109                                                                                                                                                             While EE was changing patient, patient became combative, hitting EE in left eye and pulling EE's hair.
## 12110                                                                                                                                                                 While EE was cutting fire lines with bulldozer a limb entered cab of dozer and stuck EE in rt eye.
## 12111                                                                                                                                                                 While EE was cutting grass an insect flew in to his right eye which made his eye swell and redden.
## 12112                                                                                                                                                                              While EE was cutting tree into lengths another tree fell and hit EE on head and neck.
## 12113                                                                                                                                                                                               While EE was cutting wood w\\power saw, wind blew sawdust in his eye
## 12114                                                                                                                                                                           While EE was inspecting ceiling insultaion in mechanical room, debris fell in right eye.
## 12115                                                                                                                                                                                                          While EE was loading crates something went into left eye.
## 12116                                                                                                                                                         While EE was loading pumps and hose into the truck the wind was blowing and blew some dust into his rt eye
## 12117                                                                                                                                                                                            While EE was mopping, clock fell off wall and struck her in the head ()
## 12118                                                                                                                                                                                                              While EE was outside something blew into his righteye
## 12119                                                                                                                                                                                                   While EE was pulling cables one cable struck him in the left eye
## 12120                                                                                                                                                                       While EE was reading in staff room a client entered the romm and head butted EE on the nose.
## 12121                                                                                                                                                                                               While EE was removing brush he got a foreign object in his right eye
## 12122                                                                                                              While EE was responding to a call for assistance, his vehicle was forced off the roadway. He took evasive action, causing his vehicle to run off road
## 12123                                                                                                                                                  While EE was restraining a client he was elbowed in the rt eye and rt knee was driven into floor bywgt of client.
## 12124                                                                                                                                                                                           While EE was slicing meat the auto came back and hit EE in the left eye.
## 12125                                                                                                               While EE was spreading wood chips around campus a wind gust blew debris in his eye. He flushed eye and was taken to armc and had scratches on cornea
## 12126                                                                                                                                                                                        While EE was talking on phone it was some loud popping came in on the phone
## 12127                                                                                                                               While EE was waxing the floor, she moved a desk w/a bookshelf on top. The bookshelf fell, hitting her on the right side of her head.
## 12128                                                                                                                                                                               While Ms. Hunsucker was giving her report to second shift, something got in her eye.
## 12129                                                                                                                While a mechanic was removing a drip-pan from an a/c unit in the maintenance office the pan slipped from the mechanics hand fell & struck robert on
## 12130                                                                       While administering oc pepper spray to an inmate after he assaulted her with a closed fist knocking her to the floor and she hit the back of her head on the floor and her leg on a table ()
## 12131                                                                                                                    While arresting subject for n. O. L and failure to stop subject resisted arrest during the positioning of handcuffs, started swinging & kicking
## 12132                                                                                                                                                                                      While ascending stairs, EE fell in stairwell, hitting her head on brick wall.
## 12133                                                                                                                                                         While ascending steps to storage area, employee bumped the top of her head on a low hanging steel pole. ()
## 12134                                                                                                                   While assisting a co-worker, who was unscrewing smaller support beams, by holding a large beam; a small metal stud fell hitting him in his head.
## 12135                                                                                                                                                                                 While assisting client in using paper shredder, something flew into EE's left eye.
## 12136                                                                                                                                                                                            While assisting client onto van EE bumped head on the inside top of van
## 12137                                                                                                                                                                                  While assisting client with changing his split. Client spit in EE mouth. Exosure.
## 12138                                                                                                                                                                       While assisting pt in shower, pt became agitated and struck cna in r side of mouth and cheek
## 12139                                                                                                                                                                                  While assisting resident, EE was struck by resident in chin and ear area of head.
## 12140                                                                                                                                                                           While assisting staff in restraining a studnet, her glasses were knocked off and broken.
## 12141                                                                                                                                                                    While assisting the schoolteacher with disruptive juvenile, Mr. Hedrick was punched in the eye.
## 12142                                                                                                                                               While assisting to body alarm help on ward 236, patient hit staff in the mouth & knocked her glassesoff of her face.
## 12143                                                            While assisting to restrain an aggressive student, said student struck Ms. Rice in the face causing her eyeglasses to fall from her face and be broken and her right eye bruised, blurry, throbbing. ()
## 12144                                                                                                                                                                                          While assisting with a use of force pepper spray sprayed in the right eye
## 12145                                                                                                                                                                While assisting with placing restraints on an inmate, the inmate spat into left eye and facial area
## 12146                                                                                                                                         While assisting with student restaint student struck at emploee knocking her glasses from her face. Injured face & lt arm.
## 12147                                                                                                                                                                      While at a proscribed burn, employee struck his head on a light box, leaving a laceration. ()
## 12148                                                                                                                                                                                                      While at desk a bug hit her right eye lid. Right eye swollen.
## 12149                                                                                                               While at lake, particpated in soar program. EE wasgiving a jet ski ride & pt leaned to much, & jet ski flipped over & caused EE to hit head on dock.
## 12150                                                                                                                                                                                 While at work out b. C. I., EE was struck by an inmate w/ a closed fist in lt eye.
## 12151                                                                                                                                                                                      While attempting to bathe a pt, pt struck EE on l side of temple area w/ fist
## 12152                                                                                                                                                                                              While attempting to cuff the inmate, the inmate struck the officer ()
## 12153                                                                                                                      While attempting to descend a fixed ladder EE footslipped; the hinged door closed hitting his left arm & the corner of the door cut his head.
## 12154                                                                                                             While attempting to inspect the milk truck the driver opened the rear door and the stack of milk crates fell out of the truck striking her on the head
## 12155                                                                                                                                                              While attempting to place cuffs on inmate, the inmate hit the staff with an open hand to her face. ()
## 12156                                                                                                                                     While attempting to restrain an aggressive inmate, he fell to the floor with the inmate striking his head against the wall. ()
## 12157                                                                                                                                                While attempting to strip search/restrain inmate, inmate struck EE in left jaw and spit on EE's left cheek and eye.
## 12158                                                                                                                                            While attempting two inmates from fighting grabbed one inmate the inmate body shifted causing EE to stumble off balance
## 12159                                                                                                                                                                              While attending a program EE was struck in the head by an apple thrown from the stage
## 12160                                                                                                                                          While attending new employee orientation, receivedpepper spray training, when exposed to spray, eyesbecame very irritated
## 12161                                                                                                                                                                                                                 While attending to pt, pt hit EE lower lip w/ fist
## 12162                                                                                                                                                                                                 While bathing an individual, employee was hit in the right jaw. ()
## 12163                                                                                                                                                                           While bathing an indiviudal, employee bumped her head on the cabinet in the bathroom. ()
## 12164                                                                                                                                           While bending over empty a trash can, employee struck head on corner of wodden desk causing concussion/abrasion forehead
## 12165                                                                                                                                                   While bending over in the process of plugging wet dry vaccuum cord into wall-stood up and hit head on panel box.
## 12166                                                                                                                             While bending over, the officer stepped forward to pick up some clothing (inmates). She hit the front of her head on a metal table. ()
## 12167                                                                                                                                                     While breaking down cardboard boxes, employee stood hitting her head against the corner of the counter top. ()
## 12168                                                                                                                                               While breaking up a fight between inmates, sprayed in face/eyes w/pepper spray, and l-upper arm injuried in scuffle.
## 12169                                                   While breaking up a fight, the employee had a student retrained. The student was punching and kicking trying to get to another student. During the restraint, the employee was punched on the lips and cheek. ()
## 12170                                                                                                                                                                       While brushing a patient's teeth, th patient reached out and scratched EE on a in right eye.
## 12171                                                                                                                                                                            While bundling mail, EE stepped off of stool, lost balance hitting head and rt shoulder
## 12172                                                                                                                                                                                         While carrying door, bracket at the back of elevator hit enter part of ear
## 12173                                                                                                                                                                                              While carrying resident to eto, resident head butted EE in left cheek
## 12174                                                                                                                                          While carwling under a building to install a shower drain, his name tag went under the saftey glasses scratching left eye
## 12175                                                                                                                                                                     While catching a goat, the goat reared backwards hitting employee on the left side of her face
## 12176                                                                                                                                                                                             While changing a client, stood up & hit head on paper towel dispenser.
## 12177                                                                                                                                                                                                              While changing filters, a bug flew into his left eye.
## 12178                                                                                                                                    While changing out a transmission on a patrol car, the exhaust converter slipped out of his hand and hit his tooth, breaking it
## 12179                                                                                                                       While changing sensor on chill water line, the water pressure blew the sensor out and hit his forehead, laceration to the center of forehead
## 12180                                                                                                                                          While chasing stolen vehicle EE lost control of patrol vehicle in a curve and ran off roadway stricking a dirt embankment
## 12181                                                                                                                                                                      While checking incoming vehicles w/ mirror EE walked into object connected to rear of vehicle
## 12182                                                                                                                                                                       While checking inmate mattress for mattress cover a foreign object flew into EE's right eye.
## 12183                                                                                                                                                        While checking paper towel dispenser in bathroom, pushed it back up, it fell back hitting EE on top of head
## 12184                                                                                                                                                                             While checking perimeter on phoenix yard, employee fell hitting forehead on window. ()
## 12185                                                                                                                                                                         While checking the fire dampers, part of track gave way and ceiling tile fell in left eye.
## 12186                                                                                                                                                                                               While checking work on work bench, something went into EE's left eye
## 12187                                                                                                                                                           While chipping brush that had posion ivy in it a small particle got in eye. Lt eye swollen and scratchy.
## 12188                                                                                                                                                                                                  While cleaing lecture hall tiles fell and hit EE on back of head.
## 12189                                                                                                                                                                                                                              While cleaning EE got mix in left eye
## 12190                                                                                                                While cleaning a room, EE felt what she believes was a spider on face over right eye. After checking, she noticed that her face had begun to swell.
## 12191                                                                                                                                   While cleaning a sink in the men's restroom, she smelled a strong, bleach-like odor; a short while later her eyes began to burn.
## 12192                                                                                                                                                   While cleaning backstage area in the theatre; dust or some other object got into my eye, which I then rubbed. ()
## 12193                                                                                                                                                                   While cleaning bathroom, chemical splashed into employee's left eye causing pain and irritation.
## 12194                                                                                                                                                                                             While cleaning blood off wall with bleach-bleach splashed in left eye.
## 12195                                                                                                                                                                                            While cleaning cells inmate threw all purpose cleaner in EE's face/eyes
## 12196                                                                                                                                                                                                       While cleaning company truck out debri flew in right eye. ()
## 12197                                                                                                                      While cleaning escape hatch, bent down to pick up broom and while standing back up struck top part of head on the corner or the opened hatch.
## 12198                                                                                                                                                                                                          While cleaning giraffe stalls, debris got in left eye. ()
## 12199                                                                                                                                                                                         While cleaning glassware a few drops of nitric acid splashed on EE's face.
## 12200                                                                                                                                                                                While cleaning hvac cooling fins, mist and dust got in both eyes causing irritation
## 12201                                                                                                                                                                                                                     While cleaning in dorm endust went into rt eye
## 12202                                                                                                                                                                                                        While cleaning off a shelf dust from books went into rt eye
## 12203                                                                                                                                                                                                         While cleaning on exhibit overhead door fell on EE's head.
## 12204                                                                                                                                                                                               While cleaning out a drain EE got chemical on handand rubbed rt eye.
## 12205                                                                                                                                                                                   While cleaning out window wells, he walked into tree branch. Irritated right eye
## 12206                                                                                                                                                                  While cleaning shelves in warehouse EE tipped bottle of cleaning fluid over and it went into eye.
## 12207                                                                                                                                                                                         While cleaning shower in resident hall, cleanser splashed in her left eye.
## 12208                                                                                                                                                  While cleaning showers, bleach bottle fell to the floor and the top fell off and bleach splashed up into EE's eye
## 12209                                                                                                                                                                                                      While cleaning soap dish EE alleges chemical splashed in eye.
## 12210                                                                                                                                  While cleaning supply closet, moving boxes from floor, stacking in order. When EE stood up, box flap was open and hit her in eye.
## 12211                                                                                                                      While cleaning the bathroom, employee was filling the spray bottle with oxivir disinfectant and the cleanser splattered in employee's eye. ()
## 12212                                                                                                                                                                                      While cleaning tobacco barns EE was stung by 2 yellow jackets on back of head
## 12213                                                                                                                                                                                        While cleaning toilet water with cleaning agent splashed into right eye. ()
## 12214                                                                                                While cleaning trash and debris from under the stairwell, employee encountered spiders and raised up suddenly, bumping his head on a sharp corner of the stairs. ()
## 12215                                                                                                                                                                                                           While cleaning vat run - stood up & bumped head on shelf
## 12216                                                                                                                                While cleaning weapons @ greene correctional therewas no ventillation causing c/o to have severe headache and bloodpressure problem
## 12217                                                                                                                                                            While cleaning wildfolwer seed from stems a particle flew into EE's lt eye & lodged in eyelid f18 filed
## 12218                                                                                                                                                        While cleaning woods with loppers around posts onboundary lines and roadway noticed bumps on arms and face.
## 12219                                                                                                                                                          While cleaning, a wooden interior folding door came loose, falling & striking EE on the back of the head.
## 12220                                                                                                                                                                                                   While cleaning, bleach splashed in employees face and right eye.
## 12221                                                                                                                                                                                                                      While clearing bushes insect bit EE on rt ear
## 12222                                                                                                                                                   While climbing stairs in mcnair, employee tripped over his feet and fell completely to the sidewalk on his face.
## 12223                                                                                                                                                                                            While closing side gate, the latch fell and hit left side of my face ()
## 12224                                                                                                                                                                        While closing wicket door, inmate reached out and struck the officer under his left ear. ()
## 12225                                                                                                                                                                                          While coming down stairs with trays, an inmate head butted the officer ()
## 12226                                                                                                                             While completing last room count inmate was observed w/lit cigarette. Ordered to put it out. Inmate blew ashes in his face.. Both eyes
## 12227                                                                                                                                      While conducting a cell search, c/o grant was assaulted by I/m shane mebane 0277670, fell striking head causing a concussion.
## 12228                                                                                                                                                                                        While conducting a level 2 inspection, dirt/sand was blown into EE's rt eye
## 12229                         While conducting a perimeter check of the facility, officer addo ws near gate 10 and pulled on the fence to check to see if it was secure on the bottom. When he looked up the razor wire ht head and caused a laceration to his scalp. ()
## 12230                                                                                                                                                                        While conducting cell search an inmate attacked and struck him multiple time in the face ()
## 12231                                                                                                                                                     While conducting count I knocked on the inmate's bathroom door the inmate popped the door open stiking my head
## 12232                                                                                                                    While conducting finger stick blood sugar after sticking the patient EE squeezed finger to get blood, blood shot on EE's eye lid, brow, and eye
## 12233                                                                                                                                                                 While conducting night time surveillance in a wooded area, a foreign object flew into right eye ()
## 12234                                                                                                                                                                                                   While conducting rounds, an inmate spit in the officer's face ()
## 12235     While conducting sampling of estuarine near shore grass-beds employee stepped up onto the gunnel on port side of boat using the stanchion. In doing so, he struck his head on underside of front let corner of fiberglass t-top causing a laceration on scalp.
## 12236                                                                                                                                                         While conducting showers for mental health inmatesee was struck/punched by an inmate over his left eyebrow
## 12237                                                                                                                       While conducting showers for mental health inmatesinmate thompson swung at his face and head with a closed fist-striking around lft eyebrow.
## 12238                                                                                                                                                                                                       While conducting showers inmate head butted me in the lip ()
## 12239                                                                                                                      While conducting treatment team meeting, inmate became hostile & angry & hit EE. EE injured lt side of face & eyes & rt thumb... Dob 6. 4. 30
## 12240                                                                                                                                                                                  While counseling w/juvenile the juvenile hit EE 3-times on lt side of head & nose
## 12241                                                                                                                                                          While counselong with juvenile, employee was struck by juvenile below left eye, causing knot and bruising
## 12242                                                                                                                                                                                                     While counting inmates he flipped out and started fighting. ()
## 12243                                                                                                                                                                                      While covering seats with bungie cord-cord came loose and hit EE in the face.
## 12244                                                                                                                                                                         While crossing an intersection, employee was t-boned on the passenger side of the vehicle.
## 12245                                                                                                                              While cuffing an inmate to his bed, EE's hands came in contact with drainage bag. EE then wiped hisface and left eye to remove sweat.
## 12246                                                                                                                                                                                            While cutting a piece of lumbar-chip flew into rt eye for blade of saw.
## 12247                                                                                                                                                                While cutting a tree limb, EE was hit in the head by the limb and began to experience headaches. ()
## 12248                                                                                                                                                                                                                            While cutting debris went into left eye
## 12249                                                                                                                                                                While cutting down a tree branch, EE was hit in the left eye with a vine wrapped around the branch.
## 12250                                                                                                                                                                While cutting down a tree, a tree limb fell and struck employee in the head causing unconsciousness
## 12251                                                                                                                     While cutting grass a bug landed on employee's nose and bit nose causing redness and swelling. Investigation?Treat only 1 time with primecare?
## 12252                                                                                                                                                                                                             While cutting grass, employee had an allergic reaction
## 12253                                                                                                                                                                                                  While cutting insulation from dirt a piece flew into EE's rt eye.
## 12254                                                                                                                                                  While cutting metal studs to length on the wall a piece of metal popped onto EE's forehead and slid down left eye
## 12255                                                                                                                                                                                                                  While cutting metal, a small flake entered eye ()
## 12256                                                                                                                                                                                              While cutting patient toe nail, toe nail clipping went into left eye.
## 12257                                                                                                                                                                                          While dealing with a runaway, EE was hit in the head with a wooden stick.
## 12258                                                                                                                                                                                While decontaminating inmate, she spit & it struckms. Miller in the facial area/eye
## 12259                                                                                                             While directing her attention to a student anotherstudnet distracted her. The other student hit her in the face with a fire extinguisher breaking nose
## 12260                                                                                                                           While discarding placentas in labor & delivery thebucket was not completly sealed and when grabbing it the blood splattered in EE's eye.
## 12261                                                          While documenting historical structures in the park, employee lost his balance while traversing through thick foliage and trpped, falling into a tree branch and receiving a laceration on right cheek ()
## 12262                                                                                                                                                                             While doing a physical on an individual, he began hitting, scratching, grabbing me. ()
## 12263                                                                                                                                                                            While doing a two man take down EE fell on his rt shoulder. Rt shoulder & back of head.
## 12264                                                                                                                                                                                        While doing cell search stup and and hit head on corner of inmate table. ()
## 12265                                                                                                                                                                   While doing finger stick to check blood sugar, patients blood spurted from pipette into EE's eye
## 12266                                                                                                                                                    While doing maintenance work on pipes in the mechanical room a paint chip fell from the tank into right eye. ()
## 12267                                                                                                                                                                                                                       While doing park clean up moth flew into ear
## 12268                                                                                                                                                                                                    While doing rec with students employee was hit in nose by elbow
## 12269                                                                                                                  While doing routine check in bed rea, stopped at water fountain to get water. Upon leaving water fountain, walked into the fan, hitting rt temple
## 12270                                                                                                                                                                     While doing tanker inspections and cleaning out tanker cleaning solution splashed in left eye.
## 12271                                                                                                                                                         While doing the watchman, lifted metal flap on door, slipped out of hands and came down forcefully on head
## 12272                                                                                                                                                                              While doing work duties EE became sick - noticed leak and odor dripping from ceiling.
## 12273                                                                                                                                                                                                                 While doing yard work; yellow jacket flew into ear
## 12274                                                                                                                                                              While dragging brouse through a wooded area a tree branch snapped and hit employee in the left eye ()
## 12275                                                                                                             While dressing a resident another resident picked up plastic leg brace & three it hitting EE in mouth. Front teeth number & small cut inside lower lip
## 12276                                                                                                                                                                          While drilling overhead into ceiling two small pieces of metal shavings went into rt eye.
## 12277                                                                                                                                                                While drinking coffee, employee started chocking causing her to fall to the floor and hit her head.
## 12278                                                                                                                                                                                    While driving a vehicle in driving rain, I was in-volved in a vehicle accident.
## 12279                                                                                                                                                                                                                      While driving backhoe, objects blew in eye ()
## 12280                                                                                                                                                                        While driving state vehicle, a deer ran into van causing van to roll 3 times into ditch. ()
## 12281                                                                                                                                                                                           While driving with window down debri came into window lodging in rt eye.
## 12282                                                                                                                           While driving, vehicle steering failed & steering wheel locked and caused EE to collied with anothervehicle. Bump on center of forehead.
## 12283                                                                                                                                                     While dumping recyclables from box truck, employee bumped head going from the back of the truck to the cab. ()
## 12284                                                                                                                                                                                                      While dusting/working a piece of trash/dust blew into his eye
## 12285                                                                                                                                                                                             While eating lunch EE bit into something very hardand broke left molar
## 12286                                                                                                                                                                                                                          While eating on break EE cracked a tooth.
## 12287                                                                                                                                                      While edging the grass around fence on campus property, employee had some dirt and a rock entered eye area ()
## 12288                                                                                                                                       While ees were transfering the patient from the shower bed to the chair the vander lift tipped over and hit upside her head.
## 12289                                                                                                                                              While employee plowed fireline, pressurized fluid from hydrualic line sprayed entire front body including face & eyes
## 12290             While employee was cleaning the handicapped stall in the upstairs ladies restroom was hit in the eye with the stall door. Employee's eye began to water and hurt really bad. Employee began to have a headache and eye hurt and didn't feel normal. ()
## 12291      While employee was filing applications in the file room she bent over to place a file in the lower drawer. When the employee went to stand up from the bent position she hit her head on a file draw that was left open above. Felt tingle over eye later. ()
## 12292                                                                                                                                                                                     While employee was preparing a soil sample, a soil particle entered her eye ()
## 12293                                                                                                                                        While employee was providing security an inmate swung at him, employee dodged strike and inmate hit employee on top of head
## 12294              While employee was walking down hallway at the entrance of the barber bldg, she stumbled and fell to the floor. Employee hit her head on the brick all in the hall way as well as bruising the right side of her body from hitting the tile floor. ()
## 12295                                                                                                                                       While employee was working on computer, the chair he was sitting in broke causing him to fall to the floor and hit his head.
## 12296                                                                                                                                                                                                            While emptying trash cans, employee got particle in eye
## 12297                                                                                                                                                                          While emptying trash from a wastebasket EE allegesunknown liquied splashed into left eye.
## 12298                                                                                                                   While enroute from sending beach to main compound, EE was stopped on hwy 50 for traffic to clear to turn, was struck from behind by another veh.
## 12299                                                                                                                                                                                While entering a building, employee struck his headon the bottom of the stair case.
## 12300                                                                                                                                                      While entering the main entrance gates, tripped over something & fell into the chain linked fence face first.
## 12301                                                                                                                         While entering the rear of the bus to load meals, he ducked down and turned sideways and as he did so banged his head on metal door frame.
## 12302                                                                                                                  While escorting a trash truck off. EE bent over to look at lock on dumpster, while attempting to get back on truck hit his head on forks of truck
## 12303                                                                                                                                                                                         While escorting an inmate back to his cell, the inmate spit in my eyes. ()
## 12304                                                                                                                                                                                      While escorting an inmate to the shower the inmate spit in employee's eye. ()
## 12305                                                                                                                                                                                 While escorting an inmate to the shower, the inmate spit in the sergeant's face ()
## 12306                                                                                                                                                      While escorting an inmate to the shower, the inmate squirted an unknown liquid in the face of the officer. ()
## 12307                                                                                                                            While escorting inmate back to his cell EE states that the inmate turned and shoved him in the back causing him to hit his head on door
## 12308                                                                                                                                                                       While escorting inmate back to his cell, he became violent and struck officer in the face ()
## 12309                                                                                                                                          While escorting inmate off exercise yard he spit in EE face. Did not get into eyes, mouth or brokenskin. Lt side of face.
## 12310                                                                                                                                                                        While escorting inmates to shower inmate removed hand cuff and struck me in my right eye ()
## 12311                                                                                                                                                          While escorting inmates to shower inmate removed handcuffs and struck me above the left eye with them. ()
## 12312                                                                                                                                                                                                    While escorting inmates, an inmate spit in the officer's eye ()
## 12313                                                                                                                     While escorting patient to quiet room, the patient struck staff on right side of head with a closed fist. Injured right side of head and neck.
## 12314                                                                                                                         While escorting patient, patient became agressive and struck employee in nose causing a fracture. Employee also had scratches on his arms.
## 12315                                                                                                                  While escorting student to his room, EE grabbed student by lt arm to prompt him to move. The stud ent swung with his rt hand, striking EE in nose
## 12316                                                                                                                                                   While examining a fence lock, head was sliced by razor wire. Used peroxide and paper towels to stop bleeding. ()
## 12317                                                                                                                    While exchanging inmate clothing the cart was under the stairwell, he hit his head on the iron stairwell while putting clothing in the cart. ()
## 12318                                                                                                          While exiting her office walking into the hallway she collided (face to face) with a blind student that was walking down the hallway hurting her nose. ()
## 12319       While exiting the truck he lost his footing on the top step and tried to catch himself; he missed the step and fell hitting his head on the pavement. He tired to get up and fell again hitting his head a second time causing him to loss consciousness. ()
## 12320                                                                                                                                                                                                   While experiencing some seizure type activity, fell and hit head
## 12321                                                  While facilitating a discussion with students outside their dorm during welcome week, employee was struck in face by a stray volleyball from an unrelated game on nearby sand volleyball court. Broke glasses. ()
## 12322                                                                                                                                                                          While feeding an individual the individual cough up food and it went into employees eyes.
## 12323                                                                                                                                  While feeding boards through the planermill reveresed a board which knocked over a board on the wallcausing it to hit EE in head.
## 12324                                                                                                                          While feeding chow, an inmate threw a cup containing a liquid substance on officer and some of the liquid went into the officer's eye. ()
## 12325                                                                                         While feeding inmates, at inmate jordan's trap door the inmate threw what appeared to be milk and food mixed together got in the officer's right eye and on his clothes ()
## 12326                                                                                                                                                       While feeding on mcon, when ofc opened inmate's wicker door, the inmate threw an unknown substance on him ()
## 12327                                                                                                                                                                                                           While fighting fire, EE got ember in eye causing scratch
## 12328                                                                                                                                                         While filling a container with hydrated lime, the bag collapsed and the dust got all over the employee. ()
## 12329                                                                                                                                                                                 While flagging boundary lines for timber harvest, a twig poked EE in right eye. ()
## 12330                                                                                                                                                                    While gaining control of juveniles involved in a riot employees glass were bent across his nose
## 12331                                                                                                                                                                                    While getting on tractor to remove snow, hit head on trim around windshield. ()
## 12332                                                                                                                                                                                                           While getting out of gator, EE hit head on metal door ()
## 12333                                                                                                                                                   While giving cpr to an inmate bodily fluids from the inmate came thru the mask and into her mouth and on face ()
## 12334                                                                                                                                                                                           While giving medication to client-client scratchedee on rt side of face.
## 12335                                                                                                                  While going down the stairs from 9th floor to 8th, EE fell on her left knee & fell back & hit head against wall. Injured lt knee, rt shin & head.
## 12336                                                                                                                                                                                          While going from one building to another, foreigh object blew into lt eye
## 12337                                                                                                                                                                           While going into help room, knocked germocat off of sink causing splatter into right eye
## 12338                                                                                                                                                                             While grinding greenhouse benches. Piece of metal shaving lodged in the EE's right eye
## 12339                                                                                                                                                                                                                      While grinding metal a chip flew in right eye
## 12340                                                                                                 While grinding steel on the ships stern a small particulate entered the left eye. It was not immediately visible but become irritated and painful that evening. ()
## 12341                                                                                                                                               While guarding inmates on the east yard, an inmate jumped officer and hit him on left side of head and shoulder area
## 12342                                                                                                                                                                                                 While handcuffing an inmate, he hit me in my left eye and back. ()
## 12343                                                                                                                                                While handling a piece of cardboard for recycling, the corner of the cardboard hit the employee in the left eye. ()
## 12344                                                                                                                                                                              While handling aggressive client-client slid to floor causing EE to hit head on wall.
## 12345                                                                                                                                                                                                          While handling inmate showers, inmate spit in my face. ()
## 12346                                                                                                                                                  While heating a hard boiled egg in the microwave when he touched the egg it exploded in his face and left eye. ()
## 12347                                                                                                                                                 While heating up screed with the torch the flame flared up and burnt employee in the face. List injury as: face ()
## 12348                                                                                                                               While helping an individual get his shirt on, he accidentally put his hand forward and one of his fingers went into her left eye. ()
## 12349                                                                                                                                          While helping take locker off of truck, the towel rack hit EE on top of his head while lowering the locker to the ground.
## 12350                                                                                                                                                                                    While in bathroom pulling client's pants up, client rose up hitting EE on nose.
## 12351                               While in crdt training officers bailey and barber were conducting one of the exercises and officer bailey got too close to officer deloatches face where officer bailey's fingernail caused a small gash in officer deloatch's cheek
## 12352                                                                                                                    While in dinning room, EE & another staff was trying to get resident to put shaker down, jerked & hit EE in the mouth, knocking loose 2 crowns.
## 12353                                                                                                      While in laundryroom with client assisting him with folding clothes properly client turned around and hit staff in the mouth with his balled up underwear. ()
## 12354                                                                                                                                           While in process of cell extraction, inmate hit me and threw the plastic food tray. Also punched and spit in my face. ()
## 12355                                                                                                                  While in restraint training, EE was lying on floor with hands cuffed behind back. Co-EE was attempting to stand him up, fell face first on floor-
## 12356                                                                                                                                                                              While in supervisor's office, EE began to cough, allergy-like symptoms, unknown cause
## 12357                                                                                                                                                                                                                    While in training EE got something in right eye
## 12358                                                                                                                                                        While in training she was acting role of inmate & her head hit bar outside of cage. Laceration abovert eye.
## 12359                                                                                                                                                                                       While in van pin fell out of fire extinguisher filling the van with smoke ()
## 12360                                                                                                                   While inmate was moping around my desk, walked around behind him to get out of the way, inmate was bring mop handle down, struck right side head
## 12361                                                                   While inspecting a broken lawnmower (used for the upkeep of the grounds), coworker grabbed the mower rollbar and it came down and hit employee in the head causing headache and a stiff neck. ()
## 12362                                                                                                                                                                                While installing dental light fixture in cieling, tile particles fell into left eye
## 12363                                                                                                                                                                                                             While installing duct work air blew debris into rt eye
## 12364                                                                                                                                                                        While installing refrigeration compressor, EE noticed something visible in his left eye. ()
## 12365                                                                                                                                                                        While interning w/ client behavior was hit in eye and nose, glasses knocked off face twice.
## 12366                                                                                                                                                                                         While investigating a disciplinary offense, inmate spit on sgt. 's face ()
## 12367                                                                                                                                                  While investigating another incident, dale stood up and hit his head on a cross bar supporting other equipment ()
## 12368                                                          While joe was raising the bridge rod hammer by hand, the hammer slipped off of the rod and struck him in the upper lip. His lip was split and required 3 stitches. List injuries as: upper lip & tooth ()
## 12369                                                                                                                                                                                                 While learning to fill out papers unknown object went into rt eye.
## 12370                                                                                                                                                                                                                       While leaving parking deck EE slipped on ice
## 12371                                                                                                                                                        While loading an animal in the rear of a cargo van hit head on the upper latching hook. Cut to top of head.
## 12372                                                                                                                                                                While loading bookends, EE's hand slipped causing EE to strike himself in the lt eye with his thumb
## 12373                                                                             While loading kitchen trays into state van, wind blew van door closed. The door hit c/o jernigan on the right side of her face causing her glasses to fall off and injury her nose. ()
## 12374                                                                                                                                                               While loading panel van, employee experienced burning eyes, difficulty breathing, dizzy, headache ()
## 12375                                                                                                                                                                                                                 While loading range van, hit head on rifle holder.
## 12376                                                                                                                                                                       While loading resident into van, resident hit staff lt eye and closed fist. Contusion lt eye
## 12377                                                                                                                                      While loading with assistance a timber onto a flatbed truck, pushed end of timber forward and bumped timber end with mouth ()
## 12378                                                                                                                                                                                                    While loading woodpulp into railcars debrew flew into right eye
## 12379                                                                                                                                                                    While locking a juvenile in his room, juvenile began hitting EE about the head, rt. Eye, & face
## 12380                                                                                                                                                                     While looking for a file in filing cabinet, paper struck corner of right eye and scratched it.
## 12381                                                                                                                                                While looking under inmates bed during shake down lifted head up and hit corner on table. Sent out for tetnus shot.
## 12382                                                                                                                                                                                              While lowering the chair when the chair flipped over, struck face. ()
## 12383                                                                                                                          While maintaining saftey and security a juvenile who was out of control struck EE in the head with his fist & kicked EE in the ribs area.
## 12384                                                                                                                                                                     While making a security check, something got in employees eye and started burning and itching.
## 12385                                                                                                                                                While making an arrest, employee was assaulted by student resulting in fractured cheek bone and laceration on nose.
## 12386                                                                                                                                                                      While making mental health rounds and speaking with inmate, inmate spit directly into eye. ()
## 12387                                                                                                                              While making rounds, a small whirlwind picked up and blew some trash into EE's left side of his face, foreign object entered left ear
## 12388                                                                                                                                                       While marking timber for ranger training, EE turned around then was poked in the right eye by atree sapling.
## 12389                                                                                                                                                          While marking timber, a twig entered ees right earcausing severe pain. Pain eased but ear ache persisted.
## 12390                                                                                                                                                                                             While measuring trees for productivity study bitten by tick on rt ear.
## 12391                                                                                                                                                                                     While milking a cow, another cow beside the milking cow kicked him in the head
## 12392                                                                                                                                                                       While mixing finish lime with water & using drill some of the lime splashed up in right eye.
## 12393                                                                                                                               While monitoring pre-dawn party (homecoming) altercation between students brok out, EE was struck on left jaw of facy by offender ()
## 12394                                                                                                                                                                                                        While mopping floor EE suffered chemical exposure to rt eye
## 12395                                                                                                                                                While moving 7'bookcase to truck employees backed into each other. Mr. Syles' head pushed forward hitting bookcase.
## 12396                                                                                                                                                                                                     While moving a piece of wood some dust flew into his left eye.
## 12397                                                                                                                                                                                   While moving a rack, EE was struck on head by skateboard that was on the rack ()
## 12398                                                                                                                                        While moving a wardrobe to extract water from the carpet; a six pack of bottled soda slid off the top& hit him in his head.
## 12399                                                                                                       While moving a work zone sign and extending legs, portion of the sign hit employee above the eye. List injury as: laceration and contusion above left eye ()
## 12400                                                                                                                                                                                               While moving admin van... Slipped on ice when getting out of van. ()
## 12401                                                                                                                   While moving an inmate from holding cell, inmate became irate and assaulted officer and inmate threw an object and struck officer in the head ()
## 12402                                                                                                                                                                                                           While moving an inmate, inmate spit in officer's face ()
## 12403                                                                                                                                                                    While moving brush and debris from roadway, limb struck employee on chin causing a deep cut. ()
## 12404                                                            While moving cows in the dark, she had a battery powered spotlight to see what she was doing. After using the light, she rubbed her eye not realizing there was acid from the spotlight on her hand. ()
## 12405                                                                                                                                                While moving inmates to the chowhall, an inmate struck the side of the officer's face with a flat piece of metal ()
## 12406                                                                                                                                                                         While moving items around in the warehouse, a piece of debris fell into employee's eye. ()
## 12407                                                                                                                        While moving trash from suggs mill pond game land, EE was cutting brush to access more trash when a briar scraped right side of face & eye.
## 12408                                                                                                                                                                                                                   While mowing foreign matter flew into his rt eye
## 12409                                                                                                                                                                                                              While mowing grass clippings went under upper eyelids
## 12410                                                                                                                                                                                                               While mowing grass, bug flew in eye causing swelling
## 12411                                                                                                                                                                                         While mowing grass, rock threw out, bounced off post and hit right eye. ()
## 12412                                                                                                                                                                                                                    While mowing grass, some went into left eye. ()
## 12413                                                                                                                                                                  While mowing large grassy area- dust was blowing. Day was windy, dust blew into his face and eye.
## 12414                                                                                                                                                        While mowing the wind blew debri into his right eye. Employee was wearing safety glasses at time of injury.
## 12415                                                                                                       While nailing a horizontal brace between vertical studs (purlin) in a framed wall, employee missed the purlin and hit himself in the mouth with a hammer. ()
## 12416                                                                                                                                                                 While observing lunch in dining hall, inmate approached ofc. Librado and struck her in the face ()
## 12417                                                                                                                                                        While officer was in the process of going running down the hall he bumped the top of his head on metal gate
## 12418                                                                                                                                                  While on a lift, changing bulb, the glass shattered releasing some gas with the glass falling in employee's face.
## 12419                                                                             While on a use of force team, the team entered inmate's cell and inmate threw two cups of fluid at the team. The fluid went down inside Mr. Geidel's face shield and into his eyes. ()
## 12420                                                                                                                                                                   While on boat patrol EE was thrown against boat due to wave action inuring rt eye and lower lip.
## 12421                                                                                                                                       While on boat, EE was drinking a coke, the boat was slammed into a wave and the coke can knocked out one of his front teeth.
## 12422                                                                                                                           While on evan's road fire, employee was working atstagging in dusty conditions around moving equip- ment and suffer a severe nose bleed.
## 12423                                                                                                                                                                                                               While on firing range EE felt faint and light headed
## 12424                                                                                                                                                                                                                     While on golf cart something blew in left eye.
## 12425                                                                                                                  While on perimeter patrol sitting at turn around three inside perimeter vehicle rubbed rt eye haveallergies and May have rubbed something in eye.
## 12426                                                                                                                                  While on routine patrol, traveling east on westernblvd, a gmc truck made a left turn in front of EE causing a mva. Head left arm.
## 12427                                                                                                                                                              While on routing patrol, trooper pope pulle from anintersection and was struck by an oncoming vehicle
## 12428                                                                                                                                                                             While on school outing van went over railroad track and employee's head hit top of van
## 12429                                                                                                                                                    While on survey at stratford assisted living, Ms. Haynes hit her head on a tampon dispenser in the restroom. ()
## 12430                                                                                                                                                                                                         While on the rifle range a foreign body blew in his eye ()
## 12431     While on wildfire (2/21/11) a metal bushing was lost off tractor. Employee returned to site on the 25th to locate lost part. Winds were blowing strongly that day the following day he woke with very itchy/irratated eyes. By the 27th eyes were swelling. ()
## 12432                                                                                                                  While opening a box of supplies, EE accidently flipped open a 3-ring binder, the sharp edge of binder somehow got into her eye and caused injury.
## 12433                                                                                                                                                                                                         While opening a epi-tube solution splashed into both eyes.
## 12434                                                                                                                               While opening a sliding cabinet door, the door fell on EE's face/nose. Glasses were broken and EE's nose was cut. She fell backwards
## 12435                                                                                                             While opening back door of bus, EE noticed the doodoor was secured at an angle. Forced used to open the door, flew open and struck him above right eye
## 12436                                                                                                                                                                             While opening chemical vial, it unexpectedly shattered and spilled acid in her eyes ()
## 12437                                                                                                                                                                                                              While opening crates something went into EE's rt eye.
## 12438                                                                                                                                                          While opening door to building, the door sprung back, hitting employee on the right side of her forehead.
## 12439                                                                                                                                                                                           While opening the roll up garage door; something blew into his left eye.
## 12440                                                                                                                                                                                                              While opening water bottle hit across bridge of nose.
## 12441                                                                                                                                                                  While operating a twirler/squeezer machine, debris was flung into Mr. Merriweather's left eye. ()
## 12442                                                                                                                                                                                While operating a wheel vehicle transporting lumber sand blew off and went into eye
## 12443                                                                                                                                                      While operating an electric drill, the claimant states that metal shavings came off and hit his right eye. ()
## 12444                                                                                                                                                                                While operating powered shrub trimmers EE hit a bee nest and was stung in left eye.
## 12445                                                                              While operating the excavator willie was loading asphalt and a piece of asphalt slid back and hit the cab, it shattered the glass and got in willie's eyes. List injuries as: eyes ()
## 12446                                                                                                                                                                                                        While operating utility workman small particle entered eye.
## 12447                                                                                                              While participating in control restraint defense techniques training his partner hit the focus pad causing it to hit him in the mouth loosened tooth.
## 12448                                                                                                                        While participating in firearms training, EE leaned over the trunk; aimed shotgun. The gun discharged causing the receiver to fracture-nose
## 12449                                                                                                                                                         While participating in rcdt training was flipped over on a training mat and chipped her front right tooth.
## 12450                                                                                                                While participating in survival practice-att to handcuff a violator who shot at close range causing a ringing in EE's ear and powder burns on face.
## 12451                                                                                                                                                     While passing out food trays inmate threw urine and feces on the officer some got on his face and clothing. ()
## 12452                                                                                                                                                                                                While patrolling b block, employee felt something in his right eye.
## 12453                                                                                                     While patrolling university property, the plastic portion of the earphones too their portable radio that inserts into the ear dislodged into the ear canal. ()
## 12454                                                                                                                                                                                     While performing breakfalls at crdt I noticed a buzzing sound in my right ear.
## 12455                                                                                                                                               While performing medical records duties, got foot hung in cart and fell backwards and hit head on concrete floor. ()
## 12456                                                                                                                                                                            While performing painting task, EE rubbed his right eye. She noticed infection with eye
## 12457                                                                                                                                                              While performing regular duty, client in group homehad pink eye. EE acquired possible eye infection .
## 12458                                                                                                                                                                                                                  While petting dog, dog lunged and but on face. ()
## 12459                                                                                                                                                              While picking up a tobacco rack and hanging it on a rack, a piece of plant material blew into her eye
## 12460                                                                                                                                While picking up food trays inmate had a cup of feces and urine, inmate threw the cup on the right side of my face and shoulders ()
## 12461                                                                                                                                                                                            While picking up medicine cups EE stood up & hit forehead on block wall
## 12462                                                                                                                                              While picking up trash in restroom, employee lost her balance and hit her head on the hand blower. Closed head injury
## 12463                                                                                                                                                                                   While picking up trays, an inmate threw some type of liquid substance on her. ()
## 12464                                                                                                                                    While placeing container of soap back in chemical box, accidently hit spray bottle of oven cleaner and sprayed it into his eyes
## 12465                                                                                                                                                                                                      While placing inmate in rec. Cage, inmate spit in my face. ()
## 12466                                                                                                                                                                                                  While placing inmate in shower, he turned and spit in my face. ()
## 12467                                                                                                                                                                                    While placing mail tote into cart, EE scraped his eye on the corner of the tote
## 12468                                                                                                                                                                        While placing patient in restraints, patient headbutted staff on the left side of her head.
## 12469                                                                                                                                                                            While placing pt in nci hold pt head butted mouth and loosened cap front upper tooth ()
## 12470                                                                                                                                                     While placing restraints on one inmate another inmate spit and spit hit employee in his face under his eye. ()
## 12471                                                                                                                    While playing a game outside with individual, the individual became agitated and headbutted employee in the mouth chipping employee's tooth. ()
## 12472                                                                                                                                                             While playing basketball client accidently elbowedin the nose causing a nosebleed-fractured nasal bone
## 12473                                                                                                                                         While playing basketball with patients, collided with patient, whose hand went into mouth, cutting lip and inner cheek. ()
## 12474                                                                                                                                                                            While playing basketball, patient elbowed nose. Pain in left side of face and under eye
## 12475                                                                                                                                                                        While playing soccer w/ pt and staff, the ball was kicked and hit her in the nose and mouth
## 12476                                                                                                                                                               While playing soccer with patients and staff, the ball was kicked and hit her in the nose and mouth.
## 12477                                                                         While pouring chloroform from original container to smaller container, smaller container slipped and fell out of hand causing chloroform to shoot out of tube and get in EE's left eye. ()
## 12478                                                                                                                                                                                                While pouring fertilizer into a bucket dust got into EE's left eye.
## 12479                                                                                                    While preparing an I-beam to weld, we were chipping and cleaning rust off the beam a piece of rusty metal flew over my safety glasses and into my right eye. ()
## 12480                                                                                                                                                            While preparing to evaluate needed repairs to feed wagon, some type of debris fell in EE's left eye. ()
## 12481                                                                                                                                    While preparing to leave town on official businesswent to post office-unk person entered lobby and shot/killed EE stealing veh.
## 12482                                                                                                                              While proceeding up the ladder on post 61 of the security fence, EE struck the top of his head withconstine wire making a hole in it.
## 12483                                                                                                                                                                                                                       While pruning hollies branch EE hit left eye
## 12484                                                                                                                                                                                                  While pruning in greenhouse dust fell from leaves into EE's eyes.
## 12485                                                                                                                                                                                                                   While pruning shrubbery, EE got debris in rt eye
## 12486                                                                                                                                                                                                         While pruning, debris fell behind safety glasses into eye.
## 12487                                                                                                                                                                   While prunning in a wooded area an insect got behind EE's eye glasses and bit EE on left eyelid.
## 12488                                                                                                                                                                                                         While pt was in manual restraints, pt spit in EE's face ()
## 12489                                                                                                                                                                While pushing a box to go under desk, the desk top extender was out & EE hit her forehead on it. ()
## 12490                                                                                                                    While pushing in the bleachers, they become stuck and when more force was applied the bleachers slidslide quickly, causing EE to slip, and fall
## 12491                                                                                                                                                                              While putting art work into a crate the lid closedhitting EE in left side of the head
## 12492                                                                                                                                                                          While putting away equipment lid fell on nose, scratching and bruising bridge of nose. ()
## 12493                                                                                                                        While putting belt on a client, client's head went forward and struck EE in the mouth hitting tooth (lateral incisor tooth - 10th tooth) ()
## 12494                                                                                                                                                                   While putting client in m/r bent down to assist client w/legs and client kicked EE in the mouth.
## 12495                                                                                                             While putting in firelines with tractor crawler caged in area a tree limb that was in vine swung back into side opening of case on tractor and hit mou
## 12496                                                                                                                            While putting out stock, a basket fell from shelf, went to pick it up and another fell, hitting EE nose and breaking glasses. Cut nose.
## 12497                                                                                                                                                            While putting pt in therapeutic hold pt elbowed employee in right side of face. Rt eye, nose, mouth. ()
## 12498                                                                                                                                                                              While putting resident in a theraputic hold, he head butted me in my left eye socket.
## 12499                                                                                                                                                                                               While putting resident in bedm resident hit staff in nose with fist.
## 12500                                                                                                                     While putting shredded material in waste basket wheels slipped out from under when he leaned back. Fell to floor, hit head, lost consciousness
## 12501                                                                                                                                                                 While putting up a fence, a 20 lb, 8 feet steel pole slipped out of the sleeve hitting EE on head.
## 12502                                                                                                                                              While putting up paper onto top shelf, the top shelf collapsed. Shelf came down and hit employee's right forehead. ()
## 12503                                                                                                        While reaching for the bottle of sanitizer (bleach water), the spray got in my right eye. Sanitizing chair in the laundry room (after getting off duty). ()
## 12504                                                                                                                                                                                                        While reading records edge of paper brushed acrossleft eye.
## 12505                                                                                                                                                                                                                         While redirecting pt, EE hit by patient ()
## 12506                                                                                                                                                                                              While releasing gas in syringe, chemical drops splashed into EE's eye
## 12507                                                                                                                                                                       While removing a broken window pane a piece of glass shattered and landed in the left eye ()
## 12508                                                                                                                   While removing a plastic cup from a locker, it slipped from my hand, when it hit the floor the pink creamy contents splashed up into the eyes ()
## 12509                                                                                                                                             While removing a rotor from the front hub of a chevy impala, a retainer clip popped off and struck him in the left eye
## 12510                                                                                                                       While removing a tree from the right of way, I came in contact with a large amount of poison ivy. List injuries as: hands, arms, and face ()
## 12511                                                                     While removing a tree from the roadway employee came into contact with poison ivy. He now has a rash on both arms and on his face near his eyes. List injuries as: rash on both arms & face ()
## 12512                                                                                                               While removing an inmate from the rec cubicle an inmate from another rec cubicle threw an unknown substance of what appeared to smell like feces. ()
## 12513                                                                                                                                                                                While removing an inmate from the shower, the inmate spit in the officer's face. ()
## 12514                                                                                                                                                                                                             While removing ceiling tile EE got a piece in left eye
## 12515                                                                                                                                       While removing fiber glass insulations from the recreation hall some of the fibers entered and irritated clay’s left eye. ()
## 12516                                                                                                                                         While removing jumper cables from the battery of a van, crystallized acid from the battery flew in employees right eye. ()
## 12517                                                                                                                       While removing litter along chancellors walk EE passed out and fell on concrete sidewalk. EE forehead and nose was injured causing bleeding.
## 12518                                                                                                                                                                                           While removing mirror from wall, glass broke and cut EE under his eye ()
## 12519                                                                                                                                                                  While removing screws from project-screw sheared off causing metal fragments to fly into left eye
## 12520                                                                                                                                                                           While repairing outside light, debris blew in eye from other contracters working nearby.
## 12521                                                                                                                                                                                                                   While repairing steam leak debris got in rt eye.
## 12522                                                                                                                                             While replacing broken heat line underneath building, employees head hit a rusty pipe causing a gashin upper forehead.
## 12523                                                                                                                                            While replacing burned out lights, EE closed the cover and the latch did not catch and fell down and cut EE on rt cheek
## 12524                                                                                                                          While replacing paper products the employee was exited out of one bathroom stall and walked into the next stall door hitting her head. ()
## 12525                                                                                                                                     While repositioning client, EE accidentally pulled out client's tube splashing left side of face and left eye with body fluid.
## 12526                                                                                                                                                                                             While resident was putting on his shirt he accidently hit staff in eye
## 12527                                                                                                                                                                                     While responding to a code 400 EE received an eyelash in lt eye from an inmate
## 12528                                                                                                                                                 While responding to a fire alarm, employee entered building with alarm sounding off, causing right ear to stop-up.
## 12529                                                                                                             While restraining a client, staff was hit in the face with the client's knee. Also other staff who client's knee struck thier head causing other staff
## 12530                                                                                                                                          While restraining a out of control, bleeding studenthe student spit blood in the EE's face and tried to bit EE's rt hand.
## 12531                                                                                                                                                                       While restraining an inmate, the inmate headbutted me in the face after being handcuffed. ()
## 12532                                                                                                                                                                            While restraining an irate inmate, the inmate punched sgt in the face under left eye ()
## 12533                                                                                                                                 While restraining an out of control student the student knocked glasses off face and stepped on them. No bodily injury was caused.
## 12534                                                                                                                                                                                                                 While restraining client-client grabbed EE's hair.
## 12535                                                                                                                                                                   While restraining inmate, inmate struck officer boyd with closed fist injuring head and neck. ()
## 12536                                                                                                                                                   While restraining juvenile employee fell to ground with juvenile and juvenile hit employees head into the ground
## 12537                                                                                                                                                                                   While restraining juvenile iw fell and hit his head on the metal window frame ()
## 12538                                                                                                                                                                                                    While restraining offender mouth hit back of offender's head ()
## 12539                                                                                                                                                                                            While restraining pt, pt spat at another pt, spit went in to EE's mouth
## 12540                                                                                                                                                                     While retreiving item from her locker, she turned and hit her head on protruding tool bin door
## 12541                                                                                                                                                       While retrieving mail, inmate threw an unknown liquid that splashed in the ofc face, eyesmouth, and uniform.
## 12542                                                                                                                                                                         While retrieving tray from inmate, the inmate threw an unknown substance on the officer ()
## 12543                                                                                                                                                  While retrieving trays and inmate threw a substance that smelled of urine on the officer on left side of face. ()
## 12544                                                                                                                                                                                         While retrieving trays inmate sprayed officer with a chemical substance ()
## 12545                                                                                                                             While returning from gym, client attempted to run causing staff to put client in pic hold. Client head-butted staff & pulled her hair.
## 12546                                                                                                    While returning with delivery supplies in a rtv, unit popped out of gear and the rtv slid on mud causing it to run off bridge and land on side of the creek. ()
## 12547                                                             While riding on the priming seat of the tobacco harvester a rack fell out of the holder from the racking platform above struck the ground and hit berta viera in the upper front area of the mouth. ()
## 12548                                                                                                                                                                    While running conduit for power to 2nd floor office area, wind blew cement debris int right eye
## 12549                                                                                                                                   While running showers, inmate came out of room and hit employee in face with fists and handcuffs and bit employee on the back ()
## 12550                                                                                                                                      While running training objective that involved touch talker and head pointer was struck in left eye with tip of head pointer.
## 12551                                                                                                                                                                While sawing a piece of plywood, a piece of debris lodged in employee's left eye causing injury. ()
## 12552                                                                                                                                                                                                                    While sawing dust particles went into left eye.
## 12553                                                                                                                                                               While scraping walls in mechanical room iw was underneath pipes, raised up & hit head over left eye.
## 12554                                                                                                                                                                                                                      While scuba diving EE's left ear was infected
## 12555                                                                                                                                                                         While securing an inmate, he spit on her and it landed between her lips and on her neck ()
## 12556                                                                                                                                                                                  While securing an inmate, the threw an unknown substance in the officer's face ()
## 12557                                                                                                                                                                                                              While separating blood secrum splashed in left eye ()
## 12558                                                                                                                                                                             While separating cows, one knocked him down causinghim to hurt his wrist, hip and head
## 12559                                                                                                                                                                                                   While separating feed buckets, two buckets fell and hit his chin
## 12560                                                                                                                                                                                                                 While servicing equipment debris fell into rt eye.
## 12561                                                                                                                                                                              While serving breakfast inmate threw hot coffee in EE's face. Redness to facial area.
## 12562                                                                                                                While serving breakfast, student pushed EE and hitee with right forearm in EE's mouth causing upper front tooth to become loose and discolored gum.
## 12563                                                                                                                                                           While serving lunch in the pods, inmate threw an unknown liquid into his eyes, chest, face & left arm ()
## 12564                                While serving on cell extraction team, I entered cell, slipped on water. Inmate knocked sheild from my hand, knocked off my helmet and I fell to the floor. Inmate then struck me about face and head and got me in a head lock. ()
## 12565         While serving snacks, a patient got into argument with staff, requesting extra snacks with his special order from the dietitian. Staff was redirecting the patient when another patient came from behind the pt to punch me on my right side of my face ()
## 12566                                                                                                                                                               While setting up a computer the top of the computer desk collapsed striking me on the head and neck.
## 12567                                                                                                                                                                                                               While setting up for field day EE became over heated
## 12568                                                                                                                                          While sharping work knife the knife slipped and ring went across the ring finer finger, knuckle and pinki of left hand ()
## 12569                                                                                                                                                                       While she was digging up japenese holly leaves; she got stuck in the left eye with the leaf.
## 12570                                                                                                                      While she was in segregation facility reading an inmate his rights, the inmate spit at her and threw toilet water hitting her eye and clothes
## 12571                                                                               While showing fire alarm vendor smoke detectors in tunnels under sonora desert and because of the way we had to walk pressure built up behind eye rupturing blood vessels in eye. ()
## 12572                                                                                                                                   While sitting at desk writing 141's accidentally hit head on emergency equipment box that was hanging on the wall above the desk
## 12573                                                                                                                                                                               While sitting in van-a hose broke an sprayed EE with chemicals on face, eye and arm.
## 12574                                                                                                                                                                       While sitting in veh EE was stuck by a tractor trailer injuring head, forearm, neck and back
## 12575                                                                                                                                 While sitting to get file out of cabinet, chair went out from under her and she fell back hitting head on the floor-pain and dizzy
## 12576                                                                                                                                                                                                         While sitting with client the client started to attack EE.
## 12577                                                                                                                              While speaking with inmate about going on sib precautions, he began to get aggravated, and upset at which time he spit in my face. ()
## 12578                                                                                                                                                                                     While spraying an inmate, he grabbed can of pepper spray when can exploded. ()
## 12579                                                                                                                        While spraying weeds around old modular housing unit, officer shuler was looking down and walked into an exterior air conditioning unit. ()
## 12580                                                                                                                         While stacking boxes of gatoraide in corner EE went from bending position to standing. Cabinet door was open and EE hit his head on corner
## 12581                                                                                                                                                 While standing at c/o desk on acute unit mental health, patient hit employee from behind hitting upper of head. ()
## 12582                                                                                                                                                                 While standing by shop door waiting on job assignment-EE was stung by a yellow jacket on the head.
## 12583                                                                                                                                               While standing in dormitory-a talking with inmatesshe was hit under her rt eye by a bar of soap. Contusion rt cheek.
## 12584                                                                                                                   While starting an iv, the iv line made contact with patient's blood. EE used teeth to pull cap off resulting in getting patient's blood in mouth
## 12585                                                                                                                                            While staying at holiday inn express in raleigh, employee was bitten by bedbugs. She travels overnight with her job. ()
## 12586                                                                                                                                                                                                                    While stopped something flew into right eye. ()
## 12587                                                                                                                                                                                                  While straightening a load of scrap metal some went into left eye
## 12588                                                                                                                           While strapping bungee cord around 5 gal bucket in bed of truck-bungee cord came loose and struck front bottom lip and front right tooth
## 12589                                                                                                                        While striking the bedframe of a bunk bed with a hammer during installation, the hammer slipped out of his hand and struck him in the head.
## 12590                                                                                                                                                                                                   While stripping floor EE slipped on stripper spraining his hand.
## 12591                                                                                                                          While stripping landing at rams common, EE bendingover & when he stood up hit his head on sharp part of scrapper. Laceration top of head.
## 12592                                                                                                                                                              While supervising an inmate being placed in segregation inmate hit me in face with his fist twice. ()
## 12593                                                                                                                While supervising inmate in the infirmary, she lunged up from a chair and hit officer on the side of the face and pulle dher hair. Lens was damaged
## 12594                                                                                                                                                           While supervising inmates at kitchen- iw was asaulted. Injured head, right shoulder, right leg & lt hip.
## 12595                                                                                                                                            While supervising inmates, one spit in a close range and it got in Ms. Almond's eye, hair & face; it was green in color
## 12596                                                                                                                                                                                While supervising nine inmates picking up litter, flying objects struck EE's lt eye
## 12597                                                                                                                                                                 While supervising the gym, a volleyball was thrown striking the left side of the officer's face ()
## 12598                                                                                                                                                                                                   While supervisoring students EE was struck in rt eye by patient.
## 12599                                                                                                                                                                                                                      While suturing splash of blood went near eye.
## 12600                                                                                                                           While sweeping the class room with a broom, & thentried to put broom in closet. Struck the top of the left eye with the top of the broom
## 12601                                                                                                                                                                                          While sweeping the dining room floor, something got in to EE's right eye.
## 12602                                                                                                                                                                                     While switching out oxygen tanks, cap of tank came off and hit EE in the mouth
## 12603                                                                                                                                                                                                       While taking a drink of soda from can bee stung EE on tongue
## 12604                                                        While taking a feather duster to shake out, employee opened door to exit building. Wind was blowing and dirt from feather duster flew into her eyes. Eye was flushed by there was still dirt in the eye. ()
## 12605                                                                                                                                   While taking inmate out of holding cell, inmate became irate and assaultive and threw an object stricking officer in the head ()
## 12606                                                                                                                                                           While taking linen out to linen dumpster, the wind blew the dumpster door and it hit her in the head. ()
## 12607                                                                                                                                                     While taking long baton training EE alleges being hit on the back of her head with a long baton ***atty rep***
## 12608                                                                                                                                                         While taking order off cart, employee started to feel left side of face next to nose itching and swelling.
## 12609                                                                                                                                                                    While taking patient to restraints, she kicked staff in the mouth causing staff to bite tongue.
## 12610                                                                                                                                                        While taking resident's blood pressure, he became agitated and he backfisted me in my right eye and face ()
## 12611                                                                                                                                                                                        While taking waist chains off of an inmate, the chain hit her in the eye ()
## 12612                                                                                                                    While talking to a combative subject, subject triedto flee. While trying to restrain the subject, EE fell, hit his head, & hurt his left wrist.
## 12613                                                                                                                                                            While teaching class vibrations from wall screen caused clock to fall and hit EE across bridge of nose.
## 12614                                                                                                                                                                         While teaching, employee waked to back of room, tripped over threshold and fell face down.
## 12615                                                                                                                                                                      While testing engine valve spring, spring cocked & came out of test fixture and hit EE in eye
## 12616                                                                                                                                                                                  While testing equipment in his own left ear, machine made a loud sound in his ear
## 12617       While the employee was leaving the police station to go to the cafeteria he tripped over the plastic yellow barrier fence lying on the ground. Employee did not seek immediate medical attention but bruising was noted on his left cheek and both knees. ()
## 12618                                                                                                                                                        While throwing office paper into a recycling tote clear plastic sheet cover flew up and scratched left eye.
## 12619                                                                                                                                                                        While tightening a large bolt the wrench slipped off the bolt and scratched EE on forehead.
## 12620                                                                                                                                                                                           While tightening bolts on body brackets a piece ofmetal got in EE's eye.
## 12621                                                                                                                                                                                                                  While training fell back on head chipped tooth ()
## 12622                                                                                                                                                                                While training on going in on an inmate, she was pushed into the wall head first ()
## 12623                                        While transferring an individual to his chair with arjo lift and holding individual's arm with spdm splint, he jerked his arm back and hit employee in the face (upper lip and forehead over right eye and grazed nose). ()
## 12624                                                                                                                            While transferring inmate from his cell, inmate used his left hand to swing around and strike ofc on right side of her face and nose ()
## 12625                                                                                                                                      While transferring patient from bed to his wheelchair with arjo lift, patient's arm hit employee in the left side of head. ()
## 12626                                                                                                                                                   While transporting inmate to outside medical facility the inmate fell and grabbed at her scratching her face. ()
## 12627                                                                                                                                                                                   While transporting inmate to recreation cage the inmate struck me in the face ()
## 12628                                                                                                                                              While trimming a hedge with gas powered equipment, two nest of yellow jackets came out of the ground and stung EE. ()
## 12629                                                                                                                                                                                                      While trimming shubbery stung by a bee on left earand rt arm.
## 12630                                                                                                                                              While trying to arrest a suspect for dwi EE got into an altercation w/suspect and rcvd laceration to rt side of face.
## 12631                                                                                  While trying to attempt to place individual in a physical restraint, individual' head struck staff in the mouth causing one tooth to come out and another one to become loose. ()
## 12632                                                                                                                   While trying to break a fight up between two inmates, the officer was struck in the mouth and he has a lacerated lip which required stitches. ()
## 12633                                                                                                                                                                                   While trying to break a limb off of tree, it sprung back and hit rt side of face
## 12634                                                                                                                                                                                                  While trying to change an individuals clothing, the individual ()
## 12635                                                                                                                                                                       While trying to close the dumpster door, accidently the door handle hit her in the forehead.
## 12636                                                                                                                                                                      While trying to flush the commode in the bathroom hit head against the paper towel holder. ()
## 12637                                                                                                                                                  While trying to get some file folders down, lt. Smith, struck his head on an iron pipe that is abovethe cabinets.
## 12638                                                                                                                                                             While trying to place I/m in restraints, I/m swung a broken plunger handle stricking employee in head.
## 12639                                                                                                                                        While trying to place patient in seclusion, patient picked up a game & threw it hitting EE on the left side of his head. ()
## 12640                                                                                                                                                                                                 While trying to redirect patient, the patient punch EE in the face
## 12641                                                                                                             While trying to remove broken pickup cover tailgate Dr., The glass shattered sending a piece into rt eye. --no glass was embedded-scratch to rt cornea
## 12642                                                                                                                                                                         While trying to restrain a violent inmate and EE was hit several times in the facial area.
## 12643                                                                                                                                                                 While trying to restrain a violent inmate. EE was hit on left side of face above temple by inmate.
## 12644                                                                                                                                                         While trying to sit down, chair with rollers slid from under employee and her head hit desk behind her. ()
## 12645                                                                                                               While trying to unhang a floating duck off a piling as flood water releded. Duck broke loose & fell into the water, knocking pry tool out of his. ..
## 12646                                                                                                                                                                                    While turning off inmate's water, inmate sprayed liquid in my face and eyes. ()
## 12647                     While turning onto hwy 15-501, employee vehicle was struck by a car heading south on hwy 15-501, striking his front left driver's side quarter panel of car. During impact, while wearing seatbelt his head struck the driver's side window ()
## 12648                                                                                                                                                                          While tying her shoe leaning over consumer moved her hand and poked hct in eye accidently
## 12649                                                                                                                                                  While typing employee lost he balance and fell backwards on to the flooe and hitting her head on the file cabinet
## 12650                                                                                                                                                                                                                 While typing on the computer something fell in eye
## 12651                                                                                                                                                                                                     While unstacking metal shelves rusty flakes went into left eye
## 12652                                                                                                                                                                                        While using a chainsaw, a tree limb whipped back and caught me in the mouth
## 12653                                                                                                                      While using a transfer pipet to transfer sephacrylbeads to a column & sephacryl splashed in face/ left eye/hands. Skin ok left eye irritated.
## 12654                                                                                                                                                 While using a uv light to observe stained gels, eewas exposed to the uv light and felt burning sens ation in eyes.
## 12655                                                                                                                                                                                While using a weed eater to trim grass/weeds, some trash flew into his left eye. ()
## 12656                                                                                                                                                       While using mechanical lift to transport a client, the lift apparently tilted and the EE injured her forhead
## 12657                                                                                                                                                                               While using riding mower to mow grass a piece of debris flew in eye. Scratch lt eye.
## 12658                                                                                                                                                                                                           While using table saw cutting plastic, trash got in eye.
## 12659                                                                                                                                                          While using telephone/fax machine, EE heard loud noise from fax machine causing a ringing sound in lt ear
## 12660                           While using the bathroom, his radio fell out of case and rolled under the sink. He bent down to pick it up and banged his head on the sink. His teeth popped together causing one of his front teeth to chip. Chip is very noticable. ()
## 12661                                                                                                                                                                While vacuuming, employee stood up hitting the top of her head on a key lock box, causing headache.
## 12662                                                                                                         While waiting for a rain down pour to stop, employee sat down on a couch to speak to juveniles and hit the back of her head on a shelf above the couch. ()
## 12663                                                                                                     While walking - didn't have a sense of direction, hit the door frame on the left side outside of dss's (s. Scott) office, banging the left side of my head. ()
## 12664                                                                                                         While walking down steps, employee missed step and fell down 5 or 6 steps onto the concrete hitting the left side of her face and scrapping both knees. ()
## 12665                                                                                                                                                                                  While walking employee fell and landed on his knees and also hitting his forehead
## 12666                                                                                                                                                                           While walking from the administration building, a wasp hit him and stung his left eye ()
## 12667                                                                                                                                                    While walking into bldg, tripped over rug that was over threshold and fell onto floor hitting her rt cheekbone.
## 12668           While walking into the admin. Building, to go to her mail box, Ms. Kruse was distracted by the a boy that got her attention when she looked up someone had pressed the handicap button from inside the building and the door struck her on the forehead.
## 12669                                                                                                                                                                          While walking property with engineer, employee was bit behind his right ear by a tick. ()
## 12670                                                                                                                                                                                       While walking the EE looked up and a foreign object fell in her left eye. ()
## 12671                                                                                                                       While walking through a site that had been renovated, he felt some irritation in his eye and when herubbed his eye he later felt irritation.
## 12672                                                                                                                                                                                                           While walking to unit on side walk trash blew in eyes ()
## 12673                                                                                                                                                                                                While walking to work EE slipped on ice on sidewalk falling on chin
## 12674                                                                                                                                                                                       While walking under gambrel assemblies, employee was struck with a meat hook
## 12675                                                                                                                 While walking up the exterior steps near sycamore hall her toe got caught on the step and she fell forward on her face hurting her mouth and face.
## 12676                                                                                                                                                                                                      While walking with clients, client began to headbutt employee
## 12677                                                                                                                                                                                        While watching firearm demonstration, EE was hit in eye by a metal fragment
## 12678                                                                                                                                                                                                  While weed eating somthing flew into lt eye. Foreign body lt eye.
## 12679                                                                                                                                                                                                     While weed eating, employee received a bee sting on his head..
## 12680                                                                                                                                                                                             While weighting goat, the goat jumped up and hit EE above the left eye
## 12681                                                                                                                                                                                                                    While welding piece of flash went into left eye
## 12682                                                                                                                                                                                                                   While working a peice of wire fell into his eye.
## 12683                                                                                                                                                                While working as receptionist EE's rt eye began to tear and swell-allergic reaction to work station
## 12684                                                                                                                                                  While working barber hall during a routine school call standing lt side of table in hallway- hit lt side of face.
## 12685                                                                                                                                                                        While working gatehouse post bent over and hit head on steel gun locker when I stood up. ()
## 12686                                                                                                While working in booth (control) employee started to feel lower lip and area under tingle and later in the evening/night the area began to swell - possible bite ()
## 12687                                                                                                                                                                               While working in ceiling are left eye became irritaed due to foreign body entered it
## 12688                                                                                                                                                                                             While working in cosmotology lab EE became weak nauseated and confused
## 12689                                                                                                               While working in dorm #3 during a dorm shakedown, heard an officer calling for help in bathroom. Went ot help, got elbowed in the nose by the inmate
## 12690                        While working in seg. Another officer was putting an inmate in rec. Cage when I saw the inmate spit in the officer's face. I then went to help secure the inmate in the shower. While locking the shower door the inmate spit in my face ()
## 12691                                                                                                    While working in south core on green unit, something went into my right eye. Tried to wash it out in bathroom. When I couldn't get it out I went to medical. ()
## 12692                                                                                                                              While working near her desk, Ms. Macduff tripped &fell, hitting her head on the corner of her desk. Her head was cut near the temple.
## 12693                                                                                                                                                 While working on a tower, inside, a piece of grit fell falling behind safety glasses and getting into right eye ()
## 12694                                                                                                                         While working on bottom hot cart metal on bottom hot cart folded back and corner hit me in rt eye. Rusty metal - referred to opthalmology.
## 12695                                                                                                                      While working on card reader controller overhead debris(dust, concrete particles) were knocked loose and fell past glasses into right eye. ()
## 12696                                                                                                                                                                   While working on fireline bent over to pick up something and twig came under glasses and hit eye
## 12697                                                                                                                                                                                                  While working on fumigation rig, material got into employee's eye
## 12698                                                                                                                                                                                                         While working on lower yard eye became irritated -left eye
## 12699                                                                                                                                                                While working on post #5 dropped some trash bent down to pick it up and struck head on radio holder
## 12700                                                                                                                                                                                     While working on the red unit, the officer got hit in the eye by an inmate. ()
## 12701                                                                                                                                                                    While working on tussock bay fire EE was bitten by yellow-fly & eye began to swell 1-hour later
## 12702                                                                                                                                                                               While working on unit acquired conjunctivitis (pink eye) from client in left eye. ()
## 12703                                                                                                                                               While working on unit, inmate walked up and threw liquid from cup wetting my uniform and getting it into my eyes. ()
## 12704                                                                                                                                                                                                                           While working piece of trash blew in eye
## 12705                                                                                                                                                                                                              While working the baseball game EE suffered a stroke.
## 12706                                                                                                                                        While working under an automoble, loose pieces of metal fell and a fragment got into his eye. He was wearing safety glasses
## 12707                                                                                                                                        While working wildfire that crossed va/nc broder employee came in contact with poison ivy. Rash spread to face and eyes. ()
## 12708                                                                                                                                                                                                    While working with bacteria mixture a portion went into rt eye.
## 12709                                                                                                                                                                      While working with dead tree limbs-limbs fell and hit EE on the head, face, neck and shoulder
## 12710                                                                                                                                                While working, michelle turned suddenly and walkedinto the metal strip on the corner of a cubicle hitting her nose.
## 12711                                                                                                                While writing reports; juveniles became rowdy and un-cooperative with staff. Upon turning to the lt. Staff was hit in the mouth with a thrown shoe.
## 12712                                                                                                                                           Whistle for fire drill was blown within 3 feet of employee's ear-he believes this is what has causedhis hearing problems
## 12713                                                                                                                                           Whitle emptying dump truck of dirt on project, center of gravity became to high on side of hill and truck overturned. ()
## 12714                                                                                                                                                                    Wind blew basket toward her face hitting her on the right side of her head above her right eye.
## 12715                                                                                                                                                                                                                       Wind blew car door against head during storm
## 12716                                                                                                                                                                                                                                       Wind blew dedris in left eye
## 12717                                                                                                                                                                                                                                 Wind blew something into right eye
## 12718                                                                                                                                                Wind blew. Something in his eye while patrolling perimeter. Couldn't find anything in his eye but eye was scratched
## 12719                                                                                                                                                                                                                   Wind was blowing small piece went into left eye.
## 12720                                                                                                                                                                              Winding hose reel on truck. Rust particle got in right eye, scratching surface of eye
## 12721                                                                                                                                                            Window pane slipped and hit employee's head while he was trying to install window frame into balance ()
## 12722                                                                                                                                                                                                                             Wipe chemical in eye washing furniture
## 12723                                                                                                                                                                  Wiping water off of the back of a rabies positive control slide when water splashed in her mouth.
## 12724    With students, I was moving some desktops to its, when a component fell to the floor. On picking it up, the student who was carrying the desktop swung around, and the electrical cord swung and the plug hit me in my left eye. I felt pain and eye watered ()
## 12725                                                                                                                                                                                                                                           Wood hit EE on the nose.
## 12726                                                                                                                                              Worker walked through brush in the woods. She bent back several branches to pass and one stick hit her in the eye. ()
## 12727                                                                          Worker was loosening bolts to take a piece of flat steel when the bolt was pulled by the force of flat steal. The flat steal struck worker on the nose cutting the bridge of his nose. ()
## 12728                                                                                            Working @ my desk, my eyes turned red and started swelling, tearing & itching. My face is red & itching. The office had recently been painted using iol based paint. ()
## 12729                                                                                                                                                                                                              Working around loud noise in the mill, ringing in ear
## 12730                                                                                                                                                                                   Working as construction escort. Felt chin itching, felt welping underneath chin.
## 12731                                                                                                                                                      Working at construction site sitting in the roving patrol vehicle when a gust of wind blew dirt into his face
## 12732                                                                                                                                                Working at desk and bookshelf on wall behind desk fell down and hit top of head, right side of face and right hand.
## 12733                                                                                                                                                                                             Working in automotive class area, struck head on bottom of vehicle. ()
## 12734                                                                                                                                                                                                  Working in construction area and got something in eye.. Left eye.
## 12735                                                                                                                                                                                  Working in control booth, ac unit came on and felt something go into left eye. ()
## 12736                                                                                                                                                                                      Working in control room in unit iv, when I felt something bit my forehead. ()
## 12737                                                                                                                                                                                                 Working in cosmetology lab and became weak, nauseated and confused
## 12738                                                                                                                   Working in front of tractor & behind bucket & was bending down & welding on backhoe bucket when a small spark bounced off bucket & into left ear
## 12739                                                                                                                                                                           Working in her cubicle and stood up and hit her head on the overhead cube filing cabinet
## 12740                                                                                                                                   Working in hog house. Hog ran into him, knocking him into a pen. He hit the back of his head on a pen when he fell to the floor.
## 12741                                                                                                                                                                             Working in manhole had safety glasses coming up out of manhole & something fell in eye
## 12742                                                                                                                                                              Working in river, plastic block fell from bridge, bounced off pvc and struck employee on the chin. ()
## 12743                                                                                                                                                                                Working in the dining hall, inmate spit on employee and punched her in the face. ()
## 12744                                                                                                                                                        Working in the office on files. Reached down to pick up a paper on the floor and hit eye on edge of drawer.
## 12745                                                                                                                                                                                                           Working in wings in dorm e, dust or sand blown into eyes
## 12746                                                                                                                                                                                                Working inside an air handler that had ultra violet lights in it ()
## 12747                                                                                                                                                                                          Working long hours on fire line, EE developed soreness in lips and mouth.
## 12748                                                                                                                                                Working medical yard. Stepped off porch, while looking at keys didn't see window open & hit window with forehead ()
## 12749                                                                                                                                                                                           Working medium yard in front of aggrey bldg. Walked into open window. ()
## 12750                                                                                                                                                                   Working on a door-hammer ontop of ladder-moved ladder and hammer fell hitting on top of head. ()
## 12751                                                                                                                        Working on a room window a/c unit, observing operation and debris from the fan blew into eyes. Nextmorning, bad infectious look in lft eye.
## 12752                                                                                                                                                                                                             Working on ac in tower and trap door fell down on head
## 12753                                                                                                                                                                                                                   Working on ac unit and trash blew into left eye.
## 12754                                                                                                                                                                           Working on bleachers at north surry high school, wind blew something into his right eye.
## 12755                                                                                                                                                                             Working on clean up of grounds, mowing, trimming & general clean up. Injured right eye
## 12756                                                                                                                                Working on computer, which was on floor. Raised uphitting bridge of his nose on edge of table. *******prior nasal surgery**********
## 12757                                                                                                                                                                         Working on dishwasher in kitchen, floating particle from the gas burner got in my eyes. ()
## 12758                                                                                                                                          Working on ice machine at bcc. While under machinehe raised his head striking head on disconnect boxthat attached to wall
## 12759                                                                                                                                        Working on keyboards, computers, mice in response to tech support calls. Brushed face with hands and developed a infection.
## 12760                                                                                                                                                                                  Working on legs of dust collector machine. Stood up and hit head on machinery. ()
## 12761                                                                                                                                                                                                        Working on light fixture, wire fell down & hit EE in eye ()
## 12762                                                                                                                                                                                Working on plumbing, a bit of porcelain broke off pipe/commode and struck right eye
## 12763                                                                                                                                       Working on remote on/off switch under cabinet inside pert bus, he struck rt side of head on back corner of the radio scanner
## 12764                                                                                                                                   Working on shredding files and breaking down dusty boxes outside, wind had picked up and debris dust started to catch in eye. ()
## 12765                                                                                                                                                                                                   Working on sprinkler trailer and hit his head and cut it open ()
## 12766                                                                                                                                                                                                          Working on the dock area when something blew into her eye
## 12767                                                                                                                                                                 Working on the side of the road with road crew. Truck drove by and blew sand from street into eyes
## 12768                                                                                                                                                                                                    Working on the yard the wind blew something into her right eye.
## 12769                                                                                                                                                                                                             Working on water leak, hit head on low pipe/laceration
## 12770                                                                                                                  Working on water valve to boiler, taking valve aparto check gate inside. Tap valve handle with hammersteam blew out hot water got in face & chest
## 12771                                                                                                                                                                        Working outdoors performing routine duties when eefelt as though something entered her eye.
## 12772                                                                                                                                   Working post in kitchen an was bit by an flying insect under right eye, eye began swelling. Employee allegic to insect bites. ()
## 12773                                                                                                                                               Working pulling case files, walking to pull a casefell without warning forward and hit lt corner eyeon file cabinet.
## 12774                                                                                                                                                                                           Working security at cvmc hospital when inmate threw urine in my face. ()
## 12775                                                                                                                                      Working shift, returning to office from completing home contacts and was rear-ended (in state vehicle) by another vehicle. ()
## 12776                                                                                                                                                                                                 Working the east side dining hall - struck over left eye by inmate
## 12777                                                                                                                                                                                                                    Working the yard & wind blew something into eye
## 12778                                                                                                                                                                                                  Working w/parts on floor and stood up and hit headon valve handle
## 12779                                                                                                                                                                                       Working with client who has eye infection and has redness her in left eye ()
## 12780                                                                                                                                                                                                                             Working with clients that had pink eye
## 12781                                                                                                                                                                            Working with clients with conjunctivities. Developed the same condition in EE right eye
## 12782                                                                                                               Working with co-worker, giving elephant a bath. Eehosing & looking up at elephant, tripped over a bucket, fell & hit head on brass nozzle. Cut head.
## 12783                                                                                                                                                                                                     Working with equipment that exposed employee to loud noises ()
## 12784                                                                                                                                                           Working with resident that was banging head and swinging arms. EE was hit in face and nose. Pain in nose
## 12785                                                                                                                                                       Workstation top rt cabinet door that slides back over top of file accidentally fell back on top of her head.
## 12786                                                                                                                                                                                                             Wrench was tossed. Hit left eye lid. Installing piping
## 12787                                                                                                                             Writing information on a patient's flow sheet. Went to flip flowsheet over to write on back and the corner of the paper caught my eye.
## 12788                                                                                                                                        Ww was prying up some hardwood flooring when it broke loose and flew in his face, cutting his cheek just below his left eye
##       n
## 1     8
## 2     4
## 3     4
## 4     3
## 5     3
## 6     3
## 7     2
## 8     2
## 9     2
## 10    2
## 11    2
## 12    2
## 13    2
## 14    2
## 15    2
## 16    2
## 17    2
## 18    2
## 19    2
## 20    2
## 21    2
## 22    2
## 23    2
## 24    2
## 25    2
## 26    2
## 27    2
## 28    2
## 29    2
## 30    2
## 31    2
## 32    1
## 33    1
## 34    1
## 35    1
## 36    1
## 37    1
## 38    1
## 39    1
## 40    1
## 41    1
## 42    1
## 43    1
## 44    1
## 45    1
## 46    1
## 47    1
## 48    1
## 49    1
## 50    1
## 51    1
## 52    1
## 53    1
## 54    1
## 55    1
## 56    1
## 57    1
## 58    1
## 59    1
## 60    1
## 61    1
## 62    1
## 63    1
## 64    1
## 65    1
## 66    1
## 67    1
## 68    1
## 69    1
## 70    1
## 71    1
## 72    1
## 73    1
## 74    1
## 75    1
## 76    1
## 77    1
## 78    1
## 79    1
## 80    1
## 81    1
## 82    1
## 83    1
## 84    1
## 85    1
## 86    1
## 87    1
## 88    1
## 89    1
## 90    1
## 91    1
## 92    1
## 93    1
## 94    1
## 95    1
## 96    1
## 97    1
## 98    1
## 99    1
## 100   1
## 101   1
## 102   1
## 103   1
## 104   1
## 105   1
## 106   1
## 107   1
## 108   1
## 109   1
## 110   1
## 111   1
## 112   1
## 113   1
## 114   1
## 115   1
## 116   1
## 117   1
## 118   1
## 119   1
## 120   1
## 121   1
## 122   1
## 123   1
## 124   1
## 125   1
## 126   1
## 127   1
## 128   1
## 129   1
## 130   1
## 131   1
## 132   1
## 133   1
## 134   1
## 135   1
## 136   1
## 137   1
## 138   1
## 139   1
## 140   1
## 141   1
## 142   1
## 143   1
## 144   1
## 145   1
## 146   1
## 147   1
## 148   1
## 149   1
## 150   1
## 151   1
## 152   1
## 153   1
## 154   1
## 155   1
## 156   1
## 157   1
## 158   1
## 159   1
## 160   1
## 161   1
## 162   1
## 163   1
## 164   1
## 165   1
## 166   1
## 167   1
## 168   1
## 169   1
## 170   1
## 171   1
## 172   1
## 173   1
## 174   1
## 175   1
## 176   1
## 177   1
## 178   1
## 179   1
## 180   1
## 181   1
## 182   1
## 183   1
## 184   1
## 185   1
## 186   1
## 187   1
## 188   1
## 189   1
## 190   1
## 191   1
## 192   1
## 193   1
## 194   1
## 195   1
## 196   1
## 197   1
## 198   1
## 199   1
## 200   1
## 201   1
## 202   1
## 203   1
## 204   1
## 205   1
## 206   1
## 207   1
## 208   1
## 209   1
## 210   1
## 211   1
## 212   1
## 213   1
## 214   1
## 215   1
## 216   1
## 217   1
## 218   1
## 219   1
## 220   1
## 221   1
## 222   1
## 223   1
## 224   1
## 225   1
## 226   1
## 227   1
## 228   1
## 229   1
## 230   1
## 231   1
## 232   1
## 233   1
## 234   1
## 235   1
## 236   1
## 237   1
## 238   1
## 239   1
## 240   1
## 241   1
## 242   1
## 243   1
## 244   1
## 245   1
## 246   1
## 247   1
## 248   1
## 249   1
## 250   1
## 251   1
## 252   1
## 253   1
## 254   1
## 255   1
## 256   1
## 257   1
## 258   1
## 259   1
## 260   1
## 261   1
## 262   1
## 263   1
## 264   1
## 265   1
## 266   1
## 267   1
## 268   1
## 269   1
## 270   1
## 271   1
## 272   1
## 273   1
## 274   1
## 275   1
## 276   1
## 277   1
## 278   1
## 279   1
## 280   1
## 281   1
## 282   1
## 283   1
## 284   1
## 285   1
## 286   1
## 287   1
## 288   1
## 289   1
## 290   1
## 291   1
## 292   1
## 293   1
## 294   1
## 295   1
## 296   1
## 297   1
## 298   1
## 299   1
## 300   1
## 301   1
## 302   1
## 303   1
## 304   1
## 305   1
## 306   1
## 307   1
## 308   1
## 309   1
## 310   1
## 311   1
## 312   1
## 313   1
## 314   1
## 315   1
## 316   1
## 317   1
## 318   1
## 319   1
## 320   1
## 321   1
## 322   1
## 323   1
## 324   1
## 325   1
## 326   1
## 327   1
## 328   1
## 329   1
## 330   1
## 331   1
## 332   1
## 333   1
## 334   1
## 335   1
## 336   1
## 337   1
## 338   1
## 339   1
## 340   1
## 341   1
## 342   1
## 343   1
## 344   1
## 345   1
## 346   1
## 347   1
## 348   1
## 349   1
## 350   1
## 351   1
## 352   1
## 353   1
## 354   1
## 355   1
## 356   1
## 357   1
## 358   1
## 359   1
## 360   1
## 361   1
## 362   1
## 363   1
## 364   1
## 365   1
## 366   1
## 367   1
## 368   1
## 369   1
## 370   1
## 371   1
## 372   1
## 373   1
## 374   1
## 375   1
## 376   1
## 377   1
## 378   1
## 379   1
## 380   1
## 381   1
## 382   1
## 383   1
## 384   1
## 385   1
## 386   1
## 387   1
## 388   1
## 389   1
## 390   1
## 391   1
## 392   1
## 393   1
## 394   1
## 395   1
## 396   1
## 397   1
## 398   1
## 399   1
## 400   1
## 401   1
## 402   1
## 403   1
## 404   1
## 405   1
## 406   1
## 407   1
## 408   1
## 409   1
## 410   1
## 411   1
## 412   1
## 413   1
## 414   1
## 415   1
## 416   1
## 417   1
## 418   1
## 419   1
## 420   1
## 421   1
## 422   1
## 423   1
## 424   1
## 425   1
## 426   1
## 427   1
## 428   1
## 429   1
## 430   1
## 431   1
## 432   1
## 433   1
## 434   1
## 435   1
## 436   1
## 437   1
## 438   1
## 439   1
## 440   1
## 441   1
## 442   1
## 443   1
## 444   1
## 445   1
## 446   1
## 447   1
## 448   1
## 449   1
## 450   1
## 451   1
## 452   1
## 453   1
## 454   1
## 455   1
## 456   1
## 457   1
## 458   1
## 459   1
## 460   1
## 461   1
## 462   1
## 463   1
## 464   1
## 465   1
## 466   1
## 467   1
## 468   1
## 469   1
## 470   1
## 471   1
## 472   1
## 473   1
## 474   1
## 475   1
## 476   1
## 477   1
## 478   1
## 479   1
## 480   1
## 481   1
## 482   1
## 483   1
## 484   1
## 485   1
## 486   1
## 487   1
## 488   1
## 489   1
## 490   1
## 491   1
## 492   1
## 493   1
## 494   1
## 495   1
## 496   1
## 497   1
## 498   1
## 499   1
## 500   1
## 501   1
## 502   1
## 503   1
## 504   1
## 505   1
## 506   1
## 507   1
## 508   1
## 509   1
## 510   1
## 511   1
## 512   1
## 513   1
## 514   1
## 515   1
## 516   1
## 517   1
## 518   1
## 519   1
## 520   1
## 521   1
## 522   1
## 523   1
## 524   1
## 525   1
## 526   1
## 527   1
## 528   1
## 529   1
## 530   1
## 531   1
## 532   1
## 533   1
## 534   1
## 535   1
## 536   1
## 537   1
## 538   1
## 539   1
## 540   1
## 541   1
## 542   1
## 543   1
## 544   1
## 545   1
## 546   1
## 547   1
## 548   1
## 549   1
## 550   1
## 551   1
## 552   1
## 553   1
## 554   1
## 555   1
## 556   1
## 557   1
## 558   1
## 559   1
## 560   1
## 561   1
## 562   1
## 563   1
## 564   1
## 565   1
## 566   1
## 567   1
## 568   1
## 569   1
## 570   1
## 571   1
## 572   1
## 573   1
## 574   1
## 575   1
## 576   1
## 577   1
## 578   1
## 579   1
## 580   1
## 581   1
## 582   1
## 583   1
## 584   1
## 585   1
## 586   1
## 587   1
## 588   1
## 589   1
## 590   1
## 591   1
## 592   1
## 593   1
## 594   1
## 595   1
## 596   1
## 597   1
## 598   1
## 599   1
## 600   1
## 601   1
## 602   1
## 603   1
## 604   1
## 605   1
## 606   1
## 607   1
## 608   1
## 609   1
## 610   1
## 611   1
## 612   1
## 613   1
## 614   1
## 615   1
## 616   1
## 617   1
## 618   1
## 619   1
## 620   1
## 621   1
## 622   1
## 623   1
## 624   1
## 625   1
## 626   1
## 627   1
## 628   1
## 629   1
## 630   1
## 631   1
## 632   1
## 633   1
## 634   1
## 635   1
## 636   1
## 637   1
## 638   1
## 639   1
## 640   1
## 641   1
## 642   1
## 643   1
## 644   1
## 645   1
## 646   1
## 647   1
## 648   1
## 649   1
## 650   1
## 651   1
## 652   1
## 653   1
## 654   1
## 655   1
## 656   1
## 657   1
## 658   1
## 659   1
## 660   1
## 661   1
## 662   1
## 663   1
## 664   1
## 665   1
## 666   1
## 667   1
## 668   1
## 669   1
## 670   1
## 671   1
## 672   1
## 673   1
## 674   1
## 675   1
## 676   1
## 677   1
## 678   1
## 679   1
## 680   1
## 681   1
## 682   1
## 683   1
## 684   1
## 685   1
## 686   1
## 687   1
## 688   1
## 689   1
## 690   1
## 691   1
## 692   1
## 693   1
## 694   1
## 695   1
## 696   1
## 697   1
## 698   1
## 699   1
## 700   1
## 701   1
## 702   1
## 703   1
## 704   1
## 705   1
## 706   1
## 707   1
## 708   1
## 709   1
## 710   1
## 711   1
## 712   1
## 713   1
## 714   1
## 715   1
## 716   1
## 717   1
## 718   1
## 719   1
## 720   1
## 721   1
## 722   1
## 723   1
## 724   1
## 725   1
## 726   1
## 727   1
## 728   1
## 729   1
## 730   1
## 731   1
## 732   1
## 733   1
## 734   1
## 735   1
## 736   1
## 737   1
## 738   1
## 739   1
## 740   1
## 741   1
## 742   1
## 743   1
## 744   1
## 745   1
## 746   1
## 747   1
## 748   1
## 749   1
## 750   1
## 751   1
## 752   1
## 753   1
## 754   1
## 755   1
## 756   1
## 757   1
## 758   1
## 759   1
## 760   1
## 761   1
## 762   1
## 763   1
## 764   1
## 765   1
## 766   1
## 767   1
## 768   1
## 769   1
## 770   1
## 771   1
## 772   1
## 773   1
## 774   1
## 775   1
## 776   1
## 777   1
## 778   1
## 779   1
## 780   1
## 781   1
## 782   1
## 783   1
## 784   1
## 785   1
## 786   1
## 787   1
## 788   1
## 789   1
## 790   1
## 791   1
## 792   1
## 793   1
## 794   1
## 795   1
## 796   1
## 797   1
## 798   1
## 799   1
## 800   1
## 801   1
## 802   1
## 803   1
## 804   1
## 805   1
## 806   1
## 807   1
## 808   1
## 809   1
## 810   1
## 811   1
## 812   1
## 813   1
## 814   1
## 815   1
## 816   1
## 817   1
## 818   1
## 819   1
## 820   1
## 821   1
## 822   1
## 823   1
## 824   1
## 825   1
## 826   1
## 827   1
## 828   1
## 829   1
## 830   1
## 831   1
## 832   1
## 833   1
## 834   1
## 835   1
## 836   1
## 837   1
## 838   1
## 839   1
## 840   1
## 841   1
## 842   1
## 843   1
## 844   1
## 845   1
## 846   1
## 847   1
## 848   1
## 849   1
## 850   1
## 851   1
## 852   1
## 853   1
## 854   1
## 855   1
## 856   1
## 857   1
## 858   1
## 859   1
## 860   1
## 861   1
## 862   1
## 863   1
## 864   1
## 865   1
## 866   1
## 867   1
## 868   1
## 869   1
## 870   1
## 871   1
## 872   1
## 873   1
## 874   1
## 875   1
## 876   1
## 877   1
## 878   1
## 879   1
## 880   1
## 881   1
## 882   1
## 883   1
## 884   1
## 885   1
## 886   1
## 887   1
## 888   1
## 889   1
## 890   1
## 891   1
## 892   1
## 893   1
## 894   1
## 895   1
## 896   1
## 897   1
## 898   1
## 899   1
## 900   1
## 901   1
## 902   1
## 903   1
## 904   1
## 905   1
## 906   1
## 907   1
## 908   1
## 909   1
## 910   1
## 911   1
## 912   1
## 913   1
## 914   1
## 915   1
## 916   1
## 917   1
## 918   1
## 919   1
## 920   1
## 921   1
## 922   1
## 923   1
## 924   1
## 925   1
## 926   1
## 927   1
## 928   1
## 929   1
## 930   1
## 931   1
## 932   1
## 933   1
## 934   1
## 935   1
## 936   1
## 937   1
## 938   1
## 939   1
## 940   1
## 941   1
## 942   1
## 943   1
## 944   1
## 945   1
## 946   1
## 947   1
## 948   1
## 949   1
## 950   1
## 951   1
## 952   1
## 953   1
## 954   1
## 955   1
## 956   1
## 957   1
## 958   1
## 959   1
## 960   1
## 961   1
## 962   1
## 963   1
## 964   1
## 965   1
## 966   1
## 967   1
## 968   1
## 969   1
## 970   1
## 971   1
## 972   1
## 973   1
## 974   1
## 975   1
## 976   1
## 977   1
## 978   1
## 979   1
## 980   1
## 981   1
## 982   1
## 983   1
## 984   1
## 985   1
## 986   1
## 987   1
## 988   1
## 989   1
## 990   1
## 991   1
## 992   1
## 993   1
## 994   1
## 995   1
## 996   1
## 997   1
## 998   1
## 999   1
## 1000  1
## 1001  1
## 1002  1
## 1003  1
## 1004  1
## 1005  1
## 1006  1
## 1007  1
## 1008  1
## 1009  1
## 1010  1
## 1011  1
## 1012  1
## 1013  1
## 1014  1
## 1015  1
## 1016  1
## 1017  1
## 1018  1
## 1019  1
## 1020  1
## 1021  1
## 1022  1
## 1023  1
## 1024  1
## 1025  1
## 1026  1
## 1027  1
## 1028  1
## 1029  1
## 1030  1
## 1031  1
## 1032  1
## 1033  1
## 1034  1
## 1035  1
## 1036  1
## 1037  1
## 1038  1
## 1039  1
## 1040  1
## 1041  1
## 1042  1
## 1043  1
## 1044  1
## 1045  1
## 1046  1
## 1047  1
## 1048  1
## 1049  1
## 1050  1
## 1051  1
## 1052  1
## 1053  1
## 1054  1
## 1055  1
## 1056  1
## 1057  1
## 1058  1
## 1059  1
## 1060  1
## 1061  1
## 1062  1
## 1063  1
## 1064  1
## 1065  1
## 1066  1
## 1067  1
## 1068  1
## 1069  1
## 1070  1
## 1071  1
## 1072  1
## 1073  1
## 1074  1
## 1075  1
## 1076  1
## 1077  1
## 1078  1
## 1079  1
## 1080  1
## 1081  1
## 1082  1
## 1083  1
## 1084  1
## 1085  1
## 1086  1
## 1087  1
## 1088  1
## 1089  1
## 1090  1
## 1091  1
## 1092  1
## 1093  1
## 1094  1
## 1095  1
## 1096  1
## 1097  1
## 1098  1
## 1099  1
## 1100  1
## 1101  1
## 1102  1
## 1103  1
## 1104  1
## 1105  1
## 1106  1
## 1107  1
## 1108  1
## 1109  1
## 1110  1
## 1111  1
## 1112  1
## 1113  1
## 1114  1
## 1115  1
## 1116  1
## 1117  1
## 1118  1
## 1119  1
## 1120  1
## 1121  1
## 1122  1
## 1123  1
## 1124  1
## 1125  1
## 1126  1
## 1127  1
## 1128  1
## 1129  1
## 1130  1
## 1131  1
## 1132  1
## 1133  1
## 1134  1
## 1135  1
## 1136  1
## 1137  1
## 1138  1
## 1139  1
## 1140  1
## 1141  1
## 1142  1
## 1143  1
## 1144  1
## 1145  1
## 1146  1
## 1147  1
## 1148  1
## 1149  1
## 1150  1
## 1151  1
## 1152  1
## 1153  1
## 1154  1
## 1155  1
## 1156  1
## 1157  1
## 1158  1
## 1159  1
## 1160  1
## 1161  1
## 1162  1
## 1163  1
## 1164  1
## 1165  1
## 1166  1
## 1167  1
## 1168  1
## 1169  1
## 1170  1
## 1171  1
## 1172  1
## 1173  1
## 1174  1
## 1175  1
## 1176  1
## 1177  1
## 1178  1
## 1179  1
## 1180  1
## 1181  1
## 1182  1
## 1183  1
## 1184  1
## 1185  1
## 1186  1
## 1187  1
## 1188  1
## 1189  1
## 1190  1
## 1191  1
## 1192  1
## 1193  1
## 1194  1
## 1195  1
## 1196  1
## 1197  1
## 1198  1
## 1199  1
## 1200  1
## 1201  1
## 1202  1
## 1203  1
## 1204  1
## 1205  1
## 1206  1
## 1207  1
## 1208  1
## 1209  1
## 1210  1
## 1211  1
## 1212  1
## 1213  1
## 1214  1
## 1215  1
## 1216  1
## 1217  1
## 1218  1
## 1219  1
## 1220  1
## 1221  1
## 1222  1
## 1223  1
## 1224  1
## 1225  1
## 1226  1
## 1227  1
## 1228  1
## 1229  1
## 1230  1
## 1231  1
## 1232  1
## 1233  1
## 1234  1
## 1235  1
## 1236  1
## 1237  1
## 1238  1
## 1239  1
## 1240  1
## 1241  1
## 1242  1
## 1243  1
## 1244  1
## 1245  1
## 1246  1
## 1247  1
## 1248  1
## 1249  1
## 1250  1
## 1251  1
## 1252  1
## 1253  1
## 1254  1
## 1255  1
## 1256  1
## 1257  1
## 1258  1
## 1259  1
## 1260  1
## 1261  1
## 1262  1
## 1263  1
## 1264  1
## 1265  1
## 1266  1
## 1267  1
## 1268  1
## 1269  1
## 1270  1
## 1271  1
## 1272  1
## 1273  1
## 1274  1
## 1275  1
## 1276  1
## 1277  1
## 1278  1
## 1279  1
## 1280  1
## 1281  1
## 1282  1
## 1283  1
## 1284  1
## 1285  1
## 1286  1
## 1287  1
## 1288  1
## 1289  1
## 1290  1
## 1291  1
## 1292  1
## 1293  1
## 1294  1
## 1295  1
## 1296  1
## 1297  1
## 1298  1
## 1299  1
## 1300  1
## 1301  1
## 1302  1
## 1303  1
## 1304  1
## 1305  1
## 1306  1
## 1307  1
## 1308  1
## 1309  1
## 1310  1
## 1311  1
## 1312  1
## 1313  1
## 1314  1
## 1315  1
## 1316  1
## 1317  1
## 1318  1
## 1319  1
## 1320  1
## 1321  1
## 1322  1
## 1323  1
## 1324  1
## 1325  1
## 1326  1
## 1327  1
## 1328  1
## 1329  1
## 1330  1
## 1331  1
## 1332  1
## 1333  1
## 1334  1
## 1335  1
## 1336  1
## 1337  1
## 1338  1
## 1339  1
## 1340  1
## 1341  1
## 1342  1
## 1343  1
## 1344  1
## 1345  1
## 1346  1
## 1347  1
## 1348  1
## 1349  1
## 1350  1
## 1351  1
## 1352  1
## 1353  1
## 1354  1
## 1355  1
## 1356  1
## 1357  1
## 1358  1
## 1359  1
## 1360  1
## 1361  1
## 1362  1
## 1363  1
## 1364  1
## 1365  1
## 1366  1
## 1367  1
## 1368  1
## 1369  1
## 1370  1
## 1371  1
## 1372  1
## 1373  1
## 1374  1
## 1375  1
## 1376  1
## 1377  1
## 1378  1
## 1379  1
## 1380  1
## 1381  1
## 1382  1
## 1383  1
## 1384  1
## 1385  1
## 1386  1
## 1387  1
## 1388  1
## 1389  1
## 1390  1
## 1391  1
## 1392  1
## 1393  1
## 1394  1
## 1395  1
## 1396  1
## 1397  1
## 1398  1
## 1399  1
## 1400  1
## 1401  1
## 1402  1
## 1403  1
## 1404  1
## 1405  1
## 1406  1
## 1407  1
## 1408  1
## 1409  1
## 1410  1
## 1411  1
## 1412  1
## 1413  1
## 1414  1
## 1415  1
## 1416  1
## 1417  1
## 1418  1
## 1419  1
## 1420  1
## 1421  1
## 1422  1
## 1423  1
## 1424  1
## 1425  1
## 1426  1
## 1427  1
## 1428  1
## 1429  1
## 1430  1
## 1431  1
## 1432  1
## 1433  1
## 1434  1
## 1435  1
## 1436  1
## 1437  1
## 1438  1
## 1439  1
## 1440  1
## 1441  1
## 1442  1
## 1443  1
## 1444  1
## 1445  1
## 1446  1
## 1447  1
## 1448  1
## 1449  1
## 1450  1
## 1451  1
## 1452  1
## 1453  1
## 1454  1
## 1455  1
## 1456  1
## 1457  1
## 1458  1
## 1459  1
## 1460  1
## 1461  1
## 1462  1
## 1463  1
## 1464  1
## 1465  1
## 1466  1
## 1467  1
## 1468  1
## 1469  1
## 1470  1
## 1471  1
## 1472  1
## 1473  1
## 1474  1
## 1475  1
## 1476  1
## 1477  1
## 1478  1
## 1479  1
## 1480  1
## 1481  1
## 1482  1
## 1483  1
## 1484  1
## 1485  1
## 1486  1
## 1487  1
## 1488  1
## 1489  1
## 1490  1
## 1491  1
## 1492  1
## 1493  1
## 1494  1
## 1495  1
## 1496  1
## 1497  1
## 1498  1
## 1499  1
## 1500  1
## 1501  1
## 1502  1
## 1503  1
## 1504  1
## 1505  1
## 1506  1
## 1507  1
## 1508  1
## 1509  1
## 1510  1
## 1511  1
## 1512  1
## 1513  1
## 1514  1
## 1515  1
## 1516  1
## 1517  1
## 1518  1
## 1519  1
## 1520  1
## 1521  1
## 1522  1
## 1523  1
## 1524  1
## 1525  1
## 1526  1
## 1527  1
## 1528  1
## 1529  1
## 1530  1
## 1531  1
## 1532  1
## 1533  1
## 1534  1
## 1535  1
## 1536  1
## 1537  1
## 1538  1
## 1539  1
## 1540  1
## 1541  1
## 1542  1
## 1543  1
## 1544  1
## 1545  1
## 1546  1
## 1547  1
## 1548  1
## 1549  1
## 1550  1
## 1551  1
## 1552  1
## 1553  1
## 1554  1
## 1555  1
## 1556  1
## 1557  1
## 1558  1
## 1559  1
## 1560  1
## 1561  1
## 1562  1
## 1563  1
## 1564  1
## 1565  1
## 1566  1
## 1567  1
## 1568  1
## 1569  1
## 1570  1
## 1571  1
## 1572  1
## 1573  1
## 1574  1
## 1575  1
## 1576  1
## 1577  1
## 1578  1
## 1579  1
## 1580  1
## 1581  1
## 1582  1
## 1583  1
## 1584  1
## 1585  1
## 1586  1
## 1587  1
## 1588  1
## 1589  1
## 1590  1
## 1591  1
## 1592  1
## 1593  1
## 1594  1
## 1595  1
## 1596  1
## 1597  1
## 1598  1
## 1599  1
## 1600  1
## 1601  1
## 1602  1
## 1603  1
## 1604  1
## 1605  1
## 1606  1
## 1607  1
## 1608  1
## 1609  1
## 1610  1
## 1611  1
## 1612  1
## 1613  1
## 1614  1
## 1615  1
## 1616  1
## 1617  1
## 1618  1
## 1619  1
## 1620  1
## 1621  1
## 1622  1
## 1623  1
## 1624  1
## 1625  1
## 1626  1
## 1627  1
## 1628  1
## 1629  1
## 1630  1
## 1631  1
## 1632  1
## 1633  1
## 1634  1
## 1635  1
## 1636  1
## 1637  1
## 1638  1
## 1639  1
## 1640  1
## 1641  1
## 1642  1
## 1643  1
## 1644  1
## 1645  1
## 1646  1
## 1647  1
## 1648  1
## 1649  1
## 1650  1
## 1651  1
## 1652  1
## 1653  1
## 1654  1
## 1655  1
## 1656  1
## 1657  1
## 1658  1
## 1659  1
## 1660  1
## 1661  1
## 1662  1
## 1663  1
## 1664  1
## 1665  1
## 1666  1
## 1667  1
## 1668  1
## 1669  1
## 1670  1
## 1671  1
## 1672  1
## 1673  1
## 1674  1
## 1675  1
## 1676  1
## 1677  1
## 1678  1
## 1679  1
## 1680  1
## 1681  1
## 1682  1
## 1683  1
## 1684  1
## 1685  1
## 1686  1
## 1687  1
## 1688  1
## 1689  1
## 1690  1
## 1691  1
## 1692  1
## 1693  1
## 1694  1
## 1695  1
## 1696  1
## 1697  1
## 1698  1
## 1699  1
## 1700  1
## 1701  1
## 1702  1
## 1703  1
## 1704  1
## 1705  1
## 1706  1
## 1707  1
## 1708  1
## 1709  1
## 1710  1
## 1711  1
## 1712  1
## 1713  1
## 1714  1
## 1715  1
## 1716  1
## 1717  1
## 1718  1
## 1719  1
## 1720  1
## 1721  1
## 1722  1
## 1723  1
## 1724  1
## 1725  1
## 1726  1
## 1727  1
## 1728  1
## 1729  1
## 1730  1
## 1731  1
## 1732  1
## 1733  1
## 1734  1
## 1735  1
## 1736  1
## 1737  1
## 1738  1
## 1739  1
## 1740  1
## 1741  1
## 1742  1
## 1743  1
## 1744  1
## 1745  1
## 1746  1
## 1747  1
## 1748  1
## 1749  1
## 1750  1
## 1751  1
## 1752  1
## 1753  1
## 1754  1
## 1755  1
## 1756  1
## 1757  1
## 1758  1
## 1759  1
## 1760  1
## 1761  1
## 1762  1
## 1763  1
## 1764  1
## 1765  1
## 1766  1
## 1767  1
## 1768  1
## 1769  1
## 1770  1
## 1771  1
## 1772  1
## 1773  1
## 1774  1
## 1775  1
## 1776  1
## 1777  1
## 1778  1
## 1779  1
## 1780  1
## 1781  1
## 1782  1
## 1783  1
## 1784  1
## 1785  1
## 1786  1
## 1787  1
## 1788  1
## 1789  1
## 1790  1
## 1791  1
## 1792  1
## 1793  1
## 1794  1
## 1795  1
## 1796  1
## 1797  1
## 1798  1
## 1799  1
## 1800  1
## 1801  1
## 1802  1
## 1803  1
## 1804  1
## 1805  1
## 1806  1
## 1807  1
## 1808  1
## 1809  1
## 1810  1
## 1811  1
## 1812  1
## 1813  1
## 1814  1
## 1815  1
## 1816  1
## 1817  1
## 1818  1
## 1819  1
## 1820  1
## 1821  1
## 1822  1
## 1823  1
## 1824  1
## 1825  1
## 1826  1
## 1827  1
## 1828  1
## 1829  1
## 1830  1
## 1831  1
## 1832  1
## 1833  1
## 1834  1
## 1835  1
## 1836  1
## 1837  1
## 1838  1
## 1839  1
## 1840  1
## 1841  1
## 1842  1
## 1843  1
## 1844  1
## 1845  1
## 1846  1
## 1847  1
## 1848  1
## 1849  1
## 1850  1
## 1851  1
## 1852  1
## 1853  1
## 1854  1
## 1855  1
## 1856  1
## 1857  1
## 1858  1
## 1859  1
## 1860  1
## 1861  1
## 1862  1
## 1863  1
## 1864  1
## 1865  1
## 1866  1
## 1867  1
## 1868  1
## 1869  1
## 1870  1
## 1871  1
## 1872  1
## 1873  1
## 1874  1
## 1875  1
## 1876  1
## 1877  1
## 1878  1
## 1879  1
## 1880  1
## 1881  1
## 1882  1
## 1883  1
## 1884  1
## 1885  1
## 1886  1
## 1887  1
## 1888  1
## 1889  1
## 1890  1
## 1891  1
## 1892  1
## 1893  1
## 1894  1
## 1895  1
## 1896  1
## 1897  1
## 1898  1
## 1899  1
## 1900  1
## 1901  1
## 1902  1
## 1903  1
## 1904  1
## 1905  1
## 1906  1
## 1907  1
## 1908  1
## 1909  1
## 1910  1
## 1911  1
## 1912  1
## 1913  1
## 1914  1
## 1915  1
## 1916  1
## 1917  1
## 1918  1
## 1919  1
## 1920  1
## 1921  1
## 1922  1
## 1923  1
## 1924  1
## 1925  1
## 1926  1
## 1927  1
## 1928  1
## 1929  1
## 1930  1
## 1931  1
## 1932  1
## 1933  1
## 1934  1
## 1935  1
## 1936  1
## 1937  1
## 1938  1
## 1939  1
## 1940  1
## 1941  1
## 1942  1
## 1943  1
## 1944  1
## 1945  1
## 1946  1
## 1947  1
## 1948  1
## 1949  1
## 1950  1
## 1951  1
## 1952  1
## 1953  1
## 1954  1
## 1955  1
## 1956  1
## 1957  1
## 1958  1
## 1959  1
## 1960  1
## 1961  1
## 1962  1
## 1963  1
## 1964  1
## 1965  1
## 1966  1
## 1967  1
## 1968  1
## 1969  1
## 1970  1
## 1971  1
## 1972  1
## 1973  1
## 1974  1
## 1975  1
## 1976  1
## 1977  1
## 1978  1
## 1979  1
## 1980  1
## 1981  1
## 1982  1
## 1983  1
## 1984  1
## 1985  1
## 1986  1
## 1987  1
## 1988  1
## 1989  1
## 1990  1
## 1991  1
## 1992  1
## 1993  1
## 1994  1
## 1995  1
## 1996  1
## 1997  1
## 1998  1
## 1999  1
## 2000  1
## 2001  1
## 2002  1
## 2003  1
## 2004  1
## 2005  1
## 2006  1
## 2007  1
## 2008  1
## 2009  1
## 2010  1
## 2011  1
## 2012  1
## 2013  1
## 2014  1
## 2015  1
## 2016  1
## 2017  1
## 2018  1
## 2019  1
## 2020  1
## 2021  1
## 2022  1
## 2023  1
## 2024  1
## 2025  1
## 2026  1
## 2027  1
## 2028  1
## 2029  1
## 2030  1
## 2031  1
## 2032  1
## 2033  1
## 2034  1
## 2035  1
## 2036  1
## 2037  1
## 2038  1
## 2039  1
## 2040  1
## 2041  1
## 2042  1
## 2043  1
## 2044  1
## 2045  1
## 2046  1
## 2047  1
## 2048  1
## 2049  1
## 2050  1
## 2051  1
## 2052  1
## 2053  1
## 2054  1
## 2055  1
## 2056  1
## 2057  1
## 2058  1
## 2059  1
## 2060  1
## 2061  1
## 2062  1
## 2063  1
## 2064  1
## 2065  1
## 2066  1
## 2067  1
## 2068  1
## 2069  1
## 2070  1
## 2071  1
## 2072  1
## 2073  1
## 2074  1
## 2075  1
## 2076  1
## 2077  1
## 2078  1
## 2079  1
## 2080  1
## 2081  1
## 2082  1
## 2083  1
## 2084  1
## 2085  1
## 2086  1
## 2087  1
## 2088  1
## 2089  1
## 2090  1
## 2091  1
## 2092  1
## 2093  1
## 2094  1
## 2095  1
## 2096  1
## 2097  1
## 2098  1
## 2099  1
## 2100  1
## 2101  1
## 2102  1
## 2103  1
## 2104  1
## 2105  1
## 2106  1
## 2107  1
## 2108  1
## 2109  1
## 2110  1
## 2111  1
## 2112  1
## 2113  1
## 2114  1
## 2115  1
## 2116  1
## 2117  1
## 2118  1
## 2119  1
## 2120  1
## 2121  1
## 2122  1
## 2123  1
## 2124  1
## 2125  1
## 2126  1
## 2127  1
## 2128  1
## 2129  1
## 2130  1
## 2131  1
## 2132  1
## 2133  1
## 2134  1
## 2135  1
## 2136  1
## 2137  1
## 2138  1
## 2139  1
## 2140  1
## 2141  1
## 2142  1
## 2143  1
## 2144  1
## 2145  1
## 2146  1
## 2147  1
## 2148  1
## 2149  1
## 2150  1
## 2151  1
## 2152  1
## 2153  1
## 2154  1
## 2155  1
## 2156  1
## 2157  1
## 2158  1
## 2159  1
## 2160  1
## 2161  1
## 2162  1
## 2163  1
## 2164  1
## 2165  1
## 2166  1
## 2167  1
## 2168  1
## 2169  1
## 2170  1
## 2171  1
## 2172  1
## 2173  1
## 2174  1
## 2175  1
## 2176  1
## 2177  1
## 2178  1
## 2179  1
## 2180  1
## 2181  1
## 2182  1
## 2183  1
## 2184  1
## 2185  1
## 2186  1
## 2187  1
## 2188  1
## 2189  1
## 2190  1
## 2191  1
## 2192  1
## 2193  1
## 2194  1
## 2195  1
## 2196  1
## 2197  1
## 2198  1
## 2199  1
## 2200  1
## 2201  1
## 2202  1
## 2203  1
## 2204  1
## 2205  1
## 2206  1
## 2207  1
## 2208  1
## 2209  1
## 2210  1
## 2211  1
## 2212  1
## 2213  1
## 2214  1
## 2215  1
## 2216  1
## 2217  1
## 2218  1
## 2219  1
## 2220  1
## 2221  1
## 2222  1
## 2223  1
## 2224  1
## 2225  1
## 2226  1
## 2227  1
## 2228  1
## 2229  1
## 2230  1
## 2231  1
## 2232  1
## 2233  1
## 2234  1
## 2235  1
## 2236  1
## 2237  1
## 2238  1
## 2239  1
## 2240  1
## 2241  1
## 2242  1
## 2243  1
## 2244  1
## 2245  1
## 2246  1
## 2247  1
## 2248  1
## 2249  1
## 2250  1
## 2251  1
## 2252  1
## 2253  1
## 2254  1
## 2255  1
## 2256  1
## 2257  1
## 2258  1
## 2259  1
## 2260  1
## 2261  1
## 2262  1
## 2263  1
## 2264  1
## 2265  1
## 2266  1
## 2267  1
## 2268  1
## 2269  1
## 2270  1
## 2271  1
## 2272  1
## 2273  1
## 2274  1
## 2275  1
## 2276  1
## 2277  1
## 2278  1
## 2279  1
## 2280  1
## 2281  1
## 2282  1
## 2283  1
## 2284  1
## 2285  1
## 2286  1
## 2287  1
## 2288  1
## 2289  1
## 2290  1
## 2291  1
## 2292  1
## 2293  1
## 2294  1
## 2295  1
## 2296  1
## 2297  1
## 2298  1
## 2299  1
## 2300  1
## 2301  1
## 2302  1
## 2303  1
## 2304  1
## 2305  1
## 2306  1
## 2307  1
## 2308  1
## 2309  1
## 2310  1
## 2311  1
## 2312  1
## 2313  1
## 2314  1
## 2315  1
## 2316  1
## 2317  1
## 2318  1
## 2319  1
## 2320  1
## 2321  1
## 2322  1
## 2323  1
## 2324  1
## 2325  1
## 2326  1
## 2327  1
## 2328  1
## 2329  1
## 2330  1
## 2331  1
## 2332  1
## 2333  1
## 2334  1
## 2335  1
## 2336  1
## 2337  1
## 2338  1
## 2339  1
## 2340  1
## 2341  1
## 2342  1
## 2343  1
## 2344  1
## 2345  1
## 2346  1
## 2347  1
## 2348  1
## 2349  1
## 2350  1
## 2351  1
## 2352  1
## 2353  1
## 2354  1
## 2355  1
## 2356  1
## 2357  1
## 2358  1
## 2359  1
## 2360  1
## 2361  1
## 2362  1
## 2363  1
## 2364  1
## 2365  1
## 2366  1
## 2367  1
## 2368  1
## 2369  1
## 2370  1
## 2371  1
## 2372  1
## 2373  1
## 2374  1
## 2375  1
## 2376  1
## 2377  1
## 2378  1
## 2379  1
## 2380  1
## 2381  1
## 2382  1
## 2383  1
## 2384  1
## 2385  1
## 2386  1
## 2387  1
## 2388  1
## 2389  1
## 2390  1
## 2391  1
## 2392  1
## 2393  1
## 2394  1
## 2395  1
## 2396  1
## 2397  1
## 2398  1
## 2399  1
## 2400  1
## 2401  1
## 2402  1
## 2403  1
## 2404  1
## 2405  1
## 2406  1
## 2407  1
## 2408  1
## 2409  1
## 2410  1
## 2411  1
## 2412  1
## 2413  1
## 2414  1
## 2415  1
## 2416  1
## 2417  1
## 2418  1
## 2419  1
## 2420  1
## 2421  1
## 2422  1
## 2423  1
## 2424  1
## 2425  1
## 2426  1
## 2427  1
## 2428  1
## 2429  1
## 2430  1
## 2431  1
## 2432  1
## 2433  1
## 2434  1
## 2435  1
## 2436  1
## 2437  1
## 2438  1
## 2439  1
## 2440  1
## 2441  1
## 2442  1
## 2443  1
## 2444  1
## 2445  1
## 2446  1
## 2447  1
## 2448  1
## 2449  1
## 2450  1
## 2451  1
## 2452  1
## 2453  1
## 2454  1
## 2455  1
## 2456  1
## 2457  1
## 2458  1
## 2459  1
## 2460  1
## 2461  1
## 2462  1
## 2463  1
## 2464  1
## 2465  1
## 2466  1
## 2467  1
## 2468  1
## 2469  1
## 2470  1
## 2471  1
## 2472  1
## 2473  1
## 2474  1
## 2475  1
## 2476  1
## 2477  1
## 2478  1
## 2479  1
## 2480  1
## 2481  1
## 2482  1
## 2483  1
## 2484  1
## 2485  1
## 2486  1
## 2487  1
## 2488  1
## 2489  1
## 2490  1
## 2491  1
## 2492  1
## 2493  1
## 2494  1
## 2495  1
## 2496  1
## 2497  1
## 2498  1
## 2499  1
## 2500  1
## 2501  1
## 2502  1
## 2503  1
## 2504  1
## 2505  1
## 2506  1
## 2507  1
## 2508  1
## 2509  1
## 2510  1
## 2511  1
## 2512  1
## 2513  1
## 2514  1
## 2515  1
## 2516  1
## 2517  1
## 2518  1
## 2519  1
## 2520  1
## 2521  1
## 2522  1
## 2523  1
## 2524  1
## 2525  1
## 2526  1
## 2527  1
## 2528  1
## 2529  1
## 2530  1
## 2531  1
## 2532  1
## 2533  1
## 2534  1
## 2535  1
## 2536  1
## 2537  1
## 2538  1
## 2539  1
## 2540  1
## 2541  1
## 2542  1
## 2543  1
## 2544  1
## 2545  1
## 2546  1
## 2547  1
## 2548  1
## 2549  1
## 2550  1
## 2551  1
## 2552  1
## 2553  1
## 2554  1
## 2555  1
## 2556  1
## 2557  1
## 2558  1
## 2559  1
## 2560  1
## 2561  1
## 2562  1
## 2563  1
## 2564  1
## 2565  1
## 2566  1
## 2567  1
## 2568  1
## 2569  1
## 2570  1
## 2571  1
## 2572  1
## 2573  1
## 2574  1
## 2575  1
## 2576  1
## 2577  1
## 2578  1
## 2579  1
## 2580  1
## 2581  1
## 2582  1
## 2583  1
## 2584  1
## 2585  1
## 2586  1
## 2587  1
## 2588  1
## 2589  1
## 2590  1
## 2591  1
## 2592  1
## 2593  1
## 2594  1
## 2595  1
## 2596  1
## 2597  1
## 2598  1
## 2599  1
## 2600  1
## 2601  1
## 2602  1
## 2603  1
## 2604  1
## 2605  1
## 2606  1
## 2607  1
## 2608  1
## 2609  1
## 2610  1
## 2611  1
## 2612  1
## 2613  1
## 2614  1
## 2615  1
## 2616  1
## 2617  1
## 2618  1
## 2619  1
## 2620  1
## 2621  1
## 2622  1
## 2623  1
## 2624  1
## 2625  1
## 2626  1
## 2627  1
## 2628  1
## 2629  1
## 2630  1
## 2631  1
## 2632  1
## 2633  1
## 2634  1
## 2635  1
## 2636  1
## 2637  1
## 2638  1
## 2639  1
## 2640  1
## 2641  1
## 2642  1
## 2643  1
## 2644  1
## 2645  1
## 2646  1
## 2647  1
## 2648  1
## 2649  1
## 2650  1
## 2651  1
## 2652  1
## 2653  1
## 2654  1
## 2655  1
## 2656  1
## 2657  1
## 2658  1
## 2659  1
## 2660  1
## 2661  1
## 2662  1
## 2663  1
## 2664  1
## 2665  1
## 2666  1
## 2667  1
## 2668  1
## 2669  1
## 2670  1
## 2671  1
## 2672  1
## 2673  1
## 2674  1
## 2675  1
## 2676  1
## 2677  1
## 2678  1
## 2679  1
## 2680  1
## 2681  1
## 2682  1
## 2683  1
## 2684  1
## 2685  1
## 2686  1
## 2687  1
## 2688  1
## 2689  1
## 2690  1
## 2691  1
## 2692  1
## 2693  1
## 2694  1
## 2695  1
## 2696  1
## 2697  1
## 2698  1
## 2699  1
## 2700  1
## 2701  1
## 2702  1
## 2703  1
## 2704  1
## 2705  1
## 2706  1
## 2707  1
## 2708  1
## 2709  1
## 2710  1
## 2711  1
## 2712  1
## 2713  1
## 2714  1
## 2715  1
## 2716  1
## 2717  1
## 2718  1
## 2719  1
## 2720  1
## 2721  1
## 2722  1
## 2723  1
## 2724  1
## 2725  1
## 2726  1
## 2727  1
## 2728  1
## 2729  1
## 2730  1
## 2731  1
## 2732  1
## 2733  1
## 2734  1
## 2735  1
## 2736  1
## 2737  1
## 2738  1
## 2739  1
## 2740  1
## 2741  1
## 2742  1
## 2743  1
## 2744  1
## 2745  1
## 2746  1
## 2747  1
## 2748  1
## 2749  1
## 2750  1
## 2751  1
## 2752  1
## 2753  1
## 2754  1
## 2755  1
## 2756  1
## 2757  1
## 2758  1
## 2759  1
## 2760  1
## 2761  1
## 2762  1
## 2763  1
## 2764  1
## 2765  1
## 2766  1
## 2767  1
## 2768  1
## 2769  1
## 2770  1
## 2771  1
## 2772  1
## 2773  1
## 2774  1
## 2775  1
## 2776  1
## 2777  1
## 2778  1
## 2779  1
## 2780  1
## 2781  1
## 2782  1
## 2783  1
## 2784  1
## 2785  1
## 2786  1
## 2787  1
## 2788  1
## 2789  1
## 2790  1
## 2791  1
## 2792  1
## 2793  1
## 2794  1
## 2795  1
## 2796  1
## 2797  1
## 2798  1
## 2799  1
## 2800  1
## 2801  1
## 2802  1
## 2803  1
## 2804  1
## 2805  1
## 2806  1
## 2807  1
## 2808  1
## 2809  1
## 2810  1
## 2811  1
## 2812  1
## 2813  1
## 2814  1
## 2815  1
## 2816  1
## 2817  1
## 2818  1
## 2819  1
## 2820  1
## 2821  1
## 2822  1
## 2823  1
## 2824  1
## 2825  1
## 2826  1
## 2827  1
## 2828  1
## 2829  1
## 2830  1
## 2831  1
## 2832  1
## 2833  1
## 2834  1
## 2835  1
## 2836  1
## 2837  1
## 2838  1
## 2839  1
## 2840  1
## 2841  1
## 2842  1
## 2843  1
## 2844  1
## 2845  1
## 2846  1
## 2847  1
## 2848  1
## 2849  1
## 2850  1
## 2851  1
## 2852  1
## 2853  1
## 2854  1
## 2855  1
## 2856  1
## 2857  1
## 2858  1
## 2859  1
## 2860  1
## 2861  1
## 2862  1
## 2863  1
## 2864  1
## 2865  1
## 2866  1
## 2867  1
## 2868  1
## 2869  1
## 2870  1
## 2871  1
## 2872  1
## 2873  1
## 2874  1
## 2875  1
## 2876  1
## 2877  1
## 2878  1
## 2879  1
## 2880  1
## 2881  1
## 2882  1
## 2883  1
## 2884  1
## 2885  1
## 2886  1
## 2887  1
## 2888  1
## 2889  1
## 2890  1
## 2891  1
## 2892  1
## 2893  1
## 2894  1
## 2895  1
## 2896  1
## 2897  1
## 2898  1
## 2899  1
## 2900  1
## 2901  1
## 2902  1
## 2903  1
## 2904  1
## 2905  1
## 2906  1
## 2907  1
## 2908  1
## 2909  1
## 2910  1
## 2911  1
## 2912  1
## 2913  1
## 2914  1
## 2915  1
## 2916  1
## 2917  1
## 2918  1
## 2919  1
## 2920  1
## 2921  1
## 2922  1
## 2923  1
## 2924  1
## 2925  1
## 2926  1
## 2927  1
## 2928  1
## 2929  1
## 2930  1
## 2931  1
## 2932  1
## 2933  1
## 2934  1
## 2935  1
## 2936  1
## 2937  1
## 2938  1
## 2939  1
## 2940  1
## 2941  1
## 2942  1
## 2943  1
## 2944  1
## 2945  1
## 2946  1
## 2947  1
## 2948  1
## 2949  1
## 2950  1
## 2951  1
## 2952  1
## 2953  1
## 2954  1
## 2955  1
## 2956  1
## 2957  1
## 2958  1
## 2959  1
## 2960  1
## 2961  1
## 2962  1
## 2963  1
## 2964  1
## 2965  1
## 2966  1
## 2967  1
## 2968  1
## 2969  1
## 2970  1
## 2971  1
## 2972  1
## 2973  1
## 2974  1
## 2975  1
## 2976  1
## 2977  1
## 2978  1
## 2979  1
## 2980  1
## 2981  1
## 2982  1
## 2983  1
## 2984  1
## 2985  1
## 2986  1
## 2987  1
## 2988  1
## 2989  1
## 2990  1
## 2991  1
## 2992  1
## 2993  1
## 2994  1
## 2995  1
## 2996  1
## 2997  1
## 2998  1
## 2999  1
## 3000  1
## 3001  1
## 3002  1
## 3003  1
## 3004  1
## 3005  1
## 3006  1
## 3007  1
## 3008  1
## 3009  1
## 3010  1
## 3011  1
## 3012  1
## 3013  1
## 3014  1
## 3015  1
## 3016  1
## 3017  1
## 3018  1
## 3019  1
## 3020  1
## 3021  1
## 3022  1
## 3023  1
## 3024  1
## 3025  1
## 3026  1
## 3027  1
## 3028  1
## 3029  1
## 3030  1
## 3031  1
## 3032  1
## 3033  1
## 3034  1
## 3035  1
## 3036  1
## 3037  1
## 3038  1
## 3039  1
## 3040  1
## 3041  1
## 3042  1
## 3043  1
## 3044  1
## 3045  1
## 3046  1
## 3047  1
## 3048  1
## 3049  1
## 3050  1
## 3051  1
## 3052  1
## 3053  1
## 3054  1
## 3055  1
## 3056  1
## 3057  1
## 3058  1
## 3059  1
## 3060  1
## 3061  1
## 3062  1
## 3063  1
## 3064  1
## 3065  1
## 3066  1
## 3067  1
## 3068  1
## 3069  1
## 3070  1
## 3071  1
## 3072  1
## 3073  1
## 3074  1
## 3075  1
## 3076  1
## 3077  1
## 3078  1
## 3079  1
## 3080  1
## 3081  1
## 3082  1
## 3083  1
## 3084  1
## 3085  1
## 3086  1
## 3087  1
## 3088  1
## 3089  1
## 3090  1
## 3091  1
## 3092  1
## 3093  1
## 3094  1
## 3095  1
## 3096  1
## 3097  1
## 3098  1
## 3099  1
## 3100  1
## 3101  1
## 3102  1
## 3103  1
## 3104  1
## 3105  1
## 3106  1
## 3107  1
## 3108  1
## 3109  1
## 3110  1
## 3111  1
## 3112  1
## 3113  1
## 3114  1
## 3115  1
## 3116  1
## 3117  1
## 3118  1
## 3119  1
## 3120  1
## 3121  1
## 3122  1
## 3123  1
## 3124  1
## 3125  1
## 3126  1
## 3127  1
## 3128  1
## 3129  1
## 3130  1
## 3131  1
## 3132  1
## 3133  1
## 3134  1
## 3135  1
## 3136  1
## 3137  1
## 3138  1
## 3139  1
## 3140  1
## 3141  1
## 3142  1
## 3143  1
## 3144  1
## 3145  1
## 3146  1
## 3147  1
## 3148  1
## 3149  1
## 3150  1
## 3151  1
## 3152  1
## 3153  1
## 3154  1
## 3155  1
## 3156  1
## 3157  1
## 3158  1
## 3159  1
## 3160  1
## 3161  1
## 3162  1
## 3163  1
## 3164  1
## 3165  1
## 3166  1
## 3167  1
## 3168  1
## 3169  1
## 3170  1
## 3171  1
## 3172  1
## 3173  1
## 3174  1
## 3175  1
## 3176  1
## 3177  1
## 3178  1
## 3179  1
## 3180  1
## 3181  1
## 3182  1
## 3183  1
## 3184  1
## 3185  1
## 3186  1
## 3187  1
## 3188  1
## 3189  1
## 3190  1
## 3191  1
## 3192  1
## 3193  1
## 3194  1
## 3195  1
## 3196  1
## 3197  1
## 3198  1
## 3199  1
## 3200  1
## 3201  1
## 3202  1
## 3203  1
## 3204  1
## 3205  1
## 3206  1
## 3207  1
## 3208  1
## 3209  1
## 3210  1
## 3211  1
## 3212  1
## 3213  1
## 3214  1
## 3215  1
## 3216  1
## 3217  1
## 3218  1
## 3219  1
## 3220  1
## 3221  1
## 3222  1
## 3223  1
## 3224  1
## 3225  1
## 3226  1
## 3227  1
## 3228  1
## 3229  1
## 3230  1
## 3231  1
## 3232  1
## 3233  1
## 3234  1
## 3235  1
## 3236  1
## 3237  1
## 3238  1
## 3239  1
## 3240  1
## 3241  1
## 3242  1
## 3243  1
## 3244  1
## 3245  1
## 3246  1
## 3247  1
## 3248  1
## 3249  1
## 3250  1
## 3251  1
## 3252  1
## 3253  1
## 3254  1
## 3255  1
## 3256  1
## 3257  1
## 3258  1
## 3259  1
## 3260  1
## 3261  1
## 3262  1
## 3263  1
## 3264  1
## 3265  1
## 3266  1
## 3267  1
## 3268  1
## 3269  1
## 3270  1
## 3271  1
## 3272  1
## 3273  1
## 3274  1
## 3275  1
## 3276  1
## 3277  1
## 3278  1
## 3279  1
## 3280  1
## 3281  1
## 3282  1
## 3283  1
## 3284  1
## 3285  1
## 3286  1
## 3287  1
## 3288  1
## 3289  1
## 3290  1
## 3291  1
## 3292  1
## 3293  1
## 3294  1
## 3295  1
## 3296  1
## 3297  1
## 3298  1
## 3299  1
## 3300  1
## 3301  1
## 3302  1
## 3303  1
## 3304  1
## 3305  1
## 3306  1
## 3307  1
## 3308  1
## 3309  1
## 3310  1
## 3311  1
## 3312  1
## 3313  1
## 3314  1
## 3315  1
## 3316  1
## 3317  1
## 3318  1
## 3319  1
## 3320  1
## 3321  1
## 3322  1
## 3323  1
## 3324  1
## 3325  1
## 3326  1
## 3327  1
## 3328  1
## 3329  1
## 3330  1
## 3331  1
## 3332  1
## 3333  1
## 3334  1
## 3335  1
## 3336  1
## 3337  1
## 3338  1
## 3339  1
## 3340  1
## 3341  1
## 3342  1
## 3343  1
## 3344  1
## 3345  1
## 3346  1
## 3347  1
## 3348  1
## 3349  1
## 3350  1
## 3351  1
## 3352  1
## 3353  1
## 3354  1
## 3355  1
## 3356  1
## 3357  1
## 3358  1
## 3359  1
## 3360  1
## 3361  1
## 3362  1
## 3363  1
## 3364  1
## 3365  1
## 3366  1
## 3367  1
## 3368  1
## 3369  1
## 3370  1
## 3371  1
## 3372  1
## 3373  1
## 3374  1
## 3375  1
## 3376  1
## 3377  1
## 3378  1
## 3379  1
## 3380  1
## 3381  1
## 3382  1
## 3383  1
## 3384  1
## 3385  1
## 3386  1
## 3387  1
## 3388  1
## 3389  1
## 3390  1
## 3391  1
## 3392  1
## 3393  1
## 3394  1
## 3395  1
## 3396  1
## 3397  1
## 3398  1
## 3399  1
## 3400  1
## 3401  1
## 3402  1
## 3403  1
## 3404  1
## 3405  1
## 3406  1
## 3407  1
## 3408  1
## 3409  1
## 3410  1
## 3411  1
## 3412  1
## 3413  1
## 3414  1
## 3415  1
## 3416  1
## 3417  1
## 3418  1
## 3419  1
## 3420  1
## 3421  1
## 3422  1
## 3423  1
## 3424  1
## 3425  1
## 3426  1
## 3427  1
## 3428  1
## 3429  1
## 3430  1
## 3431  1
## 3432  1
## 3433  1
## 3434  1
## 3435  1
## 3436  1
## 3437  1
## 3438  1
## 3439  1
## 3440  1
## 3441  1
## 3442  1
## 3443  1
## 3444  1
## 3445  1
## 3446  1
## 3447  1
## 3448  1
## 3449  1
## 3450  1
## 3451  1
## 3452  1
## 3453  1
## 3454  1
## 3455  1
## 3456  1
## 3457  1
## 3458  1
## 3459  1
## 3460  1
## 3461  1
## 3462  1
## 3463  1
## 3464  1
## 3465  1
## 3466  1
## 3467  1
## 3468  1
## 3469  1
## 3470  1
## 3471  1
## 3472  1
## 3473  1
## 3474  1
## 3475  1
## 3476  1
## 3477  1
## 3478  1
## 3479  1
## 3480  1
## 3481  1
## 3482  1
## 3483  1
## 3484  1
## 3485  1
## 3486  1
## 3487  1
## 3488  1
## 3489  1
## 3490  1
## 3491  1
## 3492  1
## 3493  1
## 3494  1
## 3495  1
## 3496  1
## 3497  1
## 3498  1
## 3499  1
## 3500  1
## 3501  1
## 3502  1
## 3503  1
## 3504  1
## 3505  1
## 3506  1
## 3507  1
## 3508  1
## 3509  1
## 3510  1
## 3511  1
## 3512  1
## 3513  1
## 3514  1
## 3515  1
## 3516  1
## 3517  1
## 3518  1
## 3519  1
## 3520  1
## 3521  1
## 3522  1
## 3523  1
## 3524  1
## 3525  1
## 3526  1
## 3527  1
## 3528  1
## 3529  1
## 3530  1
## 3531  1
## 3532  1
## 3533  1
## 3534  1
## 3535  1
## 3536  1
## 3537  1
## 3538  1
## 3539  1
## 3540  1
## 3541  1
## 3542  1
## 3543  1
## 3544  1
## 3545  1
## 3546  1
## 3547  1
## 3548  1
## 3549  1
## 3550  1
## 3551  1
## 3552  1
## 3553  1
## 3554  1
## 3555  1
## 3556  1
## 3557  1
## 3558  1
## 3559  1
## 3560  1
## 3561  1
## 3562  1
## 3563  1
## 3564  1
## 3565  1
## 3566  1
## 3567  1
## 3568  1
## 3569  1
## 3570  1
## 3571  1
## 3572  1
## 3573  1
## 3574  1
## 3575  1
## 3576  1
## 3577  1
## 3578  1
## 3579  1
## 3580  1
## 3581  1
## 3582  1
## 3583  1
## 3584  1
## 3585  1
## 3586  1
## 3587  1
## 3588  1
## 3589  1
## 3590  1
## 3591  1
## 3592  1
## 3593  1
## 3594  1
## 3595  1
## 3596  1
## 3597  1
## 3598  1
## 3599  1
## 3600  1
## 3601  1
## 3602  1
## 3603  1
## 3604  1
## 3605  1
## 3606  1
## 3607  1
## 3608  1
## 3609  1
## 3610  1
## 3611  1
## 3612  1
## 3613  1
## 3614  1
## 3615  1
## 3616  1
## 3617  1
## 3618  1
## 3619  1
## 3620  1
## 3621  1
## 3622  1
## 3623  1
## 3624  1
## 3625  1
## 3626  1
## 3627  1
## 3628  1
## 3629  1
## 3630  1
## 3631  1
## 3632  1
## 3633  1
## 3634  1
## 3635  1
## 3636  1
## 3637  1
## 3638  1
## 3639  1
## 3640  1
## 3641  1
## 3642  1
## 3643  1
## 3644  1
## 3645  1
## 3646  1
## 3647  1
## 3648  1
## 3649  1
## 3650  1
## 3651  1
## 3652  1
## 3653  1
## 3654  1
## 3655  1
## 3656  1
## 3657  1
## 3658  1
## 3659  1
## 3660  1
## 3661  1
## 3662  1
## 3663  1
## 3664  1
## 3665  1
## 3666  1
## 3667  1
## 3668  1
## 3669  1
## 3670  1
## 3671  1
## 3672  1
## 3673  1
## 3674  1
## 3675  1
## 3676  1
## 3677  1
## 3678  1
## 3679  1
## 3680  1
## 3681  1
## 3682  1
## 3683  1
## 3684  1
## 3685  1
## 3686  1
## 3687  1
## 3688  1
## 3689  1
## 3690  1
## 3691  1
## 3692  1
## 3693  1
## 3694  1
## 3695  1
## 3696  1
## 3697  1
## 3698  1
## 3699  1
## 3700  1
## 3701  1
## 3702  1
## 3703  1
## 3704  1
## 3705  1
## 3706  1
## 3707  1
## 3708  1
## 3709  1
## 3710  1
## 3711  1
## 3712  1
## 3713  1
## 3714  1
## 3715  1
## 3716  1
## 3717  1
## 3718  1
## 3719  1
## 3720  1
## 3721  1
## 3722  1
## 3723  1
## 3724  1
## 3725  1
## 3726  1
## 3727  1
## 3728  1
## 3729  1
## 3730  1
## 3731  1
## 3732  1
## 3733  1
## 3734  1
## 3735  1
## 3736  1
## 3737  1
## 3738  1
## 3739  1
## 3740  1
## 3741  1
## 3742  1
## 3743  1
## 3744  1
## 3745  1
## 3746  1
## 3747  1
## 3748  1
## 3749  1
## 3750  1
## 3751  1
## 3752  1
## 3753  1
## 3754  1
## 3755  1
## 3756  1
## 3757  1
## 3758  1
## 3759  1
## 3760  1
## 3761  1
## 3762  1
## 3763  1
## 3764  1
## 3765  1
## 3766  1
## 3767  1
## 3768  1
## 3769  1
## 3770  1
## 3771  1
## 3772  1
## 3773  1
## 3774  1
## 3775  1
## 3776  1
## 3777  1
## 3778  1
## 3779  1
## 3780  1
## 3781  1
## 3782  1
## 3783  1
## 3784  1
## 3785  1
## 3786  1
## 3787  1
## 3788  1
## 3789  1
## 3790  1
## 3791  1
## 3792  1
## 3793  1
## 3794  1
## 3795  1
## 3796  1
## 3797  1
## 3798  1
## 3799  1
## 3800  1
## 3801  1
## 3802  1
## 3803  1
## 3804  1
## 3805  1
## 3806  1
## 3807  1
## 3808  1
## 3809  1
## 3810  1
## 3811  1
## 3812  1
## 3813  1
## 3814  1
## 3815  1
## 3816  1
## 3817  1
## 3818  1
## 3819  1
## 3820  1
## 3821  1
## 3822  1
## 3823  1
## 3824  1
## 3825  1
## 3826  1
## 3827  1
## 3828  1
## 3829  1
## 3830  1
## 3831  1
## 3832  1
## 3833  1
## 3834  1
## 3835  1
## 3836  1
## 3837  1
## 3838  1
## 3839  1
## 3840  1
## 3841  1
## 3842  1
## 3843  1
## 3844  1
## 3845  1
## 3846  1
## 3847  1
## 3848  1
## 3849  1
## 3850  1
## 3851  1
## 3852  1
## 3853  1
## 3854  1
## 3855  1
## 3856  1
## 3857  1
## 3858  1
## 3859  1
## 3860  1
## 3861  1
## 3862  1
## 3863  1
## 3864  1
## 3865  1
## 3866  1
## 3867  1
## 3868  1
## 3869  1
## 3870  1
## 3871  1
## 3872  1
## 3873  1
## 3874  1
## 3875  1
## 3876  1
## 3877  1
## 3878  1
## 3879  1
## 3880  1
## 3881  1
## 3882  1
## 3883  1
## 3884  1
## 3885  1
## 3886  1
## 3887  1
## 3888  1
## 3889  1
## 3890  1
## 3891  1
## 3892  1
## 3893  1
## 3894  1
## 3895  1
## 3896  1
## 3897  1
## 3898  1
## 3899  1
## 3900  1
## 3901  1
## 3902  1
## 3903  1
## 3904  1
## 3905  1
## 3906  1
## 3907  1
## 3908  1
## 3909  1
## 3910  1
## 3911  1
## 3912  1
## 3913  1
## 3914  1
## 3915  1
## 3916  1
## 3917  1
## 3918  1
## 3919  1
## 3920  1
## 3921  1
## 3922  1
## 3923  1
## 3924  1
## 3925  1
## 3926  1
## 3927  1
## 3928  1
## 3929  1
## 3930  1
## 3931  1
## 3932  1
## 3933  1
## 3934  1
## 3935  1
## 3936  1
## 3937  1
## 3938  1
## 3939  1
## 3940  1
## 3941  1
## 3942  1
## 3943  1
## 3944  1
## 3945  1
## 3946  1
## 3947  1
## 3948  1
## 3949  1
## 3950  1
## 3951  1
## 3952  1
## 3953  1
## 3954  1
## 3955  1
## 3956  1
## 3957  1
## 3958  1
## 3959  1
## 3960  1
## 3961  1
## 3962  1
## 3963  1
## 3964  1
## 3965  1
## 3966  1
## 3967  1
## 3968  1
## 3969  1
## 3970  1
## 3971  1
## 3972  1
## 3973  1
## 3974  1
## 3975  1
## 3976  1
## 3977  1
## 3978  1
## 3979  1
## 3980  1
## 3981  1
## 3982  1
## 3983  1
## 3984  1
## 3985  1
## 3986  1
## 3987  1
## 3988  1
## 3989  1
## 3990  1
## 3991  1
## 3992  1
## 3993  1
## 3994  1
## 3995  1
## 3996  1
## 3997  1
## 3998  1
## 3999  1
## 4000  1
## 4001  1
## 4002  1
## 4003  1
## 4004  1
## 4005  1
## 4006  1
## 4007  1
## 4008  1
## 4009  1
## 4010  1
## 4011  1
## 4012  1
## 4013  1
## 4014  1
## 4015  1
## 4016  1
## 4017  1
## 4018  1
## 4019  1
## 4020  1
## 4021  1
## 4022  1
## 4023  1
## 4024  1
## 4025  1
## 4026  1
## 4027  1
## 4028  1
## 4029  1
## 4030  1
## 4031  1
## 4032  1
## 4033  1
## 4034  1
## 4035  1
## 4036  1
## 4037  1
## 4038  1
## 4039  1
## 4040  1
## 4041  1
## 4042  1
## 4043  1
## 4044  1
## 4045  1
## 4046  1
## 4047  1
## 4048  1
## 4049  1
## 4050  1
## 4051  1
## 4052  1
## 4053  1
## 4054  1
## 4055  1
## 4056  1
## 4057  1
## 4058  1
## 4059  1
## 4060  1
## 4061  1
## 4062  1
## 4063  1
## 4064  1
## 4065  1
## 4066  1
## 4067  1
## 4068  1
## 4069  1
## 4070  1
## 4071  1
## 4072  1
## 4073  1
## 4074  1
## 4075  1
## 4076  1
## 4077  1
## 4078  1
## 4079  1
## 4080  1
## 4081  1
## 4082  1
## 4083  1
## 4084  1
## 4085  1
## 4086  1
## 4087  1
## 4088  1
## 4089  1
## 4090  1
## 4091  1
## 4092  1
## 4093  1
## 4094  1
## 4095  1
## 4096  1
## 4097  1
## 4098  1
## 4099  1
## 4100  1
## 4101  1
## 4102  1
## 4103  1
## 4104  1
## 4105  1
## 4106  1
## 4107  1
## 4108  1
## 4109  1
## 4110  1
## 4111  1
## 4112  1
## 4113  1
## 4114  1
## 4115  1
## 4116  1
## 4117  1
## 4118  1
## 4119  1
## 4120  1
## 4121  1
## 4122  1
## 4123  1
## 4124  1
## 4125  1
## 4126  1
## 4127  1
## 4128  1
## 4129  1
## 4130  1
## 4131  1
## 4132  1
## 4133  1
## 4134  1
## 4135  1
## 4136  1
## 4137  1
## 4138  1
## 4139  1
## 4140  1
## 4141  1
## 4142  1
## 4143  1
## 4144  1
## 4145  1
## 4146  1
## 4147  1
## 4148  1
## 4149  1
## 4150  1
## 4151  1
## 4152  1
## 4153  1
## 4154  1
## 4155  1
## 4156  1
## 4157  1
## 4158  1
## 4159  1
## 4160  1
## 4161  1
## 4162  1
## 4163  1
## 4164  1
## 4165  1
## 4166  1
## 4167  1
## 4168  1
## 4169  1
## 4170  1
## 4171  1
## 4172  1
## 4173  1
## 4174  1
## 4175  1
## 4176  1
## 4177  1
## 4178  1
## 4179  1
## 4180  1
## 4181  1
## 4182  1
## 4183  1
## 4184  1
## 4185  1
## 4186  1
## 4187  1
## 4188  1
## 4189  1
## 4190  1
## 4191  1
## 4192  1
## 4193  1
## 4194  1
## 4195  1
## 4196  1
## 4197  1
## 4198  1
## 4199  1
## 4200  1
## 4201  1
## 4202  1
## 4203  1
## 4204  1
## 4205  1
## 4206  1
## 4207  1
## 4208  1
## 4209  1
## 4210  1
## 4211  1
## 4212  1
## 4213  1
## 4214  1
## 4215  1
## 4216  1
## 4217  1
## 4218  1
## 4219  1
## 4220  1
## 4221  1
## 4222  1
## 4223  1
## 4224  1
## 4225  1
## 4226  1
## 4227  1
## 4228  1
## 4229  1
## 4230  1
## 4231  1
## 4232  1
## 4233  1
## 4234  1
## 4235  1
## 4236  1
## 4237  1
## 4238  1
## 4239  1
## 4240  1
## 4241  1
## 4242  1
## 4243  1
## 4244  1
## 4245  1
## 4246  1
## 4247  1
## 4248  1
## 4249  1
## 4250  1
## 4251  1
## 4252  1
## 4253  1
## 4254  1
## 4255  1
## 4256  1
## 4257  1
## 4258  1
## 4259  1
## 4260  1
## 4261  1
## 4262  1
## 4263  1
## 4264  1
## 4265  1
## 4266  1
## 4267  1
## 4268  1
## 4269  1
## 4270  1
## 4271  1
## 4272  1
## 4273  1
## 4274  1
## 4275  1
## 4276  1
## 4277  1
## 4278  1
## 4279  1
## 4280  1
## 4281  1
## 4282  1
## 4283  1
## 4284  1
## 4285  1
## 4286  1
## 4287  1
## 4288  1
## 4289  1
## 4290  1
## 4291  1
## 4292  1
## 4293  1
## 4294  1
## 4295  1
## 4296  1
## 4297  1
## 4298  1
## 4299  1
## 4300  1
## 4301  1
## 4302  1
## 4303  1
## 4304  1
## 4305  1
## 4306  1
## 4307  1
## 4308  1
## 4309  1
## 4310  1
## 4311  1
## 4312  1
## 4313  1
## 4314  1
## 4315  1
## 4316  1
## 4317  1
## 4318  1
## 4319  1
## 4320  1
## 4321  1
## 4322  1
## 4323  1
## 4324  1
## 4325  1
## 4326  1
## 4327  1
## 4328  1
## 4329  1
## 4330  1
## 4331  1
## 4332  1
## 4333  1
## 4334  1
## 4335  1
## 4336  1
## 4337  1
## 4338  1
## 4339  1
## 4340  1
## 4341  1
## 4342  1
## 4343  1
## 4344  1
## 4345  1
## 4346  1
## 4347  1
## 4348  1
## 4349  1
## 4350  1
## 4351  1
## 4352  1
## 4353  1
## 4354  1
## 4355  1
## 4356  1
## 4357  1
## 4358  1
## 4359  1
## 4360  1
## 4361  1
## 4362  1
## 4363  1
## 4364  1
## 4365  1
## 4366  1
## 4367  1
## 4368  1
## 4369  1
## 4370  1
## 4371  1
## 4372  1
## 4373  1
## 4374  1
## 4375  1
## 4376  1
## 4377  1
## 4378  1
## 4379  1
## 4380  1
## 4381  1
## 4382  1
## 4383  1
## 4384  1
## 4385  1
## 4386  1
## 4387  1
## 4388  1
## 4389  1
## 4390  1
## 4391  1
## 4392  1
## 4393  1
## 4394  1
## 4395  1
## 4396  1
## 4397  1
## 4398  1
## 4399  1
## 4400  1
## 4401  1
## 4402  1
## 4403  1
## 4404  1
## 4405  1
## 4406  1
## 4407  1
## 4408  1
## 4409  1
## 4410  1
## 4411  1
## 4412  1
## 4413  1
## 4414  1
## 4415  1
## 4416  1
## 4417  1
## 4418  1
## 4419  1
## 4420  1
## 4421  1
## 4422  1
## 4423  1
## 4424  1
## 4425  1
## 4426  1
## 4427  1
## 4428  1
## 4429  1
## 4430  1
## 4431  1
## 4432  1
## 4433  1
## 4434  1
## 4435  1
## 4436  1
## 4437  1
## 4438  1
## 4439  1
## 4440  1
## 4441  1
## 4442  1
## 4443  1
## 4444  1
## 4445  1
## 4446  1
## 4447  1
## 4448  1
## 4449  1
## 4450  1
## 4451  1
## 4452  1
## 4453  1
## 4454  1
## 4455  1
## 4456  1
## 4457  1
## 4458  1
## 4459  1
## 4460  1
## 4461  1
## 4462  1
## 4463  1
## 4464  1
## 4465  1
## 4466  1
## 4467  1
## 4468  1
## 4469  1
## 4470  1
## 4471  1
## 4472  1
## 4473  1
## 4474  1
## 4475  1
## 4476  1
## 4477  1
## 4478  1
## 4479  1
## 4480  1
## 4481  1
## 4482  1
## 4483  1
## 4484  1
## 4485  1
## 4486  1
## 4487  1
## 4488  1
## 4489  1
## 4490  1
## 4491  1
## 4492  1
## 4493  1
## 4494  1
## 4495  1
## 4496  1
## 4497  1
## 4498  1
## 4499  1
## 4500  1
## 4501  1
## 4502  1
## 4503  1
## 4504  1
## 4505  1
## 4506  1
## 4507  1
## 4508  1
## 4509  1
## 4510  1
## 4511  1
## 4512  1
## 4513  1
## 4514  1
## 4515  1
## 4516  1
## 4517  1
## 4518  1
## 4519  1
## 4520  1
## 4521  1
## 4522  1
## 4523  1
## 4524  1
## 4525  1
## 4526  1
## 4527  1
## 4528  1
## 4529  1
## 4530  1
## 4531  1
## 4532  1
## 4533  1
## 4534  1
## 4535  1
## 4536  1
## 4537  1
## 4538  1
## 4539  1
## 4540  1
## 4541  1
## 4542  1
## 4543  1
## 4544  1
## 4545  1
## 4546  1
## 4547  1
## 4548  1
## 4549  1
## 4550  1
## 4551  1
## 4552  1
## 4553  1
## 4554  1
## 4555  1
## 4556  1
## 4557  1
## 4558  1
## 4559  1
## 4560  1
## 4561  1
## 4562  1
## 4563  1
## 4564  1
## 4565  1
## 4566  1
## 4567  1
## 4568  1
## 4569  1
## 4570  1
## 4571  1
## 4572  1
## 4573  1
## 4574  1
## 4575  1
## 4576  1
## 4577  1
## 4578  1
## 4579  1
## 4580  1
## 4581  1
## 4582  1
## 4583  1
## 4584  1
## 4585  1
## 4586  1
## 4587  1
## 4588  1
## 4589  1
## 4590  1
## 4591  1
## 4592  1
## 4593  1
## 4594  1
## 4595  1
## 4596  1
## 4597  1
## 4598  1
## 4599  1
## 4600  1
## 4601  1
## 4602  1
## 4603  1
## 4604  1
## 4605  1
## 4606  1
## 4607  1
## 4608  1
## 4609  1
## 4610  1
## 4611  1
## 4612  1
## 4613  1
## 4614  1
## 4615  1
## 4616  1
## 4617  1
## 4618  1
## 4619  1
## 4620  1
## 4621  1
## 4622  1
## 4623  1
## 4624  1
## 4625  1
## 4626  1
## 4627  1
## 4628  1
## 4629  1
## 4630  1
## 4631  1
## 4632  1
## 4633  1
## 4634  1
## 4635  1
## 4636  1
## 4637  1
## 4638  1
## 4639  1
## 4640  1
## 4641  1
## 4642  1
## 4643  1
## 4644  1
## 4645  1
## 4646  1
## 4647  1
## 4648  1
## 4649  1
## 4650  1
## 4651  1
## 4652  1
## 4653  1
## 4654  1
## 4655  1
## 4656  1
## 4657  1
## 4658  1
## 4659  1
## 4660  1
## 4661  1
## 4662  1
## 4663  1
## 4664  1
## 4665  1
## 4666  1
## 4667  1
## 4668  1
## 4669  1
## 4670  1
## 4671  1
## 4672  1
## 4673  1
## 4674  1
## 4675  1
## 4676  1
## 4677  1
## 4678  1
## 4679  1
## 4680  1
## 4681  1
## 4682  1
## 4683  1
## 4684  1
## 4685  1
## 4686  1
## 4687  1
## 4688  1
## 4689  1
## 4690  1
## 4691  1
## 4692  1
## 4693  1
## 4694  1
## 4695  1
## 4696  1
## 4697  1
## 4698  1
## 4699  1
## 4700  1
## 4701  1
## 4702  1
## 4703  1
## 4704  1
## 4705  1
## 4706  1
## 4707  1
## 4708  1
## 4709  1
## 4710  1
## 4711  1
## 4712  1
## 4713  1
## 4714  1
## 4715  1
## 4716  1
## 4717  1
## 4718  1
## 4719  1
## 4720  1
## 4721  1
## 4722  1
## 4723  1
## 4724  1
## 4725  1
## 4726  1
## 4727  1
## 4728  1
## 4729  1
## 4730  1
## 4731  1
## 4732  1
## 4733  1
## 4734  1
## 4735  1
## 4736  1
## 4737  1
## 4738  1
## 4739  1
## 4740  1
## 4741  1
## 4742  1
## 4743  1
## 4744  1
## 4745  1
## 4746  1
## 4747  1
## 4748  1
## 4749  1
## 4750  1
## 4751  1
## 4752  1
## 4753  1
## 4754  1
## 4755  1
## 4756  1
## 4757  1
## 4758  1
## 4759  1
## 4760  1
## 4761  1
## 4762  1
## 4763  1
## 4764  1
## 4765  1
## 4766  1
## 4767  1
## 4768  1
## 4769  1
## 4770  1
## 4771  1
## 4772  1
## 4773  1
## 4774  1
## 4775  1
## 4776  1
## 4777  1
## 4778  1
## 4779  1
## 4780  1
## 4781  1
## 4782  1
## 4783  1
## 4784  1
## 4785  1
## 4786  1
## 4787  1
## 4788  1
## 4789  1
## 4790  1
## 4791  1
## 4792  1
## 4793  1
## 4794  1
## 4795  1
## 4796  1
## 4797  1
## 4798  1
## 4799  1
## 4800  1
## 4801  1
## 4802  1
## 4803  1
## 4804  1
## 4805  1
## 4806  1
## 4807  1
## 4808  1
## 4809  1
## 4810  1
## 4811  1
## 4812  1
## 4813  1
## 4814  1
## 4815  1
## 4816  1
## 4817  1
## 4818  1
## 4819  1
## 4820  1
## 4821  1
## 4822  1
## 4823  1
## 4824  1
## 4825  1
## 4826  1
## 4827  1
## 4828  1
## 4829  1
## 4830  1
## 4831  1
## 4832  1
## 4833  1
## 4834  1
## 4835  1
## 4836  1
## 4837  1
## 4838  1
## 4839  1
## 4840  1
## 4841  1
## 4842  1
## 4843  1
## 4844  1
## 4845  1
## 4846  1
## 4847  1
## 4848  1
## 4849  1
## 4850  1
## 4851  1
## 4852  1
## 4853  1
## 4854  1
## 4855  1
## 4856  1
## 4857  1
## 4858  1
## 4859  1
## 4860  1
## 4861  1
## 4862  1
## 4863  1
## 4864  1
## 4865  1
## 4866  1
## 4867  1
## 4868  1
## 4869  1
## 4870  1
## 4871  1
## 4872  1
## 4873  1
## 4874  1
## 4875  1
## 4876  1
## 4877  1
## 4878  1
## 4879  1
## 4880  1
## 4881  1
## 4882  1
## 4883  1
## 4884  1
## 4885  1
## 4886  1
## 4887  1
## 4888  1
## 4889  1
## 4890  1
## 4891  1
## 4892  1
## 4893  1
## 4894  1
## 4895  1
## 4896  1
## 4897  1
## 4898  1
## 4899  1
## 4900  1
## 4901  1
## 4902  1
## 4903  1
## 4904  1
## 4905  1
## 4906  1
## 4907  1
## 4908  1
## 4909  1
## 4910  1
## 4911  1
## 4912  1
## 4913  1
## 4914  1
## 4915  1
## 4916  1
## 4917  1
## 4918  1
## 4919  1
## 4920  1
## 4921  1
## 4922  1
## 4923  1
## 4924  1
## 4925  1
## 4926  1
## 4927  1
## 4928  1
## 4929  1
## 4930  1
## 4931  1
## 4932  1
## 4933  1
## 4934  1
## 4935  1
## 4936  1
## 4937  1
## 4938  1
## 4939  1
## 4940  1
## 4941  1
## 4942  1
## 4943  1
## 4944  1
## 4945  1
## 4946  1
## 4947  1
## 4948  1
## 4949  1
## 4950  1
## 4951  1
## 4952  1
## 4953  1
## 4954  1
## 4955  1
## 4956  1
## 4957  1
## 4958  1
## 4959  1
## 4960  1
## 4961  1
## 4962  1
## 4963  1
## 4964  1
## 4965  1
## 4966  1
## 4967  1
## 4968  1
## 4969  1
## 4970  1
## 4971  1
## 4972  1
## 4973  1
## 4974  1
## 4975  1
## 4976  1
## 4977  1
## 4978  1
## 4979  1
## 4980  1
## 4981  1
## 4982  1
## 4983  1
## 4984  1
## 4985  1
## 4986  1
## 4987  1
## 4988  1
## 4989  1
## 4990  1
## 4991  1
## 4992  1
## 4993  1
## 4994  1
## 4995  1
## 4996  1
## 4997  1
## 4998  1
## 4999  1
## 5000  1
## 5001  1
## 5002  1
## 5003  1
## 5004  1
## 5005  1
## 5006  1
## 5007  1
## 5008  1
## 5009  1
## 5010  1
## 5011  1
## 5012  1
## 5013  1
## 5014  1
## 5015  1
## 5016  1
## 5017  1
## 5018  1
## 5019  1
## 5020  1
## 5021  1
## 5022  1
## 5023  1
## 5024  1
## 5025  1
## 5026  1
## 5027  1
## 5028  1
## 5029  1
## 5030  1
## 5031  1
## 5032  1
## 5033  1
## 5034  1
## 5035  1
## 5036  1
## 5037  1
## 5038  1
## 5039  1
## 5040  1
## 5041  1
## 5042  1
## 5043  1
## 5044  1
## 5045  1
## 5046  1
## 5047  1
## 5048  1
## 5049  1
## 5050  1
## 5051  1
## 5052  1
## 5053  1
## 5054  1
## 5055  1
## 5056  1
## 5057  1
## 5058  1
## 5059  1
## 5060  1
## 5061  1
## 5062  1
## 5063  1
## 5064  1
## 5065  1
## 5066  1
## 5067  1
## 5068  1
## 5069  1
## 5070  1
## 5071  1
## 5072  1
## 5073  1
## 5074  1
## 5075  1
## 5076  1
## 5077  1
## 5078  1
## 5079  1
## 5080  1
## 5081  1
## 5082  1
## 5083  1
## 5084  1
## 5085  1
## 5086  1
## 5087  1
## 5088  1
## 5089  1
## 5090  1
## 5091  1
## 5092  1
## 5093  1
## 5094  1
## 5095  1
## 5096  1
## 5097  1
## 5098  1
## 5099  1
## 5100  1
## 5101  1
## 5102  1
## 5103  1
## 5104  1
## 5105  1
## 5106  1
## 5107  1
## 5108  1
## 5109  1
## 5110  1
## 5111  1
## 5112  1
## 5113  1
## 5114  1
## 5115  1
## 5116  1
## 5117  1
## 5118  1
## 5119  1
## 5120  1
## 5121  1
## 5122  1
## 5123  1
## 5124  1
## 5125  1
## 5126  1
## 5127  1
## 5128  1
## 5129  1
## 5130  1
## 5131  1
## 5132  1
## 5133  1
## 5134  1
## 5135  1
## 5136  1
## 5137  1
## 5138  1
## 5139  1
## 5140  1
## 5141  1
## 5142  1
## 5143  1
## 5144  1
## 5145  1
## 5146  1
## 5147  1
## 5148  1
## 5149  1
## 5150  1
## 5151  1
## 5152  1
## 5153  1
## 5154  1
## 5155  1
## 5156  1
## 5157  1
## 5158  1
## 5159  1
## 5160  1
## 5161  1
## 5162  1
## 5163  1
## 5164  1
## 5165  1
## 5166  1
## 5167  1
## 5168  1
## 5169  1
## 5170  1
## 5171  1
## 5172  1
## 5173  1
## 5174  1
## 5175  1
## 5176  1
## 5177  1
## 5178  1
## 5179  1
## 5180  1
## 5181  1
## 5182  1
## 5183  1
## 5184  1
## 5185  1
## 5186  1
## 5187  1
## 5188  1
## 5189  1
## 5190  1
## 5191  1
## 5192  1
## 5193  1
## 5194  1
## 5195  1
## 5196  1
## 5197  1
## 5198  1
## 5199  1
## 5200  1
## 5201  1
## 5202  1
## 5203  1
## 5204  1
## 5205  1
## 5206  1
## 5207  1
## 5208  1
## 5209  1
## 5210  1
## 5211  1
## 5212  1
## 5213  1
## 5214  1
## 5215  1
## 5216  1
## 5217  1
## 5218  1
## 5219  1
## 5220  1
## 5221  1
## 5222  1
## 5223  1
## 5224  1
## 5225  1
## 5226  1
## 5227  1
## 5228  1
## 5229  1
## 5230  1
## 5231  1
## 5232  1
## 5233  1
## 5234  1
## 5235  1
## 5236  1
## 5237  1
## 5238  1
## 5239  1
## 5240  1
## 5241  1
## 5242  1
## 5243  1
## 5244  1
## 5245  1
## 5246  1
## 5247  1
## 5248  1
## 5249  1
## 5250  1
## 5251  1
## 5252  1
## 5253  1
## 5254  1
## 5255  1
## 5256  1
## 5257  1
## 5258  1
## 5259  1
## 5260  1
## 5261  1
## 5262  1
## 5263  1
## 5264  1
## 5265  1
## 5266  1
## 5267  1
## 5268  1
## 5269  1
## 5270  1
## 5271  1
## 5272  1
## 5273  1
## 5274  1
## 5275  1
## 5276  1
## 5277  1
## 5278  1
## 5279  1
## 5280  1
## 5281  1
## 5282  1
## 5283  1
## 5284  1
## 5285  1
## 5286  1
## 5287  1
## 5288  1
## 5289  1
## 5290  1
## 5291  1
## 5292  1
## 5293  1
## 5294  1
## 5295  1
## 5296  1
## 5297  1
## 5298  1
## 5299  1
## 5300  1
## 5301  1
## 5302  1
## 5303  1
## 5304  1
## 5305  1
## 5306  1
## 5307  1
## 5308  1
## 5309  1
## 5310  1
## 5311  1
## 5312  1
## 5313  1
## 5314  1
## 5315  1
## 5316  1
## 5317  1
## 5318  1
## 5319  1
## 5320  1
## 5321  1
## 5322  1
## 5323  1
## 5324  1
## 5325  1
## 5326  1
## 5327  1
## 5328  1
## 5329  1
## 5330  1
## 5331  1
## 5332  1
## 5333  1
## 5334  1
## 5335  1
## 5336  1
## 5337  1
## 5338  1
## 5339  1
## 5340  1
## 5341  1
## 5342  1
## 5343  1
## 5344  1
## 5345  1
## 5346  1
## 5347  1
## 5348  1
## 5349  1
## 5350  1
## 5351  1
## 5352  1
## 5353  1
## 5354  1
## 5355  1
## 5356  1
## 5357  1
## 5358  1
## 5359  1
## 5360  1
## 5361  1
## 5362  1
## 5363  1
## 5364  1
## 5365  1
## 5366  1
## 5367  1
## 5368  1
## 5369  1
## 5370  1
## 5371  1
## 5372  1
## 5373  1
## 5374  1
## 5375  1
## 5376  1
## 5377  1
## 5378  1
## 5379  1
## 5380  1
## 5381  1
## 5382  1
## 5383  1
## 5384  1
## 5385  1
## 5386  1
## 5387  1
## 5388  1
## 5389  1
## 5390  1
## 5391  1
## 5392  1
## 5393  1
## 5394  1
## 5395  1
## 5396  1
## 5397  1
## 5398  1
## 5399  1
## 5400  1
## 5401  1
## 5402  1
## 5403  1
## 5404  1
## 5405  1
## 5406  1
## 5407  1
## 5408  1
## 5409  1
## 5410  1
## 5411  1
## 5412  1
## 5413  1
## 5414  1
## 5415  1
## 5416  1
## 5417  1
## 5418  1
## 5419  1
## 5420  1
## 5421  1
## 5422  1
## 5423  1
## 5424  1
## 5425  1
## 5426  1
## 5427  1
## 5428  1
## 5429  1
## 5430  1
## 5431  1
## 5432  1
## 5433  1
## 5434  1
## 5435  1
## 5436  1
## 5437  1
## 5438  1
## 5439  1
## 5440  1
## 5441  1
## 5442  1
## 5443  1
## 5444  1
## 5445  1
## 5446  1
## 5447  1
## 5448  1
## 5449  1
## 5450  1
## 5451  1
## 5452  1
## 5453  1
## 5454  1
## 5455  1
## 5456  1
## 5457  1
## 5458  1
## 5459  1
## 5460  1
## 5461  1
## 5462  1
## 5463  1
## 5464  1
## 5465  1
## 5466  1
## 5467  1
## 5468  1
## 5469  1
## 5470  1
## 5471  1
## 5472  1
## 5473  1
## 5474  1
## 5475  1
## 5476  1
## 5477  1
## 5478  1
## 5479  1
## 5480  1
## 5481  1
## 5482  1
## 5483  1
## 5484  1
## 5485  1
## 5486  1
## 5487  1
## 5488  1
## 5489  1
## 5490  1
## 5491  1
## 5492  1
## 5493  1
## 5494  1
## 5495  1
## 5496  1
## 5497  1
## 5498  1
## 5499  1
## 5500  1
## 5501  1
## 5502  1
## 5503  1
## 5504  1
## 5505  1
## 5506  1
## 5507  1
## 5508  1
## 5509  1
## 5510  1
## 5511  1
## 5512  1
## 5513  1
## 5514  1
## 5515  1
## 5516  1
## 5517  1
## 5518  1
## 5519  1
## 5520  1
## 5521  1
## 5522  1
## 5523  1
## 5524  1
## 5525  1
## 5526  1
## 5527  1
## 5528  1
## 5529  1
## 5530  1
## 5531  1
## 5532  1
## 5533  1
## 5534  1
## 5535  1
## 5536  1
## 5537  1
## 5538  1
## 5539  1
## 5540  1
## 5541  1
## 5542  1
## 5543  1
## 5544  1
## 5545  1
## 5546  1
## 5547  1
## 5548  1
## 5549  1
## 5550  1
## 5551  1
## 5552  1
## 5553  1
## 5554  1
## 5555  1
## 5556  1
## 5557  1
## 5558  1
## 5559  1
## 5560  1
## 5561  1
## 5562  1
## 5563  1
## 5564  1
## 5565  1
## 5566  1
## 5567  1
## 5568  1
## 5569  1
## 5570  1
## 5571  1
## 5572  1
## 5573  1
## 5574  1
## 5575  1
## 5576  1
## 5577  1
## 5578  1
## 5579  1
## 5580  1
## 5581  1
## 5582  1
## 5583  1
## 5584  1
## 5585  1
## 5586  1
## 5587  1
## 5588  1
## 5589  1
## 5590  1
## 5591  1
## 5592  1
## 5593  1
## 5594  1
## 5595  1
## 5596  1
## 5597  1
## 5598  1
## 5599  1
## 5600  1
## 5601  1
## 5602  1
## 5603  1
## 5604  1
## 5605  1
## 5606  1
## 5607  1
## 5608  1
## 5609  1
## 5610  1
## 5611  1
## 5612  1
## 5613  1
## 5614  1
## 5615  1
## 5616  1
## 5617  1
## 5618  1
## 5619  1
## 5620  1
## 5621  1
## 5622  1
## 5623  1
## 5624  1
## 5625  1
## 5626  1
## 5627  1
## 5628  1
## 5629  1
## 5630  1
## 5631  1
## 5632  1
## 5633  1
## 5634  1
## 5635  1
## 5636  1
## 5637  1
## 5638  1
## 5639  1
## 5640  1
## 5641  1
## 5642  1
## 5643  1
## 5644  1
## 5645  1
## 5646  1
## 5647  1
## 5648  1
## 5649  1
## 5650  1
## 5651  1
## 5652  1
## 5653  1
## 5654  1
## 5655  1
## 5656  1
## 5657  1
## 5658  1
## 5659  1
## 5660  1
## 5661  1
## 5662  1
## 5663  1
## 5664  1
## 5665  1
## 5666  1
## 5667  1
## 5668  1
## 5669  1
## 5670  1
## 5671  1
## 5672  1
## 5673  1
## 5674  1
## 5675  1
## 5676  1
## 5677  1
## 5678  1
## 5679  1
## 5680  1
## 5681  1
## 5682  1
## 5683  1
## 5684  1
## 5685  1
## 5686  1
## 5687  1
## 5688  1
## 5689  1
## 5690  1
## 5691  1
## 5692  1
## 5693  1
## 5694  1
## 5695  1
## 5696  1
## 5697  1
## 5698  1
## 5699  1
## 5700  1
## 5701  1
## 5702  1
## 5703  1
## 5704  1
## 5705  1
## 5706  1
## 5707  1
## 5708  1
## 5709  1
## 5710  1
## 5711  1
## 5712  1
## 5713  1
## 5714  1
## 5715  1
## 5716  1
## 5717  1
## 5718  1
## 5719  1
## 5720  1
## 5721  1
## 5722  1
## 5723  1
## 5724  1
## 5725  1
## 5726  1
## 5727  1
## 5728  1
## 5729  1
## 5730  1
## 5731  1
## 5732  1
## 5733  1
## 5734  1
## 5735  1
## 5736  1
## 5737  1
## 5738  1
## 5739  1
## 5740  1
## 5741  1
## 5742  1
## 5743  1
## 5744  1
## 5745  1
## 5746  1
## 5747  1
## 5748  1
## 5749  1
## 5750  1
## 5751  1
## 5752  1
## 5753  1
## 5754  1
## 5755  1
## 5756  1
## 5757  1
## 5758  1
## 5759  1
## 5760  1
## 5761  1
## 5762  1
## 5763  1
## 5764  1
## 5765  1
## 5766  1
## 5767  1
## 5768  1
## 5769  1
## 5770  1
## 5771  1
## 5772  1
## 5773  1
## 5774  1
## 5775  1
## 5776  1
## 5777  1
## 5778  1
## 5779  1
## 5780  1
## 5781  1
## 5782  1
## 5783  1
## 5784  1
## 5785  1
## 5786  1
## 5787  1
## 5788  1
## 5789  1
## 5790  1
## 5791  1
## 5792  1
## 5793  1
## 5794  1
## 5795  1
## 5796  1
## 5797  1
## 5798  1
## 5799  1
## 5800  1
## 5801  1
## 5802  1
## 5803  1
## 5804  1
## 5805  1
## 5806  1
## 5807  1
## 5808  1
## 5809  1
## 5810  1
## 5811  1
## 5812  1
## 5813  1
## 5814  1
## 5815  1
## 5816  1
## 5817  1
## 5818  1
## 5819  1
## 5820  1
## 5821  1
## 5822  1
## 5823  1
## 5824  1
## 5825  1
## 5826  1
## 5827  1
## 5828  1
## 5829  1
## 5830  1
## 5831  1
## 5832  1
## 5833  1
## 5834  1
## 5835  1
## 5836  1
## 5837  1
## 5838  1
## 5839  1
## 5840  1
## 5841  1
## 5842  1
## 5843  1
## 5844  1
## 5845  1
## 5846  1
## 5847  1
## 5848  1
## 5849  1
## 5850  1
## 5851  1
## 5852  1
## 5853  1
## 5854  1
## 5855  1
## 5856  1
## 5857  1
## 5858  1
## 5859  1
## 5860  1
## 5861  1
## 5862  1
## 5863  1
## 5864  1
## 5865  1
## 5866  1
## 5867  1
## 5868  1
## 5869  1
## 5870  1
## 5871  1
## 5872  1
## 5873  1
## 5874  1
## 5875  1
## 5876  1
## 5877  1
## 5878  1
## 5879  1
## 5880  1
## 5881  1
## 5882  1
## 5883  1
## 5884  1
## 5885  1
## 5886  1
## 5887  1
## 5888  1
## 5889  1
## 5890  1
## 5891  1
## 5892  1
## 5893  1
## 5894  1
## 5895  1
## 5896  1
## 5897  1
## 5898  1
## 5899  1
## 5900  1
## 5901  1
## 5902  1
## 5903  1
## 5904  1
## 5905  1
## 5906  1
## 5907  1
## 5908  1
## 5909  1
## 5910  1
## 5911  1
## 5912  1
## 5913  1
## 5914  1
## 5915  1
## 5916  1
## 5917  1
## 5918  1
## 5919  1
## 5920  1
## 5921  1
## 5922  1
## 5923  1
## 5924  1
## 5925  1
## 5926  1
## 5927  1
## 5928  1
## 5929  1
## 5930  1
## 5931  1
## 5932  1
## 5933  1
## 5934  1
## 5935  1
## 5936  1
## 5937  1
## 5938  1
## 5939  1
## 5940  1
## 5941  1
## 5942  1
## 5943  1
## 5944  1
## 5945  1
## 5946  1
## 5947  1
## 5948  1
## 5949  1
## 5950  1
## 5951  1
## 5952  1
## 5953  1
## 5954  1
## 5955  1
## 5956  1
## 5957  1
## 5958  1
## 5959  1
## 5960  1
## 5961  1
## 5962  1
## 5963  1
## 5964  1
## 5965  1
## 5966  1
## 5967  1
## 5968  1
## 5969  1
## 5970  1
## 5971  1
## 5972  1
## 5973  1
## 5974  1
## 5975  1
## 5976  1
## 5977  1
## 5978  1
## 5979  1
## 5980  1
## 5981  1
## 5982  1
## 5983  1
## 5984  1
## 5985  1
## 5986  1
## 5987  1
## 5988  1
## 5989  1
## 5990  1
## 5991  1
## 5992  1
## 5993  1
## 5994  1
## 5995  1
## 5996  1
## 5997  1
## 5998  1
## 5999  1
## 6000  1
## 6001  1
## 6002  1
## 6003  1
## 6004  1
## 6005  1
## 6006  1
## 6007  1
## 6008  1
## 6009  1
## 6010  1
## 6011  1
## 6012  1
## 6013  1
## 6014  1
## 6015  1
## 6016  1
## 6017  1
## 6018  1
## 6019  1
## 6020  1
## 6021  1
## 6022  1
## 6023  1
## 6024  1
## 6025  1
## 6026  1
## 6027  1
## 6028  1
## 6029  1
## 6030  1
## 6031  1
## 6032  1
## 6033  1
## 6034  1
## 6035  1
## 6036  1
## 6037  1
## 6038  1
## 6039  1
## 6040  1
## 6041  1
## 6042  1
## 6043  1
## 6044  1
## 6045  1
## 6046  1
## 6047  1
## 6048  1
## 6049  1
## 6050  1
## 6051  1
## 6052  1
## 6053  1
## 6054  1
## 6055  1
## 6056  1
## 6057  1
## 6058  1
## 6059  1
## 6060  1
## 6061  1
## 6062  1
## 6063  1
## 6064  1
## 6065  1
## 6066  1
## 6067  1
## 6068  1
## 6069  1
## 6070  1
## 6071  1
## 6072  1
## 6073  1
## 6074  1
## 6075  1
## 6076  1
## 6077  1
## 6078  1
## 6079  1
## 6080  1
## 6081  1
## 6082  1
## 6083  1
## 6084  1
## 6085  1
## 6086  1
## 6087  1
## 6088  1
## 6089  1
## 6090  1
## 6091  1
## 6092  1
## 6093  1
## 6094  1
## 6095  1
## 6096  1
## 6097  1
## 6098  1
## 6099  1
## 6100  1
## 6101  1
## 6102  1
## 6103  1
## 6104  1
## 6105  1
## 6106  1
## 6107  1
## 6108  1
## 6109  1
## 6110  1
## 6111  1
## 6112  1
## 6113  1
## 6114  1
## 6115  1
## 6116  1
## 6117  1
## 6118  1
## 6119  1
## 6120  1
## 6121  1
## 6122  1
## 6123  1
## 6124  1
## 6125  1
## 6126  1
## 6127  1
## 6128  1
## 6129  1
## 6130  1
## 6131  1
## 6132  1
## 6133  1
## 6134  1
## 6135  1
## 6136  1
## 6137  1
## 6138  1
## 6139  1
## 6140  1
## 6141  1
## 6142  1
## 6143  1
## 6144  1
## 6145  1
## 6146  1
## 6147  1
## 6148  1
## 6149  1
## 6150  1
## 6151  1
## 6152  1
## 6153  1
## 6154  1
## 6155  1
## 6156  1
## 6157  1
## 6158  1
## 6159  1
## 6160  1
## 6161  1
## 6162  1
## 6163  1
## 6164  1
## 6165  1
## 6166  1
## 6167  1
## 6168  1
## 6169  1
## 6170  1
## 6171  1
## 6172  1
## 6173  1
## 6174  1
## 6175  1
## 6176  1
## 6177  1
## 6178  1
## 6179  1
## 6180  1
## 6181  1
## 6182  1
## 6183  1
## 6184  1
## 6185  1
## 6186  1
## 6187  1
## 6188  1
## 6189  1
## 6190  1
## 6191  1
## 6192  1
## 6193  1
## 6194  1
## 6195  1
## 6196  1
## 6197  1
## 6198  1
## 6199  1
## 6200  1
## 6201  1
## 6202  1
## 6203  1
## 6204  1
## 6205  1
## 6206  1
## 6207  1
## 6208  1
## 6209  1
## 6210  1
## 6211  1
## 6212  1
## 6213  1
## 6214  1
## 6215  1
## 6216  1
## 6217  1
## 6218  1
## 6219  1
## 6220  1
## 6221  1
## 6222  1
## 6223  1
## 6224  1
## 6225  1
## 6226  1
## 6227  1
## 6228  1
## 6229  1
## 6230  1
## 6231  1
## 6232  1
## 6233  1
## 6234  1
## 6235  1
## 6236  1
## 6237  1
## 6238  1
## 6239  1
## 6240  1
## 6241  1
## 6242  1
## 6243  1
## 6244  1
## 6245  1
## 6246  1
## 6247  1
## 6248  1
## 6249  1
## 6250  1
## 6251  1
## 6252  1
## 6253  1
## 6254  1
## 6255  1
## 6256  1
## 6257  1
## 6258  1
## 6259  1
## 6260  1
## 6261  1
## 6262  1
## 6263  1
## 6264  1
## 6265  1
## 6266  1
## 6267  1
## 6268  1
## 6269  1
## 6270  1
## 6271  1
## 6272  1
## 6273  1
## 6274  1
## 6275  1
## 6276  1
## 6277  1
## 6278  1
## 6279  1
## 6280  1
## 6281  1
## 6282  1
## 6283  1
## 6284  1
## 6285  1
## 6286  1
## 6287  1
## 6288  1
## 6289  1
## 6290  1
## 6291  1
## 6292  1
## 6293  1
## 6294  1
## 6295  1
## 6296  1
## 6297  1
## 6298  1
## 6299  1
## 6300  1
## 6301  1
## 6302  1
## 6303  1
## 6304  1
## 6305  1
## 6306  1
## 6307  1
## 6308  1
## 6309  1
## 6310  1
## 6311  1
## 6312  1
## 6313  1
## 6314  1
## 6315  1
## 6316  1
## 6317  1
## 6318  1
## 6319  1
## 6320  1
## 6321  1
## 6322  1
## 6323  1
## 6324  1
## 6325  1
## 6326  1
## 6327  1
## 6328  1
## 6329  1
## 6330  1
## 6331  1
## 6332  1
## 6333  1
## 6334  1
## 6335  1
## 6336  1
## 6337  1
## 6338  1
## 6339  1
## 6340  1
## 6341  1
## 6342  1
## 6343  1
## 6344  1
## 6345  1
## 6346  1
## 6347  1
## 6348  1
## 6349  1
## 6350  1
## 6351  1
## 6352  1
## 6353  1
## 6354  1
## 6355  1
## 6356  1
## 6357  1
## 6358  1
## 6359  1
## 6360  1
## 6361  1
## 6362  1
## 6363  1
## 6364  1
## 6365  1
## 6366  1
## 6367  1
## 6368  1
## 6369  1
## 6370  1
## 6371  1
## 6372  1
## 6373  1
## 6374  1
## 6375  1
## 6376  1
## 6377  1
## 6378  1
## 6379  1
## 6380  1
## 6381  1
## 6382  1
## 6383  1
## 6384  1
## 6385  1
## 6386  1
## 6387  1
## 6388  1
## 6389  1
## 6390  1
## 6391  1
## 6392  1
## 6393  1
## 6394  1
## 6395  1
## 6396  1
## 6397  1
## 6398  1
## 6399  1
## 6400  1
## 6401  1
## 6402  1
## 6403  1
## 6404  1
## 6405  1
## 6406  1
## 6407  1
## 6408  1
## 6409  1
## 6410  1
## 6411  1
## 6412  1
## 6413  1
## 6414  1
## 6415  1
## 6416  1
## 6417  1
## 6418  1
## 6419  1
## 6420  1
## 6421  1
## 6422  1
## 6423  1
## 6424  1
## 6425  1
## 6426  1
## 6427  1
## 6428  1
## 6429  1
## 6430  1
## 6431  1
## 6432  1
## 6433  1
## 6434  1
## 6435  1
## 6436  1
## 6437  1
## 6438  1
## 6439  1
## 6440  1
## 6441  1
## 6442  1
## 6443  1
## 6444  1
## 6445  1
## 6446  1
## 6447  1
## 6448  1
## 6449  1
## 6450  1
## 6451  1
## 6452  1
## 6453  1
## 6454  1
## 6455  1
## 6456  1
## 6457  1
## 6458  1
## 6459  1
## 6460  1
## 6461  1
## 6462  1
## 6463  1
## 6464  1
## 6465  1
## 6466  1
## 6467  1
## 6468  1
## 6469  1
## 6470  1
## 6471  1
## 6472  1
## 6473  1
## 6474  1
## 6475  1
## 6476  1
## 6477  1
## 6478  1
## 6479  1
## 6480  1
## 6481  1
## 6482  1
## 6483  1
## 6484  1
## 6485  1
## 6486  1
## 6487  1
## 6488  1
## 6489  1
## 6490  1
## 6491  1
## 6492  1
## 6493  1
## 6494  1
## 6495  1
## 6496  1
## 6497  1
## 6498  1
## 6499  1
## 6500  1
## 6501  1
## 6502  1
## 6503  1
## 6504  1
## 6505  1
## 6506  1
## 6507  1
## 6508  1
## 6509  1
## 6510  1
## 6511  1
## 6512  1
## 6513  1
## 6514  1
## 6515  1
## 6516  1
## 6517  1
## 6518  1
## 6519  1
## 6520  1
## 6521  1
## 6522  1
## 6523  1
## 6524  1
## 6525  1
## 6526  1
## 6527  1
## 6528  1
## 6529  1
## 6530  1
## 6531  1
## 6532  1
## 6533  1
## 6534  1
## 6535  1
## 6536  1
## 6537  1
## 6538  1
## 6539  1
## 6540  1
## 6541  1
## 6542  1
## 6543  1
## 6544  1
## 6545  1
## 6546  1
## 6547  1
## 6548  1
## 6549  1
## 6550  1
## 6551  1
## 6552  1
## 6553  1
## 6554  1
## 6555  1
## 6556  1
## 6557  1
## 6558  1
## 6559  1
## 6560  1
## 6561  1
## 6562  1
## 6563  1
## 6564  1
## 6565  1
## 6566  1
## 6567  1
## 6568  1
## 6569  1
## 6570  1
## 6571  1
## 6572  1
## 6573  1
## 6574  1
## 6575  1
## 6576  1
## 6577  1
## 6578  1
## 6579  1
## 6580  1
## 6581  1
## 6582  1
## 6583  1
## 6584  1
## 6585  1
## 6586  1
## 6587  1
## 6588  1
## 6589  1
## 6590  1
## 6591  1
## 6592  1
## 6593  1
## 6594  1
## 6595  1
## 6596  1
## 6597  1
## 6598  1
## 6599  1
## 6600  1
## 6601  1
## 6602  1
## 6603  1
## 6604  1
## 6605  1
## 6606  1
## 6607  1
## 6608  1
## 6609  1
## 6610  1
## 6611  1
## 6612  1
## 6613  1
## 6614  1
## 6615  1
## 6616  1
## 6617  1
## 6618  1
## 6619  1
## 6620  1
## 6621  1
## 6622  1
## 6623  1
## 6624  1
## 6625  1
## 6626  1
## 6627  1
## 6628  1
## 6629  1
## 6630  1
## 6631  1
## 6632  1
## 6633  1
## 6634  1
## 6635  1
## 6636  1
## 6637  1
## 6638  1
## 6639  1
## 6640  1
## 6641  1
## 6642  1
## 6643  1
## 6644  1
## 6645  1
## 6646  1
## 6647  1
## 6648  1
## 6649  1
## 6650  1
## 6651  1
## 6652  1
## 6653  1
## 6654  1
## 6655  1
## 6656  1
## 6657  1
## 6658  1
## 6659  1
## 6660  1
## 6661  1
## 6662  1
## 6663  1
## 6664  1
## 6665  1
## 6666  1
## 6667  1
## 6668  1
## 6669  1
## 6670  1
## 6671  1
## 6672  1
## 6673  1
## 6674  1
## 6675  1
## 6676  1
## 6677  1
## 6678  1
## 6679  1
## 6680  1
## 6681  1
## 6682  1
## 6683  1
## 6684  1
## 6685  1
## 6686  1
## 6687  1
## 6688  1
## 6689  1
## 6690  1
## 6691  1
## 6692  1
## 6693  1
## 6694  1
## 6695  1
## 6696  1
## 6697  1
## 6698  1
## 6699  1
## 6700  1
## 6701  1
## 6702  1
## 6703  1
## 6704  1
## 6705  1
## 6706  1
## 6707  1
## 6708  1
## 6709  1
## 6710  1
## 6711  1
## 6712  1
## 6713  1
## 6714  1
## 6715  1
## 6716  1
## 6717  1
## 6718  1
## 6719  1
## 6720  1
## 6721  1
## 6722  1
## 6723  1
## 6724  1
## 6725  1
## 6726  1
## 6727  1
## 6728  1
## 6729  1
## 6730  1
## 6731  1
## 6732  1
## 6733  1
## 6734  1
## 6735  1
## 6736  1
## 6737  1
## 6738  1
## 6739  1
## 6740  1
## 6741  1
## 6742  1
## 6743  1
## 6744  1
## 6745  1
## 6746  1
## 6747  1
## 6748  1
## 6749  1
## 6750  1
## 6751  1
## 6752  1
## 6753  1
## 6754  1
## 6755  1
## 6756  1
## 6757  1
## 6758  1
## 6759  1
## 6760  1
## 6761  1
## 6762  1
## 6763  1
## 6764  1
## 6765  1
## 6766  1
## 6767  1
## 6768  1
## 6769  1
## 6770  1
## 6771  1
## 6772  1
## 6773  1
## 6774  1
## 6775  1
## 6776  1
## 6777  1
## 6778  1
## 6779  1
## 6780  1
## 6781  1
## 6782  1
## 6783  1
## 6784  1
## 6785  1
## 6786  1
## 6787  1
## 6788  1
## 6789  1
## 6790  1
## 6791  1
## 6792  1
## 6793  1
## 6794  1
## 6795  1
## 6796  1
## 6797  1
## 6798  1
## 6799  1
## 6800  1
## 6801  1
## 6802  1
## 6803  1
## 6804  1
## 6805  1
## 6806  1
## 6807  1
## 6808  1
## 6809  1
## 6810  1
## 6811  1
## 6812  1
## 6813  1
## 6814  1
## 6815  1
## 6816  1
## 6817  1
## 6818  1
## 6819  1
## 6820  1
## 6821  1
## 6822  1
## 6823  1
## 6824  1
## 6825  1
## 6826  1
## 6827  1
## 6828  1
## 6829  1
## 6830  1
## 6831  1
## 6832  1
## 6833  1
## 6834  1
## 6835  1
## 6836  1
## 6837  1
## 6838  1
## 6839  1
## 6840  1
## 6841  1
## 6842  1
## 6843  1
## 6844  1
## 6845  1
## 6846  1
## 6847  1
## 6848  1
## 6849  1
## 6850  1
## 6851  1
## 6852  1
## 6853  1
## 6854  1
## 6855  1
## 6856  1
## 6857  1
## 6858  1
## 6859  1
## 6860  1
## 6861  1
## 6862  1
## 6863  1
## 6864  1
## 6865  1
## 6866  1
## 6867  1
## 6868  1
## 6869  1
## 6870  1
## 6871  1
## 6872  1
## 6873  1
## 6874  1
## 6875  1
## 6876  1
## 6877  1
## 6878  1
## 6879  1
## 6880  1
## 6881  1
## 6882  1
## 6883  1
## 6884  1
## 6885  1
## 6886  1
## 6887  1
## 6888  1
## 6889  1
## 6890  1
## 6891  1
## 6892  1
## 6893  1
## 6894  1
## 6895  1
## 6896  1
## 6897  1
## 6898  1
## 6899  1
## 6900  1
## 6901  1
## 6902  1
## 6903  1
## 6904  1
## 6905  1
## 6906  1
## 6907  1
## 6908  1
## 6909  1
## 6910  1
## 6911  1
## 6912  1
## 6913  1
## 6914  1
## 6915  1
## 6916  1
## 6917  1
## 6918  1
## 6919  1
## 6920  1
## 6921  1
## 6922  1
## 6923  1
## 6924  1
## 6925  1
## 6926  1
## 6927  1
## 6928  1
## 6929  1
## 6930  1
## 6931  1
## 6932  1
## 6933  1
## 6934  1
## 6935  1
## 6936  1
## 6937  1
## 6938  1
## 6939  1
## 6940  1
## 6941  1
## 6942  1
## 6943  1
## 6944  1
## 6945  1
## 6946  1
## 6947  1
## 6948  1
## 6949  1
## 6950  1
## 6951  1
## 6952  1
## 6953  1
## 6954  1
## 6955  1
## 6956  1
## 6957  1
## 6958  1
## 6959  1
## 6960  1
## 6961  1
## 6962  1
## 6963  1
## 6964  1
## 6965  1
## 6966  1
## 6967  1
## 6968  1
## 6969  1
## 6970  1
## 6971  1
## 6972  1
## 6973  1
## 6974  1
## 6975  1
## 6976  1
## 6977  1
## 6978  1
## 6979  1
## 6980  1
## 6981  1
## 6982  1
## 6983  1
## 6984  1
## 6985  1
## 6986  1
## 6987  1
## 6988  1
## 6989  1
## 6990  1
## 6991  1
## 6992  1
## 6993  1
## 6994  1
## 6995  1
## 6996  1
## 6997  1
## 6998  1
## 6999  1
## 7000  1
## 7001  1
## 7002  1
## 7003  1
## 7004  1
## 7005  1
## 7006  1
## 7007  1
## 7008  1
## 7009  1
## 7010  1
## 7011  1
## 7012  1
## 7013  1
## 7014  1
## 7015  1
## 7016  1
## 7017  1
## 7018  1
## 7019  1
## 7020  1
## 7021  1
## 7022  1
## 7023  1
## 7024  1
## 7025  1
## 7026  1
## 7027  1
## 7028  1
## 7029  1
## 7030  1
## 7031  1
## 7032  1
## 7033  1
## 7034  1
## 7035  1
## 7036  1
## 7037  1
## 7038  1
## 7039  1
## 7040  1
## 7041  1
## 7042  1
## 7043  1
## 7044  1
## 7045  1
## 7046  1
## 7047  1
## 7048  1
## 7049  1
## 7050  1
## 7051  1
## 7052  1
## 7053  1
## 7054  1
## 7055  1
## 7056  1
## 7057  1
## 7058  1
## 7059  1
## 7060  1
## 7061  1
## 7062  1
## 7063  1
## 7064  1
## 7065  1
## 7066  1
## 7067  1
## 7068  1
## 7069  1
## 7070  1
## 7071  1
## 7072  1
## 7073  1
## 7074  1
## 7075  1
## 7076  1
## 7077  1
## 7078  1
## 7079  1
## 7080  1
## 7081  1
## 7082  1
## 7083  1
## 7084  1
## 7085  1
## 7086  1
## 7087  1
## 7088  1
## 7089  1
## 7090  1
## 7091  1
## 7092  1
## 7093  1
## 7094  1
## 7095  1
## 7096  1
## 7097  1
## 7098  1
## 7099  1
## 7100  1
## 7101  1
## 7102  1
## 7103  1
## 7104  1
## 7105  1
## 7106  1
## 7107  1
## 7108  1
## 7109  1
## 7110  1
## 7111  1
## 7112  1
## 7113  1
## 7114  1
## 7115  1
## 7116  1
## 7117  1
## 7118  1
## 7119  1
## 7120  1
## 7121  1
## 7122  1
## 7123  1
## 7124  1
## 7125  1
## 7126  1
## 7127  1
## 7128  1
## 7129  1
## 7130  1
## 7131  1
## 7132  1
## 7133  1
## 7134  1
## 7135  1
## 7136  1
## 7137  1
## 7138  1
## 7139  1
## 7140  1
## 7141  1
## 7142  1
## 7143  1
## 7144  1
## 7145  1
## 7146  1
## 7147  1
## 7148  1
## 7149  1
## 7150  1
## 7151  1
## 7152  1
## 7153  1
## 7154  1
## 7155  1
## 7156  1
## 7157  1
## 7158  1
## 7159  1
## 7160  1
## 7161  1
## 7162  1
## 7163  1
## 7164  1
## 7165  1
## 7166  1
## 7167  1
## 7168  1
## 7169  1
## 7170  1
## 7171  1
## 7172  1
## 7173  1
## 7174  1
## 7175  1
## 7176  1
## 7177  1
## 7178  1
## 7179  1
## 7180  1
## 7181  1
## 7182  1
## 7183  1
## 7184  1
## 7185  1
## 7186  1
## 7187  1
## 7188  1
## 7189  1
## 7190  1
## 7191  1
## 7192  1
## 7193  1
## 7194  1
## 7195  1
## 7196  1
## 7197  1
## 7198  1
## 7199  1
## 7200  1
## 7201  1
## 7202  1
## 7203  1
## 7204  1
## 7205  1
## 7206  1
## 7207  1
## 7208  1
## 7209  1
## 7210  1
## 7211  1
## 7212  1
## 7213  1
## 7214  1
## 7215  1
## 7216  1
## 7217  1
## 7218  1
## 7219  1
## 7220  1
## 7221  1
## 7222  1
## 7223  1
## 7224  1
## 7225  1
## 7226  1
## 7227  1
## 7228  1
## 7229  1
## 7230  1
## 7231  1
## 7232  1
## 7233  1
## 7234  1
## 7235  1
## 7236  1
## 7237  1
## 7238  1
## 7239  1
## 7240  1
## 7241  1
## 7242  1
## 7243  1
## 7244  1
## 7245  1
## 7246  1
## 7247  1
## 7248  1
## 7249  1
## 7250  1
## 7251  1
## 7252  1
## 7253  1
## 7254  1
## 7255  1
## 7256  1
## 7257  1
## 7258  1
## 7259  1
## 7260  1
## 7261  1
## 7262  1
## 7263  1
## 7264  1
## 7265  1
## 7266  1
## 7267  1
## 7268  1
## 7269  1
## 7270  1
## 7271  1
## 7272  1
## 7273  1
## 7274  1
## 7275  1
## 7276  1
## 7277  1
## 7278  1
## 7279  1
## 7280  1
## 7281  1
## 7282  1
## 7283  1
## 7284  1
## 7285  1
## 7286  1
## 7287  1
## 7288  1
## 7289  1
## 7290  1
## 7291  1
## 7292  1
## 7293  1
## 7294  1
## 7295  1
## 7296  1
## 7297  1
## 7298  1
## 7299  1
## 7300  1
## 7301  1
## 7302  1
## 7303  1
## 7304  1
## 7305  1
## 7306  1
## 7307  1
## 7308  1
## 7309  1
## 7310  1
## 7311  1
## 7312  1
## 7313  1
## 7314  1
## 7315  1
## 7316  1
## 7317  1
## 7318  1
## 7319  1
## 7320  1
## 7321  1
## 7322  1
## 7323  1
## 7324  1
## 7325  1
## 7326  1
## 7327  1
## 7328  1
## 7329  1
## 7330  1
## 7331  1
## 7332  1
## 7333  1
## 7334  1
## 7335  1
## 7336  1
## 7337  1
## 7338  1
## 7339  1
## 7340  1
## 7341  1
## 7342  1
## 7343  1
## 7344  1
## 7345  1
## 7346  1
## 7347  1
## 7348  1
## 7349  1
## 7350  1
## 7351  1
## 7352  1
## 7353  1
## 7354  1
## 7355  1
## 7356  1
## 7357  1
## 7358  1
## 7359  1
## 7360  1
## 7361  1
## 7362  1
## 7363  1
## 7364  1
## 7365  1
## 7366  1
## 7367  1
## 7368  1
## 7369  1
## 7370  1
## 7371  1
## 7372  1
## 7373  1
## 7374  1
## 7375  1
## 7376  1
## 7377  1
## 7378  1
## 7379  1
## 7380  1
## 7381  1
## 7382  1
## 7383  1
## 7384  1
## 7385  1
## 7386  1
## 7387  1
## 7388  1
## 7389  1
## 7390  1
## 7391  1
## 7392  1
## 7393  1
## 7394  1
## 7395  1
## 7396  1
## 7397  1
## 7398  1
## 7399  1
## 7400  1
## 7401  1
## 7402  1
## 7403  1
## 7404  1
## 7405  1
## 7406  1
## 7407  1
## 7408  1
## 7409  1
## 7410  1
## 7411  1
## 7412  1
## 7413  1
## 7414  1
## 7415  1
## 7416  1
## 7417  1
## 7418  1
## 7419  1
## 7420  1
## 7421  1
## 7422  1
## 7423  1
## 7424  1
## 7425  1
## 7426  1
## 7427  1
## 7428  1
## 7429  1
## 7430  1
## 7431  1
## 7432  1
## 7433  1
## 7434  1
## 7435  1
## 7436  1
## 7437  1
## 7438  1
## 7439  1
## 7440  1
## 7441  1
## 7442  1
## 7443  1
## 7444  1
## 7445  1
## 7446  1
## 7447  1
## 7448  1
## 7449  1
## 7450  1
## 7451  1
## 7452  1
## 7453  1
## 7454  1
## 7455  1
## 7456  1
## 7457  1
## 7458  1
## 7459  1
## 7460  1
## 7461  1
## 7462  1
## 7463  1
## 7464  1
## 7465  1
## 7466  1
## 7467  1
## 7468  1
## 7469  1
## 7470  1
## 7471  1
## 7472  1
## 7473  1
## 7474  1
## 7475  1
## 7476  1
## 7477  1
## 7478  1
## 7479  1
## 7480  1
## 7481  1
## 7482  1
## 7483  1
## 7484  1
## 7485  1
## 7486  1
## 7487  1
## 7488  1
## 7489  1
## 7490  1
## 7491  1
## 7492  1
## 7493  1
## 7494  1
## 7495  1
## 7496  1
## 7497  1
## 7498  1
## 7499  1
## 7500  1
## 7501  1
## 7502  1
## 7503  1
## 7504  1
## 7505  1
## 7506  1
## 7507  1
## 7508  1
## 7509  1
## 7510  1
## 7511  1
## 7512  1
## 7513  1
## 7514  1
## 7515  1
## 7516  1
## 7517  1
## 7518  1
## 7519  1
## 7520  1
## 7521  1
## 7522  1
## 7523  1
## 7524  1
## 7525  1
## 7526  1
## 7527  1
## 7528  1
## 7529  1
## 7530  1
## 7531  1
## 7532  1
## 7533  1
## 7534  1
## 7535  1
## 7536  1
## 7537  1
## 7538  1
## 7539  1
## 7540  1
## 7541  1
## 7542  1
## 7543  1
## 7544  1
## 7545  1
## 7546  1
## 7547  1
## 7548  1
## 7549  1
## 7550  1
## 7551  1
## 7552  1
## 7553  1
## 7554  1
## 7555  1
## 7556  1
## 7557  1
## 7558  1
## 7559  1
## 7560  1
## 7561  1
## 7562  1
## 7563  1
## 7564  1
## 7565  1
## 7566  1
## 7567  1
## 7568  1
## 7569  1
## 7570  1
## 7571  1
## 7572  1
## 7573  1
## 7574  1
## 7575  1
## 7576  1
## 7577  1
## 7578  1
## 7579  1
## 7580  1
## 7581  1
## 7582  1
## 7583  1
## 7584  1
## 7585  1
## 7586  1
## 7587  1
## 7588  1
## 7589  1
## 7590  1
## 7591  1
## 7592  1
## 7593  1
## 7594  1
## 7595  1
## 7596  1
## 7597  1
## 7598  1
## 7599  1
## 7600  1
## 7601  1
## 7602  1
## 7603  1
## 7604  1
## 7605  1
## 7606  1
## 7607  1
## 7608  1
## 7609  1
## 7610  1
## 7611  1
## 7612  1
## 7613  1
## 7614  1
## 7615  1
## 7616  1
## 7617  1
## 7618  1
## 7619  1
## 7620  1
## 7621  1
## 7622  1
## 7623  1
## 7624  1
## 7625  1
## 7626  1
## 7627  1
## 7628  1
## 7629  1
## 7630  1
## 7631  1
## 7632  1
## 7633  1
## 7634  1
## 7635  1
## 7636  1
## 7637  1
## 7638  1
## 7639  1
## 7640  1
## 7641  1
## 7642  1
## 7643  1
## 7644  1
## 7645  1
## 7646  1
## 7647  1
## 7648  1
## 7649  1
## 7650  1
## 7651  1
## 7652  1
## 7653  1
## 7654  1
## 7655  1
## 7656  1
## 7657  1
## 7658  1
## 7659  1
## 7660  1
## 7661  1
## 7662  1
## 7663  1
## 7664  1
## 7665  1
## 7666  1
## 7667  1
## 7668  1
## 7669  1
## 7670  1
## 7671  1
## 7672  1
## 7673  1
## 7674  1
## 7675  1
## 7676  1
## 7677  1
## 7678  1
## 7679  1
## 7680  1
## 7681  1
## 7682  1
## 7683  1
## 7684  1
## 7685  1
## 7686  1
## 7687  1
## 7688  1
## 7689  1
## 7690  1
## 7691  1
## 7692  1
## 7693  1
## 7694  1
## 7695  1
## 7696  1
## 7697  1
## 7698  1
## 7699  1
## 7700  1
## 7701  1
## 7702  1
## 7703  1
## 7704  1
## 7705  1
## 7706  1
## 7707  1
## 7708  1
## 7709  1
## 7710  1
## 7711  1
## 7712  1
## 7713  1
## 7714  1
## 7715  1
## 7716  1
## 7717  1
## 7718  1
## 7719  1
## 7720  1
## 7721  1
## 7722  1
## 7723  1
## 7724  1
## 7725  1
## 7726  1
## 7727  1
## 7728  1
## 7729  1
## 7730  1
## 7731  1
## 7732  1
## 7733  1
## 7734  1
## 7735  1
## 7736  1
## 7737  1
## 7738  1
## 7739  1
## 7740  1
## 7741  1
## 7742  1
## 7743  1
## 7744  1
## 7745  1
## 7746  1
## 7747  1
## 7748  1
## 7749  1
## 7750  1
## 7751  1
## 7752  1
## 7753  1
## 7754  1
## 7755  1
## 7756  1
## 7757  1
## 7758  1
## 7759  1
## 7760  1
## 7761  1
## 7762  1
## 7763  1
## 7764  1
## 7765  1
## 7766  1
## 7767  1
## 7768  1
## 7769  1
## 7770  1
## 7771  1
## 7772  1
## 7773  1
## 7774  1
## 7775  1
## 7776  1
## 7777  1
## 7778  1
## 7779  1
## 7780  1
## 7781  1
## 7782  1
## 7783  1
## 7784  1
## 7785  1
## 7786  1
## 7787  1
## 7788  1
## 7789  1
## 7790  1
## 7791  1
## 7792  1
## 7793  1
## 7794  1
## 7795  1
## 7796  1
## 7797  1
## 7798  1
## 7799  1
## 7800  1
## 7801  1
## 7802  1
## 7803  1
## 7804  1
## 7805  1
## 7806  1
## 7807  1
## 7808  1
## 7809  1
## 7810  1
## 7811  1
## 7812  1
## 7813  1
## 7814  1
## 7815  1
## 7816  1
## 7817  1
## 7818  1
## 7819  1
## 7820  1
## 7821  1
## 7822  1
## 7823  1
## 7824  1
## 7825  1
## 7826  1
## 7827  1
## 7828  1
## 7829  1
## 7830  1
## 7831  1
## 7832  1
## 7833  1
## 7834  1
## 7835  1
## 7836  1
## 7837  1
## 7838  1
## 7839  1
## 7840  1
## 7841  1
## 7842  1
## 7843  1
## 7844  1
## 7845  1
## 7846  1
## 7847  1
## 7848  1
## 7849  1
## 7850  1
## 7851  1
## 7852  1
## 7853  1
## 7854  1
## 7855  1
## 7856  1
## 7857  1
## 7858  1
## 7859  1
## 7860  1
## 7861  1
## 7862  1
## 7863  1
## 7864  1
## 7865  1
## 7866  1
## 7867  1
## 7868  1
## 7869  1
## 7870  1
## 7871  1
## 7872  1
## 7873  1
## 7874  1
## 7875  1
## 7876  1
## 7877  1
## 7878  1
## 7879  1
## 7880  1
## 7881  1
## 7882  1
## 7883  1
## 7884  1
## 7885  1
## 7886  1
## 7887  1
## 7888  1
## 7889  1
## 7890  1
## 7891  1
## 7892  1
## 7893  1
## 7894  1
## 7895  1
## 7896  1
## 7897  1
## 7898  1
## 7899  1
## 7900  1
## 7901  1
## 7902  1
## 7903  1
## 7904  1
## 7905  1
## 7906  1
## 7907  1
## 7908  1
## 7909  1
## 7910  1
## 7911  1
## 7912  1
## 7913  1
## 7914  1
## 7915  1
## 7916  1
## 7917  1
## 7918  1
## 7919  1
## 7920  1
## 7921  1
## 7922  1
## 7923  1
## 7924  1
## 7925  1
## 7926  1
## 7927  1
## 7928  1
## 7929  1
## 7930  1
## 7931  1
## 7932  1
## 7933  1
## 7934  1
## 7935  1
## 7936  1
## 7937  1
## 7938  1
## 7939  1
## 7940  1
## 7941  1
## 7942  1
## 7943  1
## 7944  1
## 7945  1
## 7946  1
## 7947  1
## 7948  1
## 7949  1
## 7950  1
## 7951  1
## 7952  1
## 7953  1
## 7954  1
## 7955  1
## 7956  1
## 7957  1
## 7958  1
## 7959  1
## 7960  1
## 7961  1
## 7962  1
## 7963  1
## 7964  1
## 7965  1
## 7966  1
## 7967  1
## 7968  1
## 7969  1
## 7970  1
## 7971  1
## 7972  1
## 7973  1
## 7974  1
## 7975  1
## 7976  1
## 7977  1
## 7978  1
## 7979  1
## 7980  1
## 7981  1
## 7982  1
## 7983  1
## 7984  1
## 7985  1
## 7986  1
## 7987  1
## 7988  1
## 7989  1
## 7990  1
## 7991  1
## 7992  1
## 7993  1
## 7994  1
## 7995  1
## 7996  1
## 7997  1
## 7998  1
## 7999  1
## 8000  1
## 8001  1
## 8002  1
## 8003  1
## 8004  1
## 8005  1
## 8006  1
## 8007  1
## 8008  1
## 8009  1
## 8010  1
## 8011  1
## 8012  1
## 8013  1
## 8014  1
## 8015  1
## 8016  1
## 8017  1
## 8018  1
## 8019  1
## 8020  1
## 8021  1
## 8022  1
## 8023  1
## 8024  1
## 8025  1
## 8026  1
## 8027  1
## 8028  1
## 8029  1
## 8030  1
## 8031  1
## 8032  1
## 8033  1
## 8034  1
## 8035  1
## 8036  1
## 8037  1
## 8038  1
## 8039  1
## 8040  1
## 8041  1
## 8042  1
## 8043  1
## 8044  1
## 8045  1
## 8046  1
## 8047  1
## 8048  1
## 8049  1
## 8050  1
## 8051  1
## 8052  1
## 8053  1
## 8054  1
## 8055  1
## 8056  1
## 8057  1
## 8058  1
## 8059  1
## 8060  1
## 8061  1
## 8062  1
## 8063  1
## 8064  1
## 8065  1
## 8066  1
## 8067  1
## 8068  1
## 8069  1
## 8070  1
## 8071  1
## 8072  1
## 8073  1
## 8074  1
## 8075  1
## 8076  1
## 8077  1
## 8078  1
## 8079  1
## 8080  1
## 8081  1
## 8082  1
## 8083  1
## 8084  1
## 8085  1
## 8086  1
## 8087  1
## 8088  1
## 8089  1
## 8090  1
## 8091  1
## 8092  1
## 8093  1
## 8094  1
## 8095  1
## 8096  1
## 8097  1
## 8098  1
## 8099  1
## 8100  1
## 8101  1
## 8102  1
## 8103  1
## 8104  1
## 8105  1
## 8106  1
## 8107  1
## 8108  1
## 8109  1
## 8110  1
## 8111  1
## 8112  1
## 8113  1
## 8114  1
## 8115  1
## 8116  1
## 8117  1
## 8118  1
## 8119  1
## 8120  1
## 8121  1
## 8122  1
## 8123  1
## 8124  1
## 8125  1
## 8126  1
## 8127  1
## 8128  1
## 8129  1
## 8130  1
## 8131  1
## 8132  1
## 8133  1
## 8134  1
## 8135  1
## 8136  1
## 8137  1
## 8138  1
## 8139  1
## 8140  1
## 8141  1
## 8142  1
## 8143  1
## 8144  1
## 8145  1
## 8146  1
## 8147  1
## 8148  1
## 8149  1
## 8150  1
## 8151  1
## 8152  1
## 8153  1
## 8154  1
## 8155  1
## 8156  1
## 8157  1
## 8158  1
## 8159  1
## 8160  1
## 8161  1
## 8162  1
## 8163  1
## 8164  1
## 8165  1
## 8166  1
## 8167  1
## 8168  1
## 8169  1
## 8170  1
## 8171  1
## 8172  1
## 8173  1
## 8174  1
## 8175  1
## 8176  1
## 8177  1
## 8178  1
## 8179  1
## 8180  1
## 8181  1
## 8182  1
## 8183  1
## 8184  1
## 8185  1
## 8186  1
## 8187  1
## 8188  1
## 8189  1
## 8190  1
## 8191  1
## 8192  1
## 8193  1
## 8194  1
## 8195  1
## 8196  1
## 8197  1
## 8198  1
## 8199  1
## 8200  1
## 8201  1
## 8202  1
## 8203  1
## 8204  1
## 8205  1
## 8206  1
## 8207  1
## 8208  1
## 8209  1
## 8210  1
## 8211  1
## 8212  1
## 8213  1
## 8214  1
## 8215  1
## 8216  1
## 8217  1
## 8218  1
## 8219  1
## 8220  1
## 8221  1
## 8222  1
## 8223  1
## 8224  1
## 8225  1
## 8226  1
## 8227  1
## 8228  1
## 8229  1
## 8230  1
## 8231  1
## 8232  1
## 8233  1
## 8234  1
## 8235  1
## 8236  1
## 8237  1
## 8238  1
## 8239  1
## 8240  1
## 8241  1
## 8242  1
## 8243  1
## 8244  1
## 8245  1
## 8246  1
## 8247  1
## 8248  1
## 8249  1
## 8250  1
## 8251  1
## 8252  1
## 8253  1
## 8254  1
## 8255  1
## 8256  1
## 8257  1
## 8258  1
## 8259  1
## 8260  1
## 8261  1
## 8262  1
## 8263  1
## 8264  1
## 8265  1
## 8266  1
## 8267  1
## 8268  1
## 8269  1
## 8270  1
## 8271  1
## 8272  1
## 8273  1
## 8274  1
## 8275  1
## 8276  1
## 8277  1
## 8278  1
## 8279  1
## 8280  1
## 8281  1
## 8282  1
## 8283  1
## 8284  1
## 8285  1
## 8286  1
## 8287  1
## 8288  1
## 8289  1
## 8290  1
## 8291  1
## 8292  1
## 8293  1
## 8294  1
## 8295  1
## 8296  1
## 8297  1
## 8298  1
## 8299  1
## 8300  1
## 8301  1
## 8302  1
## 8303  1
## 8304  1
## 8305  1
## 8306  1
## 8307  1
## 8308  1
## 8309  1
## 8310  1
## 8311  1
## 8312  1
## 8313  1
## 8314  1
## 8315  1
## 8316  1
## 8317  1
## 8318  1
## 8319  1
## 8320  1
## 8321  1
## 8322  1
## 8323  1
## 8324  1
## 8325  1
## 8326  1
## 8327  1
## 8328  1
## 8329  1
## 8330  1
## 8331  1
## 8332  1
## 8333  1
## 8334  1
## 8335  1
## 8336  1
## 8337  1
## 8338  1
## 8339  1
## 8340  1
## 8341  1
## 8342  1
## 8343  1
## 8344  1
## 8345  1
## 8346  1
## 8347  1
## 8348  1
## 8349  1
## 8350  1
## 8351  1
## 8352  1
## 8353  1
## 8354  1
## 8355  1
## 8356  1
## 8357  1
## 8358  1
## 8359  1
## 8360  1
## 8361  1
## 8362  1
## 8363  1
## 8364  1
## 8365  1
## 8366  1
## 8367  1
## 8368  1
## 8369  1
## 8370  1
## 8371  1
## 8372  1
## 8373  1
## 8374  1
## 8375  1
## 8376  1
## 8377  1
## 8378  1
## 8379  1
## 8380  1
## 8381  1
## 8382  1
## 8383  1
## 8384  1
## 8385  1
## 8386  1
## 8387  1
## 8388  1
## 8389  1
## 8390  1
## 8391  1
## 8392  1
## 8393  1
## 8394  1
## 8395  1
## 8396  1
## 8397  1
## 8398  1
## 8399  1
## 8400  1
## 8401  1
## 8402  1
## 8403  1
## 8404  1
## 8405  1
## 8406  1
## 8407  1
## 8408  1
## 8409  1
## 8410  1
## 8411  1
## 8412  1
## 8413  1
## 8414  1
## 8415  1
## 8416  1
## 8417  1
## 8418  1
## 8419  1
## 8420  1
## 8421  1
## 8422  1
## 8423  1
## 8424  1
## 8425  1
## 8426  1
## 8427  1
## 8428  1
## 8429  1
## 8430  1
## 8431  1
## 8432  1
## 8433  1
## 8434  1
## 8435  1
## 8436  1
## 8437  1
## 8438  1
## 8439  1
## 8440  1
## 8441  1
## 8442  1
## 8443  1
## 8444  1
## 8445  1
## 8446  1
## 8447  1
## 8448  1
## 8449  1
## 8450  1
## 8451  1
## 8452  1
## 8453  1
## 8454  1
## 8455  1
## 8456  1
## 8457  1
## 8458  1
## 8459  1
## 8460  1
## 8461  1
## 8462  1
## 8463  1
## 8464  1
## 8465  1
## 8466  1
## 8467  1
## 8468  1
## 8469  1
## 8470  1
## 8471  1
## 8472  1
## 8473  1
## 8474  1
## 8475  1
## 8476  1
## 8477  1
## 8478  1
## 8479  1
## 8480  1
## 8481  1
## 8482  1
## 8483  1
## 8484  1
## 8485  1
## 8486  1
## 8487  1
## 8488  1
## 8489  1
## 8490  1
## 8491  1
## 8492  1
## 8493  1
## 8494  1
## 8495  1
## 8496  1
## 8497  1
## 8498  1
## 8499  1
## 8500  1
## 8501  1
## 8502  1
## 8503  1
## 8504  1
## 8505  1
## 8506  1
## 8507  1
## 8508  1
## 8509  1
## 8510  1
## 8511  1
## 8512  1
## 8513  1
## 8514  1
## 8515  1
## 8516  1
## 8517  1
## 8518  1
## 8519  1
## 8520  1
## 8521  1
## 8522  1
## 8523  1
## 8524  1
## 8525  1
## 8526  1
## 8527  1
## 8528  1
## 8529  1
## 8530  1
## 8531  1
## 8532  1
## 8533  1
## 8534  1
## 8535  1
## 8536  1
## 8537  1
## 8538  1
## 8539  1
## 8540  1
## 8541  1
## 8542  1
## 8543  1
## 8544  1
## 8545  1
## 8546  1
## 8547  1
## 8548  1
## 8549  1
## 8550  1
## 8551  1
## 8552  1
## 8553  1
## 8554  1
## 8555  1
## 8556  1
## 8557  1
## 8558  1
## 8559  1
## 8560  1
## 8561  1
## 8562  1
## 8563  1
## 8564  1
## 8565  1
## 8566  1
## 8567  1
## 8568  1
## 8569  1
## 8570  1
## 8571  1
## 8572  1
## 8573  1
## 8574  1
## 8575  1
## 8576  1
## 8577  1
## 8578  1
## 8579  1
## 8580  1
## 8581  1
## 8582  1
## 8583  1
## 8584  1
## 8585  1
## 8586  1
## 8587  1
## 8588  1
## 8589  1
## 8590  1
## 8591  1
## 8592  1
## 8593  1
## 8594  1
## 8595  1
## 8596  1
## 8597  1
## 8598  1
## 8599  1
## 8600  1
## 8601  1
## 8602  1
## 8603  1
## 8604  1
## 8605  1
## 8606  1
## 8607  1
## 8608  1
## 8609  1
## 8610  1
## 8611  1
## 8612  1
## 8613  1
## 8614  1
## 8615  1
## 8616  1
## 8617  1
## 8618  1
## 8619  1
## 8620  1
## 8621  1
## 8622  1
## 8623  1
## 8624  1
## 8625  1
## 8626  1
## 8627  1
## 8628  1
## 8629  1
## 8630  1
## 8631  1
## 8632  1
## 8633  1
## 8634  1
## 8635  1
## 8636  1
## 8637  1
## 8638  1
## 8639  1
## 8640  1
## 8641  1
## 8642  1
## 8643  1
## 8644  1
## 8645  1
## 8646  1
## 8647  1
## 8648  1
## 8649  1
## 8650  1
## 8651  1
## 8652  1
## 8653  1
## 8654  1
## 8655  1
## 8656  1
## 8657  1
## 8658  1
## 8659  1
## 8660  1
## 8661  1
## 8662  1
## 8663  1
## 8664  1
## 8665  1
## 8666  1
## 8667  1
## 8668  1
## 8669  1
## 8670  1
## 8671  1
## 8672  1
## 8673  1
## 8674  1
## 8675  1
## 8676  1
## 8677  1
## 8678  1
## 8679  1
## 8680  1
## 8681  1
## 8682  1
## 8683  1
## 8684  1
## 8685  1
## 8686  1
## 8687  1
## 8688  1
## 8689  1
## 8690  1
## 8691  1
## 8692  1
## 8693  1
## 8694  1
## 8695  1
## 8696  1
## 8697  1
## 8698  1
## 8699  1
## 8700  1
## 8701  1
## 8702  1
## 8703  1
## 8704  1
## 8705  1
## 8706  1
## 8707  1
## 8708  1
## 8709  1
## 8710  1
## 8711  1
## 8712  1
## 8713  1
## 8714  1
## 8715  1
## 8716  1
## 8717  1
## 8718  1
## 8719  1
## 8720  1
## 8721  1
## 8722  1
## 8723  1
## 8724  1
## 8725  1
## 8726  1
## 8727  1
## 8728  1
## 8729  1
## 8730  1
## 8731  1
## 8732  1
## 8733  1
## 8734  1
## 8735  1
## 8736  1
## 8737  1
## 8738  1
## 8739  1
## 8740  1
## 8741  1
## 8742  1
## 8743  1
## 8744  1
## 8745  1
## 8746  1
## 8747  1
## 8748  1
## 8749  1
## 8750  1
## 8751  1
## 8752  1
## 8753  1
## 8754  1
## 8755  1
## 8756  1
## 8757  1
## 8758  1
## 8759  1
## 8760  1
## 8761  1
## 8762  1
## 8763  1
## 8764  1
## 8765  1
## 8766  1
## 8767  1
## 8768  1
## 8769  1
## 8770  1
## 8771  1
## 8772  1
## 8773  1
## 8774  1
## 8775  1
## 8776  1
## 8777  1
## 8778  1
## 8779  1
## 8780  1
## 8781  1
## 8782  1
## 8783  1
## 8784  1
## 8785  1
## 8786  1
## 8787  1
## 8788  1
## 8789  1
## 8790  1
## 8791  1
## 8792  1
## 8793  1
## 8794  1
## 8795  1
## 8796  1
## 8797  1
## 8798  1
## 8799  1
## 8800  1
## 8801  1
## 8802  1
## 8803  1
## 8804  1
## 8805  1
## 8806  1
## 8807  1
## 8808  1
## 8809  1
## 8810  1
## 8811  1
## 8812  1
## 8813  1
## 8814  1
## 8815  1
## 8816  1
## 8817  1
## 8818  1
## 8819  1
## 8820  1
## 8821  1
## 8822  1
## 8823  1
## 8824  1
## 8825  1
## 8826  1
## 8827  1
## 8828  1
## 8829  1
## 8830  1
## 8831  1
## 8832  1
## 8833  1
## 8834  1
## 8835  1
## 8836  1
## 8837  1
## 8838  1
## 8839  1
## 8840  1
## 8841  1
## 8842  1
## 8843  1
## 8844  1
## 8845  1
## 8846  1
## 8847  1
## 8848  1
## 8849  1
## 8850  1
## 8851  1
## 8852  1
## 8853  1
## 8854  1
## 8855  1
## 8856  1
## 8857  1
## 8858  1
## 8859  1
## 8860  1
## 8861  1
## 8862  1
## 8863  1
## 8864  1
## 8865  1
## 8866  1
## 8867  1
## 8868  1
## 8869  1
## 8870  1
## 8871  1
## 8872  1
## 8873  1
## 8874  1
## 8875  1
## 8876  1
## 8877  1
## 8878  1
## 8879  1
## 8880  1
## 8881  1
## 8882  1
## 8883  1
## 8884  1
## 8885  1
## 8886  1
## 8887  1
## 8888  1
## 8889  1
## 8890  1
## 8891  1
## 8892  1
## 8893  1
## 8894  1
## 8895  1
## 8896  1
## 8897  1
## 8898  1
## 8899  1
## 8900  1
## 8901  1
## 8902  1
## 8903  1
## 8904  1
## 8905  1
## 8906  1
## 8907  1
## 8908  1
## 8909  1
## 8910  1
## 8911  1
## 8912  1
## 8913  1
## 8914  1
## 8915  1
## 8916  1
## 8917  1
## 8918  1
## 8919  1
## 8920  1
## 8921  1
## 8922  1
## 8923  1
## 8924  1
## 8925  1
## 8926  1
## 8927  1
## 8928  1
## 8929  1
## 8930  1
## 8931  1
## 8932  1
## 8933  1
## 8934  1
## 8935  1
## 8936  1
## 8937  1
## 8938  1
## 8939  1
## 8940  1
## 8941  1
## 8942  1
## 8943  1
## 8944  1
## 8945  1
## 8946  1
## 8947  1
## 8948  1
## 8949  1
## 8950  1
## 8951  1
## 8952  1
## 8953  1
## 8954  1
## 8955  1
## 8956  1
## 8957  1
## 8958  1
## 8959  1
## 8960  1
## 8961  1
## 8962  1
## 8963  1
## 8964  1
## 8965  1
## 8966  1
## 8967  1
## 8968  1
## 8969  1
## 8970  1
## 8971  1
## 8972  1
## 8973  1
## 8974  1
## 8975  1
## 8976  1
## 8977  1
## 8978  1
## 8979  1
## 8980  1
## 8981  1
## 8982  1
## 8983  1
## 8984  1
## 8985  1
## 8986  1
## 8987  1
## 8988  1
## 8989  1
## 8990  1
## 8991  1
## 8992  1
## 8993  1
## 8994  1
## 8995  1
## 8996  1
## 8997  1
## 8998  1
## 8999  1
## 9000  1
## 9001  1
## 9002  1
## 9003  1
## 9004  1
## 9005  1
## 9006  1
## 9007  1
## 9008  1
## 9009  1
## 9010  1
## 9011  1
## 9012  1
## 9013  1
## 9014  1
## 9015  1
## 9016  1
## 9017  1
## 9018  1
## 9019  1
## 9020  1
## 9021  1
## 9022  1
## 9023  1
## 9024  1
## 9025  1
## 9026  1
## 9027  1
## 9028  1
## 9029  1
## 9030  1
## 9031  1
## 9032  1
## 9033  1
## 9034  1
## 9035  1
## 9036  1
## 9037  1
## 9038  1
## 9039  1
## 9040  1
## 9041  1
## 9042  1
## 9043  1
## 9044  1
## 9045  1
## 9046  1
## 9047  1
## 9048  1
## 9049  1
## 9050  1
## 9051  1
## 9052  1
## 9053  1
## 9054  1
## 9055  1
## 9056  1
## 9057  1
## 9058  1
## 9059  1
## 9060  1
## 9061  1
## 9062  1
## 9063  1
## 9064  1
## 9065  1
## 9066  1
## 9067  1
## 9068  1
## 9069  1
## 9070  1
## 9071  1
## 9072  1
## 9073  1
## 9074  1
## 9075  1
## 9076  1
## 9077  1
## 9078  1
## 9079  1
## 9080  1
## 9081  1
## 9082  1
## 9083  1
## 9084  1
## 9085  1
## 9086  1
## 9087  1
## 9088  1
## 9089  1
## 9090  1
## 9091  1
## 9092  1
## 9093  1
## 9094  1
## 9095  1
## 9096  1
## 9097  1
## 9098  1
## 9099  1
## 9100  1
## 9101  1
## 9102  1
## 9103  1
## 9104  1
## 9105  1
## 9106  1
## 9107  1
## 9108  1
## 9109  1
## 9110  1
## 9111  1
## 9112  1
## 9113  1
## 9114  1
## 9115  1
## 9116  1
## 9117  1
## 9118  1
## 9119  1
## 9120  1
## 9121  1
## 9122  1
## 9123  1
## 9124  1
## 9125  1
## 9126  1
## 9127  1
## 9128  1
## 9129  1
## 9130  1
## 9131  1
## 9132  1
## 9133  1
## 9134  1
## 9135  1
## 9136  1
## 9137  1
## 9138  1
## 9139  1
## 9140  1
## 9141  1
## 9142  1
## 9143  1
## 9144  1
## 9145  1
## 9146  1
## 9147  1
## 9148  1
## 9149  1
## 9150  1
## 9151  1
## 9152  1
## 9153  1
## 9154  1
## 9155  1
## 9156  1
## 9157  1
## 9158  1
## 9159  1
## 9160  1
## 9161  1
## 9162  1
## 9163  1
## 9164  1
## 9165  1
## 9166  1
## 9167  1
## 9168  1
## 9169  1
## 9170  1
## 9171  1
## 9172  1
## 9173  1
## 9174  1
## 9175  1
## 9176  1
## 9177  1
## 9178  1
## 9179  1
## 9180  1
## 9181  1
## 9182  1
## 9183  1
## 9184  1
## 9185  1
## 9186  1
## 9187  1
## 9188  1
## 9189  1
## 9190  1
## 9191  1
## 9192  1
## 9193  1
## 9194  1
## 9195  1
## 9196  1
## 9197  1
## 9198  1
## 9199  1
## 9200  1
## 9201  1
## 9202  1
## 9203  1
## 9204  1
## 9205  1
## 9206  1
## 9207  1
## 9208  1
## 9209  1
## 9210  1
## 9211  1
## 9212  1
## 9213  1
## 9214  1
## 9215  1
## 9216  1
## 9217  1
## 9218  1
## 9219  1
## 9220  1
## 9221  1
## 9222  1
## 9223  1
## 9224  1
## 9225  1
## 9226  1
## 9227  1
## 9228  1
## 9229  1
## 9230  1
## 9231  1
## 9232  1
## 9233  1
## 9234  1
## 9235  1
## 9236  1
## 9237  1
## 9238  1
## 9239  1
## 9240  1
## 9241  1
## 9242  1
## 9243  1
## 9244  1
## 9245  1
## 9246  1
## 9247  1
## 9248  1
## 9249  1
## 9250  1
## 9251  1
## 9252  1
## 9253  1
## 9254  1
## 9255  1
## 9256  1
## 9257  1
## 9258  1
## 9259  1
## 9260  1
## 9261  1
## 9262  1
## 9263  1
## 9264  1
## 9265  1
## 9266  1
## 9267  1
## 9268  1
## 9269  1
## 9270  1
## 9271  1
## 9272  1
## 9273  1
## 9274  1
## 9275  1
## 9276  1
## 9277  1
## 9278  1
## 9279  1
## 9280  1
## 9281  1
## 9282  1
## 9283  1
## 9284  1
## 9285  1
## 9286  1
## 9287  1
## 9288  1
## 9289  1
## 9290  1
## 9291  1
## 9292  1
## 9293  1
## 9294  1
## 9295  1
## 9296  1
## 9297  1
## 9298  1
## 9299  1
## 9300  1
## 9301  1
## 9302  1
## 9303  1
## 9304  1
## 9305  1
## 9306  1
## 9307  1
## 9308  1
## 9309  1
## 9310  1
## 9311  1
## 9312  1
## 9313  1
## 9314  1
## 9315  1
## 9316  1
## 9317  1
## 9318  1
## 9319  1
## 9320  1
## 9321  1
## 9322  1
## 9323  1
## 9324  1
## 9325  1
## 9326  1
## 9327  1
## 9328  1
## 9329  1
## 9330  1
## 9331  1
## 9332  1
## 9333  1
## 9334  1
## 9335  1
## 9336  1
## 9337  1
## 9338  1
## 9339  1
## 9340  1
## 9341  1
## 9342  1
## 9343  1
## 9344  1
## 9345  1
## 9346  1
## 9347  1
## 9348  1
## 9349  1
## 9350  1
## 9351  1
## 9352  1
## 9353  1
## 9354  1
## 9355  1
## 9356  1
## 9357  1
## 9358  1
## 9359  1
## 9360  1
## 9361  1
## 9362  1
## 9363  1
## 9364  1
## 9365  1
## 9366  1
## 9367  1
## 9368  1
## 9369  1
## 9370  1
## 9371  1
## 9372  1
## 9373  1
## 9374  1
## 9375  1
## 9376  1
## 9377  1
## 9378  1
## 9379  1
## 9380  1
## 9381  1
## 9382  1
## 9383  1
## 9384  1
## 9385  1
## 9386  1
## 9387  1
## 9388  1
## 9389  1
## 9390  1
## 9391  1
## 9392  1
## 9393  1
## 9394  1
## 9395  1
## 9396  1
## 9397  1
## 9398  1
## 9399  1
## 9400  1
## 9401  1
## 9402  1
## 9403  1
## 9404  1
## 9405  1
## 9406  1
## 9407  1
## 9408  1
## 9409  1
## 9410  1
## 9411  1
## 9412  1
## 9413  1
## 9414  1
## 9415  1
## 9416  1
## 9417  1
## 9418  1
## 9419  1
## 9420  1
## 9421  1
## 9422  1
## 9423  1
## 9424  1
## 9425  1
## 9426  1
## 9427  1
## 9428  1
## 9429  1
## 9430  1
## 9431  1
## 9432  1
## 9433  1
## 9434  1
## 9435  1
## 9436  1
## 9437  1
## 9438  1
## 9439  1
## 9440  1
## 9441  1
## 9442  1
## 9443  1
## 9444  1
## 9445  1
## 9446  1
## 9447  1
## 9448  1
## 9449  1
## 9450  1
## 9451  1
## 9452  1
## 9453  1
## 9454  1
## 9455  1
## 9456  1
## 9457  1
## 9458  1
## 9459  1
## 9460  1
## 9461  1
## 9462  1
## 9463  1
## 9464  1
## 9465  1
## 9466  1
## 9467  1
## 9468  1
## 9469  1
## 9470  1
## 9471  1
## 9472  1
## 9473  1
## 9474  1
## 9475  1
## 9476  1
## 9477  1
## 9478  1
## 9479  1
## 9480  1
## 9481  1
## 9482  1
## 9483  1
## 9484  1
## 9485  1
## 9486  1
## 9487  1
## 9488  1
## 9489  1
## 9490  1
## 9491  1
## 9492  1
## 9493  1
## 9494  1
## 9495  1
## 9496  1
## 9497  1
## 9498  1
## 9499  1
## 9500  1
## 9501  1
## 9502  1
## 9503  1
## 9504  1
## 9505  1
## 9506  1
## 9507  1
## 9508  1
## 9509  1
## 9510  1
## 9511  1
## 9512  1
## 9513  1
## 9514  1
## 9515  1
## 9516  1
## 9517  1
## 9518  1
## 9519  1
## 9520  1
## 9521  1
## 9522  1
## 9523  1
## 9524  1
## 9525  1
## 9526  1
## 9527  1
## 9528  1
## 9529  1
## 9530  1
## 9531  1
## 9532  1
## 9533  1
## 9534  1
## 9535  1
## 9536  1
## 9537  1
## 9538  1
## 9539  1
## 9540  1
## 9541  1
## 9542  1
## 9543  1
## 9544  1
## 9545  1
## 9546  1
## 9547  1
## 9548  1
## 9549  1
## 9550  1
## 9551  1
## 9552  1
## 9553  1
## 9554  1
## 9555  1
## 9556  1
## 9557  1
## 9558  1
## 9559  1
## 9560  1
## 9561  1
## 9562  1
## 9563  1
## 9564  1
## 9565  1
## 9566  1
## 9567  1
## 9568  1
## 9569  1
## 9570  1
## 9571  1
## 9572  1
## 9573  1
## 9574  1
## 9575  1
## 9576  1
## 9577  1
## 9578  1
## 9579  1
## 9580  1
## 9581  1
## 9582  1
## 9583  1
## 9584  1
## 9585  1
## 9586  1
## 9587  1
## 9588  1
## 9589  1
## 9590  1
## 9591  1
## 9592  1
## 9593  1
## 9594  1
## 9595  1
## 9596  1
## 9597  1
## 9598  1
## 9599  1
## 9600  1
## 9601  1
## 9602  1
## 9603  1
## 9604  1
## 9605  1
## 9606  1
## 9607  1
## 9608  1
## 9609  1
## 9610  1
## 9611  1
## 9612  1
## 9613  1
## 9614  1
## 9615  1
## 9616  1
## 9617  1
## 9618  1
## 9619  1
## 9620  1
## 9621  1
## 9622  1
## 9623  1
## 9624  1
## 9625  1
## 9626  1
## 9627  1
## 9628  1
## 9629  1
## 9630  1
## 9631  1
## 9632  1
## 9633  1
## 9634  1
## 9635  1
## 9636  1
## 9637  1
## 9638  1
## 9639  1
## 9640  1
## 9641  1
## 9642  1
## 9643  1
## 9644  1
## 9645  1
## 9646  1
## 9647  1
## 9648  1
## 9649  1
## 9650  1
## 9651  1
## 9652  1
## 9653  1
## 9654  1
## 9655  1
## 9656  1
## 9657  1
## 9658  1
## 9659  1
## 9660  1
## 9661  1
## 9662  1
## 9663  1
## 9664  1
## 9665  1
## 9666  1
## 9667  1
## 9668  1
## 9669  1
## 9670  1
## 9671  1
## 9672  1
## 9673  1
## 9674  1
## 9675  1
## 9676  1
## 9677  1
## 9678  1
## 9679  1
## 9680  1
## 9681  1
## 9682  1
## 9683  1
## 9684  1
## 9685  1
## 9686  1
## 9687  1
## 9688  1
## 9689  1
## 9690  1
## 9691  1
## 9692  1
## 9693  1
## 9694  1
## 9695  1
## 9696  1
## 9697  1
## 9698  1
## 9699  1
## 9700  1
## 9701  1
## 9702  1
## 9703  1
## 9704  1
## 9705  1
## 9706  1
## 9707  1
## 9708  1
## 9709  1
## 9710  1
## 9711  1
## 9712  1
## 9713  1
## 9714  1
## 9715  1
## 9716  1
## 9717  1
## 9718  1
## 9719  1
## 9720  1
## 9721  1
## 9722  1
## 9723  1
## 9724  1
## 9725  1
## 9726  1
## 9727  1
## 9728  1
## 9729  1
## 9730  1
## 9731  1
## 9732  1
## 9733  1
## 9734  1
## 9735  1
## 9736  1
## 9737  1
## 9738  1
## 9739  1
## 9740  1
## 9741  1
## 9742  1
## 9743  1
## 9744  1
## 9745  1
## 9746  1
## 9747  1
## 9748  1
## 9749  1
## 9750  1
## 9751  1
## 9752  1
## 9753  1
## 9754  1
## 9755  1
## 9756  1
## 9757  1
## 9758  1
## 9759  1
## 9760  1
## 9761  1
## 9762  1
## 9763  1
## 9764  1
## 9765  1
## 9766  1
## 9767  1
## 9768  1
## 9769  1
## 9770  1
## 9771  1
## 9772  1
## 9773  1
## 9774  1
## 9775  1
## 9776  1
## 9777  1
## 9778  1
## 9779  1
## 9780  1
## 9781  1
## 9782  1
## 9783  1
## 9784  1
## 9785  1
## 9786  1
## 9787  1
## 9788  1
## 9789  1
## 9790  1
## 9791  1
## 9792  1
## 9793  1
## 9794  1
## 9795  1
## 9796  1
## 9797  1
## 9798  1
## 9799  1
## 9800  1
## 9801  1
## 9802  1
## 9803  1
## 9804  1
## 9805  1
## 9806  1
## 9807  1
## 9808  1
## 9809  1
## 9810  1
## 9811  1
## 9812  1
## 9813  1
## 9814  1
## 9815  1
## 9816  1
## 9817  1
## 9818  1
## 9819  1
## 9820  1
## 9821  1
## 9822  1
## 9823  1
## 9824  1
## 9825  1
## 9826  1
## 9827  1
## 9828  1
## 9829  1
## 9830  1
## 9831  1
## 9832  1
## 9833  1
## 9834  1
## 9835  1
## 9836  1
## 9837  1
## 9838  1
## 9839  1
## 9840  1
## 9841  1
## 9842  1
## 9843  1
## 9844  1
## 9845  1
## 9846  1
## 9847  1
## 9848  1
## 9849  1
## 9850  1
## 9851  1
## 9852  1
## 9853  1
## 9854  1
## 9855  1
## 9856  1
## 9857  1
## 9858  1
## 9859  1
## 9860  1
## 9861  1
## 9862  1
## 9863  1
## 9864  1
## 9865  1
## 9866  1
## 9867  1
## 9868  1
## 9869  1
## 9870  1
## 9871  1
## 9872  1
## 9873  1
## 9874  1
## 9875  1
## 9876  1
## 9877  1
## 9878  1
## 9879  1
## 9880  1
## 9881  1
## 9882  1
## 9883  1
## 9884  1
## 9885  1
## 9886  1
## 9887  1
## 9888  1
## 9889  1
## 9890  1
## 9891  1
## 9892  1
## 9893  1
## 9894  1
## 9895  1
## 9896  1
## 9897  1
## 9898  1
## 9899  1
## 9900  1
## 9901  1
## 9902  1
## 9903  1
## 9904  1
## 9905  1
## 9906  1
## 9907  1
## 9908  1
## 9909  1
## 9910  1
## 9911  1
## 9912  1
## 9913  1
## 9914  1
## 9915  1
## 9916  1
## 9917  1
## 9918  1
## 9919  1
## 9920  1
## 9921  1
## 9922  1
## 9923  1
## 9924  1
## 9925  1
## 9926  1
## 9927  1
## 9928  1
## 9929  1
## 9930  1
## 9931  1
## 9932  1
## 9933  1
## 9934  1
## 9935  1
## 9936  1
## 9937  1
## 9938  1
## 9939  1
## 9940  1
## 9941  1
## 9942  1
## 9943  1
## 9944  1
## 9945  1
## 9946  1
## 9947  1
## 9948  1
## 9949  1
## 9950  1
## 9951  1
## 9952  1
## 9953  1
## 9954  1
## 9955  1
## 9956  1
## 9957  1
## 9958  1
## 9959  1
## 9960  1
## 9961  1
## 9962  1
## 9963  1
## 9964  1
## 9965  1
## 9966  1
## 9967  1
## 9968  1
## 9969  1
## 9970  1
## 9971  1
## 9972  1
## 9973  1
## 9974  1
## 9975  1
## 9976  1
## 9977  1
## 9978  1
## 9979  1
## 9980  1
## 9981  1
## 9982  1
## 9983  1
## 9984  1
## 9985  1
## 9986  1
## 9987  1
## 9988  1
## 9989  1
## 9990  1
## 9991  1
## 9992  1
## 9993  1
## 9994  1
## 9995  1
## 9996  1
## 9997  1
## 9998  1
## 9999  1
## 10000 1
## 10001 1
## 10002 1
## 10003 1
## 10004 1
## 10005 1
## 10006 1
## 10007 1
## 10008 1
## 10009 1
## 10010 1
## 10011 1
## 10012 1
## 10013 1
## 10014 1
## 10015 1
## 10016 1
## 10017 1
## 10018 1
## 10019 1
## 10020 1
## 10021 1
## 10022 1
## 10023 1
## 10024 1
## 10025 1
## 10026 1
## 10027 1
## 10028 1
## 10029 1
## 10030 1
## 10031 1
## 10032 1
## 10033 1
## 10034 1
## 10035 1
## 10036 1
## 10037 1
## 10038 1
## 10039 1
## 10040 1
## 10041 1
## 10042 1
## 10043 1
## 10044 1
## 10045 1
## 10046 1
## 10047 1
## 10048 1
## 10049 1
## 10050 1
## 10051 1
## 10052 1
## 10053 1
## 10054 1
## 10055 1
## 10056 1
## 10057 1
## 10058 1
## 10059 1
## 10060 1
## 10061 1
## 10062 1
## 10063 1
## 10064 1
## 10065 1
## 10066 1
## 10067 1
## 10068 1
## 10069 1
## 10070 1
## 10071 1
## 10072 1
## 10073 1
## 10074 1
## 10075 1
## 10076 1
## 10077 1
## 10078 1
## 10079 1
## 10080 1
## 10081 1
## 10082 1
## 10083 1
## 10084 1
## 10085 1
## 10086 1
## 10087 1
## 10088 1
## 10089 1
## 10090 1
## 10091 1
## 10092 1
## 10093 1
## 10094 1
## 10095 1
## 10096 1
## 10097 1
## 10098 1
## 10099 1
## 10100 1
## 10101 1
## 10102 1
## 10103 1
## 10104 1
## 10105 1
## 10106 1
## 10107 1
## 10108 1
## 10109 1
## 10110 1
## 10111 1
## 10112 1
## 10113 1
## 10114 1
## 10115 1
## 10116 1
## 10117 1
## 10118 1
## 10119 1
## 10120 1
## 10121 1
## 10122 1
## 10123 1
## 10124 1
## 10125 1
## 10126 1
## 10127 1
## 10128 1
## 10129 1
## 10130 1
## 10131 1
## 10132 1
## 10133 1
## 10134 1
## 10135 1
## 10136 1
## 10137 1
## 10138 1
## 10139 1
## 10140 1
## 10141 1
## 10142 1
## 10143 1
## 10144 1
## 10145 1
## 10146 1
## 10147 1
## 10148 1
## 10149 1
## 10150 1
## 10151 1
## 10152 1
## 10153 1
## 10154 1
## 10155 1
## 10156 1
## 10157 1
## 10158 1
## 10159 1
## 10160 1
## 10161 1
## 10162 1
## 10163 1
## 10164 1
## 10165 1
## 10166 1
## 10167 1
## 10168 1
## 10169 1
## 10170 1
## 10171 1
## 10172 1
## 10173 1
## 10174 1
## 10175 1
## 10176 1
## 10177 1
## 10178 1
## 10179 1
## 10180 1
## 10181 1
## 10182 1
## 10183 1
## 10184 1
## 10185 1
## 10186 1
## 10187 1
## 10188 1
## 10189 1
## 10190 1
## 10191 1
## 10192 1
## 10193 1
## 10194 1
## 10195 1
## 10196 1
## 10197 1
## 10198 1
## 10199 1
## 10200 1
## 10201 1
## 10202 1
## 10203 1
## 10204 1
## 10205 1
## 10206 1
## 10207 1
## 10208 1
## 10209 1
## 10210 1
## 10211 1
## 10212 1
## 10213 1
## 10214 1
## 10215 1
## 10216 1
## 10217 1
## 10218 1
## 10219 1
## 10220 1
## 10221 1
## 10222 1
## 10223 1
## 10224 1
## 10225 1
## 10226 1
## 10227 1
## 10228 1
## 10229 1
## 10230 1
## 10231 1
## 10232 1
## 10233 1
## 10234 1
## 10235 1
## 10236 1
## 10237 1
## 10238 1
## 10239 1
## 10240 1
## 10241 1
## 10242 1
## 10243 1
## 10244 1
## 10245 1
## 10246 1
## 10247 1
## 10248 1
## 10249 1
## 10250 1
## 10251 1
## 10252 1
## 10253 1
## 10254 1
## 10255 1
## 10256 1
## 10257 1
## 10258 1
## 10259 1
## 10260 1
## 10261 1
## 10262 1
## 10263 1
## 10264 1
## 10265 1
## 10266 1
## 10267 1
## 10268 1
## 10269 1
## 10270 1
## 10271 1
## 10272 1
## 10273 1
## 10274 1
## 10275 1
## 10276 1
## 10277 1
## 10278 1
## 10279 1
## 10280 1
## 10281 1
## 10282 1
## 10283 1
## 10284 1
## 10285 1
## 10286 1
## 10287 1
## 10288 1
## 10289 1
## 10290 1
## 10291 1
## 10292 1
## 10293 1
## 10294 1
## 10295 1
## 10296 1
## 10297 1
## 10298 1
## 10299 1
## 10300 1
## 10301 1
## 10302 1
## 10303 1
## 10304 1
## 10305 1
## 10306 1
## 10307 1
## 10308 1
## 10309 1
## 10310 1
## 10311 1
## 10312 1
## 10313 1
## 10314 1
## 10315 1
## 10316 1
## 10317 1
## 10318 1
## 10319 1
## 10320 1
## 10321 1
## 10322 1
## 10323 1
## 10324 1
## 10325 1
## 10326 1
## 10327 1
## 10328 1
## 10329 1
## 10330 1
## 10331 1
## 10332 1
## 10333 1
## 10334 1
## 10335 1
## 10336 1
## 10337 1
## 10338 1
## 10339 1
## 10340 1
## 10341 1
## 10342 1
## 10343 1
## 10344 1
## 10345 1
## 10346 1
## 10347 1
## 10348 1
## 10349 1
## 10350 1
## 10351 1
## 10352 1
## 10353 1
## 10354 1
## 10355 1
## 10356 1
## 10357 1
## 10358 1
## 10359 1
## 10360 1
## 10361 1
## 10362 1
## 10363 1
## 10364 1
## 10365 1
## 10366 1
## 10367 1
## 10368 1
## 10369 1
## 10370 1
## 10371 1
## 10372 1
## 10373 1
## 10374 1
## 10375 1
## 10376 1
## 10377 1
## 10378 1
## 10379 1
## 10380 1
## 10381 1
## 10382 1
## 10383 1
## 10384 1
## 10385 1
## 10386 1
## 10387 1
## 10388 1
## 10389 1
## 10390 1
## 10391 1
## 10392 1
## 10393 1
## 10394 1
## 10395 1
## 10396 1
## 10397 1
## 10398 1
## 10399 1
## 10400 1
## 10401 1
## 10402 1
## 10403 1
## 10404 1
## 10405 1
## 10406 1
## 10407 1
## 10408 1
## 10409 1
## 10410 1
## 10411 1
## 10412 1
## 10413 1
## 10414 1
## 10415 1
## 10416 1
## 10417 1
## 10418 1
## 10419 1
## 10420 1
## 10421 1
## 10422 1
## 10423 1
## 10424 1
## 10425 1
## 10426 1
## 10427 1
## 10428 1
## 10429 1
## 10430 1
## 10431 1
## 10432 1
## 10433 1
## 10434 1
## 10435 1
## 10436 1
## 10437 1
## 10438 1
## 10439 1
## 10440 1
## 10441 1
## 10442 1
## 10443 1
## 10444 1
## 10445 1
## 10446 1
## 10447 1
## 10448 1
## 10449 1
## 10450 1
## 10451 1
## 10452 1
## 10453 1
## 10454 1
## 10455 1
## 10456 1
## 10457 1
## 10458 1
## 10459 1
## 10460 1
## 10461 1
## 10462 1
## 10463 1
## 10464 1
## 10465 1
## 10466 1
## 10467 1
## 10468 1
## 10469 1
## 10470 1
## 10471 1
## 10472 1
## 10473 1
## 10474 1
## 10475 1
## 10476 1
## 10477 1
## 10478 1
## 10479 1
## 10480 1
## 10481 1
## 10482 1
## 10483 1
## 10484 1
## 10485 1
## 10486 1
## 10487 1
## 10488 1
## 10489 1
## 10490 1
## 10491 1
## 10492 1
## 10493 1
## 10494 1
## 10495 1
## 10496 1
## 10497 1
## 10498 1
## 10499 1
## 10500 1
## 10501 1
## 10502 1
## 10503 1
## 10504 1
## 10505 1
## 10506 1
## 10507 1
## 10508 1
## 10509 1
## 10510 1
## 10511 1
## 10512 1
## 10513 1
## 10514 1
## 10515 1
## 10516 1
## 10517 1
## 10518 1
## 10519 1
## 10520 1
## 10521 1
## 10522 1
## 10523 1
## 10524 1
## 10525 1
## 10526 1
## 10527 1
## 10528 1
## 10529 1
## 10530 1
## 10531 1
## 10532 1
## 10533 1
## 10534 1
## 10535 1
## 10536 1
## 10537 1
## 10538 1
## 10539 1
## 10540 1
## 10541 1
## 10542 1
## 10543 1
## 10544 1
## 10545 1
## 10546 1
## 10547 1
## 10548 1
## 10549 1
## 10550 1
## 10551 1
## 10552 1
## 10553 1
## 10554 1
## 10555 1
## 10556 1
## 10557 1
## 10558 1
## 10559 1
## 10560 1
## 10561 1
## 10562 1
## 10563 1
## 10564 1
## 10565 1
## 10566 1
## 10567 1
## 10568 1
## 10569 1
## 10570 1
## 10571 1
## 10572 1
## 10573 1
## 10574 1
## 10575 1
## 10576 1
## 10577 1
## 10578 1
## 10579 1
## 10580 1
## 10581 1
## 10582 1
## 10583 1
## 10584 1
## 10585 1
## 10586 1
## 10587 1
## 10588 1
## 10589 1
## 10590 1
## 10591 1
## 10592 1
## 10593 1
## 10594 1
## 10595 1
## 10596 1
## 10597 1
## 10598 1
## 10599 1
## 10600 1
## 10601 1
## 10602 1
## 10603 1
## 10604 1
## 10605 1
## 10606 1
## 10607 1
## 10608 1
## 10609 1
## 10610 1
## 10611 1
## 10612 1
## 10613 1
## 10614 1
## 10615 1
## 10616 1
## 10617 1
## 10618 1
## 10619 1
## 10620 1
## 10621 1
## 10622 1
## 10623 1
## 10624 1
## 10625 1
## 10626 1
## 10627 1
## 10628 1
## 10629 1
## 10630 1
## 10631 1
## 10632 1
## 10633 1
## 10634 1
## 10635 1
## 10636 1
## 10637 1
## 10638 1
## 10639 1
## 10640 1
## 10641 1
## 10642 1
## 10643 1
## 10644 1
## 10645 1
## 10646 1
## 10647 1
## 10648 1
## 10649 1
## 10650 1
## 10651 1
## 10652 1
## 10653 1
## 10654 1
## 10655 1
## 10656 1
## 10657 1
## 10658 1
## 10659 1
## 10660 1
## 10661 1
## 10662 1
## 10663 1
## 10664 1
## 10665 1
## 10666 1
## 10667 1
## 10668 1
## 10669 1
## 10670 1
## 10671 1
## 10672 1
## 10673 1
## 10674 1
## 10675 1
## 10676 1
## 10677 1
## 10678 1
## 10679 1
## 10680 1
## 10681 1
## 10682 1
## 10683 1
## 10684 1
## 10685 1
## 10686 1
## 10687 1
## 10688 1
## 10689 1
## 10690 1
## 10691 1
## 10692 1
## 10693 1
## 10694 1
## 10695 1
## 10696 1
## 10697 1
## 10698 1
## 10699 1
## 10700 1
## 10701 1
## 10702 1
## 10703 1
## 10704 1
## 10705 1
## 10706 1
## 10707 1
## 10708 1
## 10709 1
## 10710 1
## 10711 1
## 10712 1
## 10713 1
## 10714 1
## 10715 1
## 10716 1
## 10717 1
## 10718 1
## 10719 1
## 10720 1
## 10721 1
## 10722 1
## 10723 1
## 10724 1
## 10725 1
## 10726 1
## 10727 1
## 10728 1
## 10729 1
## 10730 1
## 10731 1
## 10732 1
## 10733 1
## 10734 1
## 10735 1
## 10736 1
## 10737 1
## 10738 1
## 10739 1
## 10740 1
## 10741 1
## 10742 1
## 10743 1
## 10744 1
## 10745 1
## 10746 1
## 10747 1
## 10748 1
## 10749 1
## 10750 1
## 10751 1
## 10752 1
## 10753 1
## 10754 1
## 10755 1
## 10756 1
## 10757 1
## 10758 1
## 10759 1
## 10760 1
## 10761 1
## 10762 1
## 10763 1
## 10764 1
## 10765 1
## 10766 1
## 10767 1
## 10768 1
## 10769 1
## 10770 1
## 10771 1
## 10772 1
## 10773 1
## 10774 1
## 10775 1
## 10776 1
## 10777 1
## 10778 1
## 10779 1
## 10780 1
## 10781 1
## 10782 1
## 10783 1
## 10784 1
## 10785 1
## 10786 1
## 10787 1
## 10788 1
## 10789 1
## 10790 1
## 10791 1
## 10792 1
## 10793 1
## 10794 1
## 10795 1
## 10796 1
## 10797 1
## 10798 1
## 10799 1
## 10800 1
## 10801 1
## 10802 1
## 10803 1
## 10804 1
## 10805 1
## 10806 1
## 10807 1
## 10808 1
## 10809 1
## 10810 1
## 10811 1
## 10812 1
## 10813 1
## 10814 1
## 10815 1
## 10816 1
## 10817 1
## 10818 1
## 10819 1
## 10820 1
## 10821 1
## 10822 1
## 10823 1
## 10824 1
## 10825 1
## 10826 1
## 10827 1
## 10828 1
## 10829 1
## 10830 1
## 10831 1
## 10832 1
## 10833 1
## 10834 1
## 10835 1
## 10836 1
## 10837 1
## 10838 1
## 10839 1
## 10840 1
## 10841 1
## 10842 1
## 10843 1
## 10844 1
## 10845 1
## 10846 1
## 10847 1
## 10848 1
## 10849 1
## 10850 1
## 10851 1
## 10852 1
## 10853 1
## 10854 1
## 10855 1
## 10856 1
## 10857 1
## 10858 1
## 10859 1
## 10860 1
## 10861 1
## 10862 1
## 10863 1
## 10864 1
## 10865 1
## 10866 1
## 10867 1
## 10868 1
## 10869 1
## 10870 1
## 10871 1
## 10872 1
## 10873 1
## 10874 1
## 10875 1
## 10876 1
## 10877 1
## 10878 1
## 10879 1
## 10880 1
## 10881 1
## 10882 1
## 10883 1
## 10884 1
## 10885 1
## 10886 1
## 10887 1
## 10888 1
## 10889 1
## 10890 1
## 10891 1
## 10892 1
## 10893 1
## 10894 1
## 10895 1
## 10896 1
## 10897 1
## 10898 1
## 10899 1
## 10900 1
## 10901 1
## 10902 1
## 10903 1
## 10904 1
## 10905 1
## 10906 1
## 10907 1
## 10908 1
## 10909 1
## 10910 1
## 10911 1
## 10912 1
## 10913 1
## 10914 1
## 10915 1
## 10916 1
## 10917 1
## 10918 1
## 10919 1
## 10920 1
## 10921 1
## 10922 1
## 10923 1
## 10924 1
## 10925 1
## 10926 1
## 10927 1
## 10928 1
## 10929 1
## 10930 1
## 10931 1
## 10932 1
## 10933 1
## 10934 1
## 10935 1
## 10936 1
## 10937 1
## 10938 1
## 10939 1
## 10940 1
## 10941 1
## 10942 1
## 10943 1
## 10944 1
## 10945 1
## 10946 1
## 10947 1
## 10948 1
## 10949 1
## 10950 1
## 10951 1
## 10952 1
## 10953 1
## 10954 1
## 10955 1
## 10956 1
## 10957 1
## 10958 1
## 10959 1
## 10960 1
## 10961 1
## 10962 1
## 10963 1
## 10964 1
## 10965 1
## 10966 1
## 10967 1
## 10968 1
## 10969 1
## 10970 1
## 10971 1
## 10972 1
## 10973 1
## 10974 1
## 10975 1
## 10976 1
## 10977 1
## 10978 1
## 10979 1
## 10980 1
## 10981 1
## 10982 1
## 10983 1
## 10984 1
## 10985 1
## 10986 1
## 10987 1
## 10988 1
## 10989 1
## 10990 1
## 10991 1
## 10992 1
## 10993 1
## 10994 1
## 10995 1
## 10996 1
## 10997 1
## 10998 1
## 10999 1
## 11000 1
## 11001 1
## 11002 1
## 11003 1
## 11004 1
## 11005 1
## 11006 1
## 11007 1
## 11008 1
## 11009 1
## 11010 1
## 11011 1
## 11012 1
## 11013 1
## 11014 1
## 11015 1
## 11016 1
## 11017 1
## 11018 1
## 11019 1
## 11020 1
## 11021 1
## 11022 1
## 11023 1
## 11024 1
## 11025 1
## 11026 1
## 11027 1
## 11028 1
## 11029 1
## 11030 1
## 11031 1
## 11032 1
## 11033 1
## 11034 1
## 11035 1
## 11036 1
## 11037 1
## 11038 1
## 11039 1
## 11040 1
## 11041 1
## 11042 1
## 11043 1
## 11044 1
## 11045 1
## 11046 1
## 11047 1
## 11048 1
## 11049 1
## 11050 1
## 11051 1
## 11052 1
## 11053 1
## 11054 1
## 11055 1
## 11056 1
## 11057 1
## 11058 1
## 11059 1
## 11060 1
## 11061 1
## 11062 1
## 11063 1
## 11064 1
## 11065 1
## 11066 1
## 11067 1
## 11068 1
## 11069 1
## 11070 1
## 11071 1
## 11072 1
## 11073 1
## 11074 1
## 11075 1
## 11076 1
## 11077 1
## 11078 1
## 11079 1
## 11080 1
## 11081 1
## 11082 1
## 11083 1
## 11084 1
## 11085 1
## 11086 1
## 11087 1
## 11088 1
## 11089 1
## 11090 1
## 11091 1
## 11092 1
## 11093 1
## 11094 1
## 11095 1
## 11096 1
## 11097 1
## 11098 1
## 11099 1
## 11100 1
## 11101 1
## 11102 1
## 11103 1
## 11104 1
## 11105 1
## 11106 1
## 11107 1
## 11108 1
## 11109 1
## 11110 1
## 11111 1
## 11112 1
## 11113 1
## 11114 1
## 11115 1
## 11116 1
## 11117 1
## 11118 1
## 11119 1
## 11120 1
## 11121 1
## 11122 1
## 11123 1
## 11124 1
## 11125 1
## 11126 1
## 11127 1
## 11128 1
## 11129 1
## 11130 1
## 11131 1
## 11132 1
## 11133 1
## 11134 1
## 11135 1
## 11136 1
## 11137 1
## 11138 1
## 11139 1
## 11140 1
## 11141 1
## 11142 1
## 11143 1
## 11144 1
## 11145 1
## 11146 1
## 11147 1
## 11148 1
## 11149 1
## 11150 1
## 11151 1
## 11152 1
## 11153 1
## 11154 1
## 11155 1
## 11156 1
## 11157 1
## 11158 1
## 11159 1
## 11160 1
## 11161 1
## 11162 1
## 11163 1
## 11164 1
## 11165 1
## 11166 1
## 11167 1
## 11168 1
## 11169 1
## 11170 1
## 11171 1
## 11172 1
## 11173 1
## 11174 1
## 11175 1
## 11176 1
## 11177 1
## 11178 1
## 11179 1
## 11180 1
## 11181 1
## 11182 1
## 11183 1
## 11184 1
## 11185 1
## 11186 1
## 11187 1
## 11188 1
## 11189 1
## 11190 1
## 11191 1
## 11192 1
## 11193 1
## 11194 1
## 11195 1
## 11196 1
## 11197 1
## 11198 1
## 11199 1
## 11200 1
## 11201 1
## 11202 1
## 11203 1
## 11204 1
## 11205 1
## 11206 1
## 11207 1
## 11208 1
## 11209 1
## 11210 1
## 11211 1
## 11212 1
## 11213 1
## 11214 1
## 11215 1
## 11216 1
## 11217 1
## 11218 1
## 11219 1
## 11220 1
## 11221 1
## 11222 1
## 11223 1
## 11224 1
## 11225 1
## 11226 1
## 11227 1
## 11228 1
## 11229 1
## 11230 1
## 11231 1
## 11232 1
## 11233 1
## 11234 1
## 11235 1
## 11236 1
## 11237 1
## 11238 1
## 11239 1
## 11240 1
## 11241 1
## 11242 1
## 11243 1
## 11244 1
## 11245 1
## 11246 1
## 11247 1
## 11248 1
## 11249 1
## 11250 1
## 11251 1
## 11252 1
## 11253 1
## 11254 1
## 11255 1
## 11256 1
## 11257 1
## 11258 1
## 11259 1
## 11260 1
## 11261 1
## 11262 1
## 11263 1
## 11264 1
## 11265 1
## 11266 1
## 11267 1
## 11268 1
## 11269 1
## 11270 1
## 11271 1
## 11272 1
## 11273 1
## 11274 1
## 11275 1
## 11276 1
## 11277 1
## 11278 1
## 11279 1
## 11280 1
## 11281 1
## 11282 1
## 11283 1
## 11284 1
## 11285 1
## 11286 1
## 11287 1
## 11288 1
## 11289 1
## 11290 1
## 11291 1
## 11292 1
## 11293 1
## 11294 1
## 11295 1
## 11296 1
## 11297 1
## 11298 1
## 11299 1
## 11300 1
## 11301 1
## 11302 1
## 11303 1
## 11304 1
## 11305 1
## 11306 1
## 11307 1
## 11308 1
## 11309 1
## 11310 1
## 11311 1
## 11312 1
## 11313 1
## 11314 1
## 11315 1
## 11316 1
## 11317 1
## 11318 1
## 11319 1
## 11320 1
## 11321 1
## 11322 1
## 11323 1
## 11324 1
## 11325 1
## 11326 1
## 11327 1
## 11328 1
## 11329 1
## 11330 1
## 11331 1
## 11332 1
## 11333 1
## 11334 1
## 11335 1
## 11336 1
## 11337 1
## 11338 1
## 11339 1
## 11340 1
## 11341 1
## 11342 1
## 11343 1
## 11344 1
## 11345 1
## 11346 1
## 11347 1
## 11348 1
## 11349 1
## 11350 1
## 11351 1
## 11352 1
## 11353 1
## 11354 1
## 11355 1
## 11356 1
## 11357 1
## 11358 1
## 11359 1
## 11360 1
## 11361 1
## 11362 1
## 11363 1
## 11364 1
## 11365 1
## 11366 1
## 11367 1
## 11368 1
## 11369 1
## 11370 1
## 11371 1
## 11372 1
## 11373 1
## 11374 1
## 11375 1
## 11376 1
## 11377 1
## 11378 1
## 11379 1
## 11380 1
## 11381 1
## 11382 1
## 11383 1
## 11384 1
## 11385 1
## 11386 1
## 11387 1
## 11388 1
## 11389 1
## 11390 1
## 11391 1
## 11392 1
## 11393 1
## 11394 1
## 11395 1
## 11396 1
## 11397 1
## 11398 1
## 11399 1
## 11400 1
## 11401 1
## 11402 1
## 11403 1
## 11404 1
## 11405 1
## 11406 1
## 11407 1
## 11408 1
## 11409 1
## 11410 1
## 11411 1
## 11412 1
## 11413 1
## 11414 1
## 11415 1
## 11416 1
## 11417 1
## 11418 1
## 11419 1
## 11420 1
## 11421 1
## 11422 1
## 11423 1
## 11424 1
## 11425 1
## 11426 1
## 11427 1
## 11428 1
## 11429 1
## 11430 1
## 11431 1
## 11432 1
## 11433 1
## 11434 1
## 11435 1
## 11436 1
## 11437 1
## 11438 1
## 11439 1
## 11440 1
## 11441 1
## 11442 1
## 11443 1
## 11444 1
## 11445 1
## 11446 1
## 11447 1
## 11448 1
## 11449 1
## 11450 1
## 11451 1
## 11452 1
## 11453 1
## 11454 1
## 11455 1
## 11456 1
## 11457 1
## 11458 1
## 11459 1
## 11460 1
## 11461 1
## 11462 1
## 11463 1
## 11464 1
## 11465 1
## 11466 1
## 11467 1
## 11468 1
## 11469 1
## 11470 1
## 11471 1
## 11472 1
## 11473 1
## 11474 1
## 11475 1
## 11476 1
## 11477 1
## 11478 1
## 11479 1
## 11480 1
## 11481 1
## 11482 1
## 11483 1
## 11484 1
## 11485 1
## 11486 1
## 11487 1
## 11488 1
## 11489 1
## 11490 1
## 11491 1
## 11492 1
## 11493 1
## 11494 1
## 11495 1
## 11496 1
## 11497 1
## 11498 1
## 11499 1
## 11500 1
## 11501 1
## 11502 1
## 11503 1
## 11504 1
## 11505 1
## 11506 1
## 11507 1
## 11508 1
## 11509 1
## 11510 1
## 11511 1
## 11512 1
## 11513 1
## 11514 1
## 11515 1
## 11516 1
## 11517 1
## 11518 1
## 11519 1
## 11520 1
## 11521 1
## 11522 1
## 11523 1
## 11524 1
## 11525 1
## 11526 1
## 11527 1
## 11528 1
## 11529 1
## 11530 1
## 11531 1
## 11532 1
## 11533 1
## 11534 1
## 11535 1
## 11536 1
## 11537 1
## 11538 1
## 11539 1
## 11540 1
## 11541 1
## 11542 1
## 11543 1
## 11544 1
## 11545 1
## 11546 1
## 11547 1
## 11548 1
## 11549 1
## 11550 1
## 11551 1
## 11552 1
## 11553 1
## 11554 1
## 11555 1
## 11556 1
## 11557 1
## 11558 1
## 11559 1
## 11560 1
## 11561 1
## 11562 1
## 11563 1
## 11564 1
## 11565 1
## 11566 1
## 11567 1
## 11568 1
## 11569 1
## 11570 1
## 11571 1
## 11572 1
## 11573 1
## 11574 1
## 11575 1
## 11576 1
## 11577 1
## 11578 1
## 11579 1
## 11580 1
## 11581 1
## 11582 1
## 11583 1
## 11584 1
## 11585 1
## 11586 1
## 11587 1
## 11588 1
## 11589 1
## 11590 1
## 11591 1
## 11592 1
## 11593 1
## 11594 1
## 11595 1
## 11596 1
## 11597 1
## 11598 1
## 11599 1
## 11600 1
## 11601 1
## 11602 1
## 11603 1
## 11604 1
## 11605 1
## 11606 1
## 11607 1
## 11608 1
## 11609 1
## 11610 1
## 11611 1
## 11612 1
## 11613 1
## 11614 1
## 11615 1
## 11616 1
## 11617 1
## 11618 1
## 11619 1
## 11620 1
## 11621 1
## 11622 1
## 11623 1
## 11624 1
## 11625 1
## 11626 1
## 11627 1
## 11628 1
## 11629 1
## 11630 1
## 11631 1
## 11632 1
## 11633 1
## 11634 1
## 11635 1
## 11636 1
## 11637 1
## 11638 1
## 11639 1
## 11640 1
## 11641 1
## 11642 1
## 11643 1
## 11644 1
## 11645 1
## 11646 1
## 11647 1
## 11648 1
## 11649 1
## 11650 1
## 11651 1
## 11652 1
## 11653 1
## 11654 1
## 11655 1
## 11656 1
## 11657 1
## 11658 1
## 11659 1
## 11660 1
## 11661 1
## 11662 1
## 11663 1
## 11664 1
## 11665 1
## 11666 1
## 11667 1
## 11668 1
## 11669 1
## 11670 1
## 11671 1
## 11672 1
## 11673 1
## 11674 1
## 11675 1
## 11676 1
## 11677 1
## 11678 1
## 11679 1
## 11680 1
## 11681 1
## 11682 1
## 11683 1
## 11684 1
## 11685 1
## 11686 1
## 11687 1
## 11688 1
## 11689 1
## 11690 1
## 11691 1
## 11692 1
## 11693 1
## 11694 1
## 11695 1
## 11696 1
## 11697 1
## 11698 1
## 11699 1
## 11700 1
## 11701 1
## 11702 1
## 11703 1
## 11704 1
## 11705 1
## 11706 1
## 11707 1
## 11708 1
## 11709 1
## 11710 1
## 11711 1
## 11712 1
## 11713 1
## 11714 1
## 11715 1
## 11716 1
## 11717 1
## 11718 1
## 11719 1
## 11720 1
## 11721 1
## 11722 1
## 11723 1
## 11724 1
## 11725 1
## 11726 1
## 11727 1
## 11728 1
## 11729 1
## 11730 1
## 11731 1
## 11732 1
## 11733 1
## 11734 1
## 11735 1
## 11736 1
## 11737 1
## 11738 1
## 11739 1
## 11740 1
## 11741 1
## 11742 1
## 11743 1
## 11744 1
## 11745 1
## 11746 1
## 11747 1
## 11748 1
## 11749 1
## 11750 1
## 11751 1
## 11752 1
## 11753 1
## 11754 1
## 11755 1
## 11756 1
## 11757 1
## 11758 1
## 11759 1
## 11760 1
## 11761 1
## 11762 1
## 11763 1
## 11764 1
## 11765 1
## 11766 1
## 11767 1
## 11768 1
## 11769 1
## 11770 1
## 11771 1
## 11772 1
## 11773 1
## 11774 1
## 11775 1
## 11776 1
## 11777 1
## 11778 1
## 11779 1
## 11780 1
## 11781 1
## 11782 1
## 11783 1
## 11784 1
## 11785 1
## 11786 1
## 11787 1
## 11788 1
## 11789 1
## 11790 1
## 11791 1
## 11792 1
## 11793 1
## 11794 1
## 11795 1
## 11796 1
## 11797 1
## 11798 1
## 11799 1
## 11800 1
## 11801 1
## 11802 1
## 11803 1
## 11804 1
## 11805 1
## 11806 1
## 11807 1
## 11808 1
## 11809 1
## 11810 1
## 11811 1
## 11812 1
## 11813 1
## 11814 1
## 11815 1
## 11816 1
## 11817 1
## 11818 1
## 11819 1
## 11820 1
## 11821 1
## 11822 1
## 11823 1
## 11824 1
## 11825 1
## 11826 1
## 11827 1
## 11828 1
## 11829 1
## 11830 1
## 11831 1
## 11832 1
## 11833 1
## 11834 1
## 11835 1
## 11836 1
## 11837 1
## 11838 1
## 11839 1
## 11840 1
## 11841 1
## 11842 1
## 11843 1
## 11844 1
## 11845 1
## 11846 1
## 11847 1
## 11848 1
## 11849 1
## 11850 1
## 11851 1
## 11852 1
## 11853 1
## 11854 1
## 11855 1
## 11856 1
## 11857 1
## 11858 1
## 11859 1
## 11860 1
## 11861 1
## 11862 1
## 11863 1
## 11864 1
## 11865 1
## 11866 1
## 11867 1
## 11868 1
## 11869 1
## 11870 1
## 11871 1
## 11872 1
## 11873 1
## 11874 1
## 11875 1
## 11876 1
## 11877 1
## 11878 1
## 11879 1
## 11880 1
## 11881 1
## 11882 1
## 11883 1
## 11884 1
## 11885 1
## 11886 1
## 11887 1
## 11888 1
## 11889 1
## 11890 1
## 11891 1
## 11892 1
## 11893 1
## 11894 1
## 11895 1
## 11896 1
## 11897 1
## 11898 1
## 11899 1
## 11900 1
## 11901 1
## 11902 1
## 11903 1
## 11904 1
## 11905 1
## 11906 1
## 11907 1
## 11908 1
## 11909 1
## 11910 1
## 11911 1
## 11912 1
## 11913 1
## 11914 1
## 11915 1
## 11916 1
## 11917 1
## 11918 1
## 11919 1
## 11920 1
## 11921 1
## 11922 1
## 11923 1
## 11924 1
## 11925 1
## 11926 1
## 11927 1
## 11928 1
## 11929 1
## 11930 1
## 11931 1
## 11932 1
## 11933 1
## 11934 1
## 11935 1
## 11936 1
## 11937 1
## 11938 1
## 11939 1
## 11940 1
## 11941 1
## 11942 1
## 11943 1
## 11944 1
## 11945 1
## 11946 1
## 11947 1
## 11948 1
## 11949 1
## 11950 1
## 11951 1
## 11952 1
## 11953 1
## 11954 1
## 11955 1
## 11956 1
## 11957 1
## 11958 1
## 11959 1
## 11960 1
## 11961 1
## 11962 1
## 11963 1
## 11964 1
## 11965 1
## 11966 1
## 11967 1
## 11968 1
## 11969 1
## 11970 1
## 11971 1
## 11972 1
## 11973 1
## 11974 1
## 11975 1
## 11976 1
## 11977 1
## 11978 1
## 11979 1
## 11980 1
## 11981 1
## 11982 1
## 11983 1
## 11984 1
## 11985 1
## 11986 1
## 11987 1
## 11988 1
## 11989 1
## 11990 1
## 11991 1
## 11992 1
## 11993 1
## 11994 1
## 11995 1
## 11996 1
## 11997 1
## 11998 1
## 11999 1
## 12000 1
## 12001 1
## 12002 1
## 12003 1
## 12004 1
## 12005 1
## 12006 1
## 12007 1
## 12008 1
## 12009 1
## 12010 1
## 12011 1
## 12012 1
## 12013 1
## 12014 1
## 12015 1
## 12016 1
## 12017 1
## 12018 1
## 12019 1
## 12020 1
## 12021 1
## 12022 1
## 12023 1
## 12024 1
## 12025 1
## 12026 1
## 12027 1
## 12028 1
## 12029 1
## 12030 1
## 12031 1
## 12032 1
## 12033 1
## 12034 1
## 12035 1
## 12036 1
## 12037 1
## 12038 1
## 12039 1
## 12040 1
## 12041 1
## 12042 1
## 12043 1
## 12044 1
## 12045 1
## 12046 1
## 12047 1
## 12048 1
## 12049 1
## 12050 1
## 12051 1
## 12052 1
## 12053 1
## 12054 1
## 12055 1
## 12056 1
## 12057 1
## 12058 1
## 12059 1
## 12060 1
## 12061 1
## 12062 1
## 12063 1
## 12064 1
## 12065 1
## 12066 1
## 12067 1
## 12068 1
## 12069 1
## 12070 1
## 12071 1
## 12072 1
## 12073 1
## 12074 1
## 12075 1
## 12076 1
## 12077 1
## 12078 1
## 12079 1
## 12080 1
## 12081 1
## 12082 1
## 12083 1
## 12084 1
## 12085 1
## 12086 1
## 12087 1
## 12088 1
## 12089 1
## 12090 1
## 12091 1
## 12092 1
## 12093 1
## 12094 1
## 12095 1
## 12096 1
## 12097 1
## 12098 1
## 12099 1
## 12100 1
## 12101 1
## 12102 1
## 12103 1
## 12104 1
## 12105 1
## 12106 1
## 12107 1
## 12108 1
## 12109 1
## 12110 1
## 12111 1
## 12112 1
## 12113 1
## 12114 1
## 12115 1
## 12116 1
## 12117 1
## 12118 1
## 12119 1
## 12120 1
## 12121 1
## 12122 1
## 12123 1
## 12124 1
## 12125 1
## 12126 1
## 12127 1
## 12128 1
## 12129 1
## 12130 1
## 12131 1
## 12132 1
## 12133 1
## 12134 1
## 12135 1
## 12136 1
## 12137 1
## 12138 1
## 12139 1
## 12140 1
## 12141 1
## 12142 1
## 12143 1
## 12144 1
## 12145 1
## 12146 1
## 12147 1
## 12148 1
## 12149 1
## 12150 1
## 12151 1
## 12152 1
## 12153 1
## 12154 1
## 12155 1
## 12156 1
## 12157 1
## 12158 1
## 12159 1
## 12160 1
## 12161 1
## 12162 1
## 12163 1
## 12164 1
## 12165 1
## 12166 1
## 12167 1
## 12168 1
## 12169 1
## 12170 1
## 12171 1
## 12172 1
## 12173 1
## 12174 1
## 12175 1
## 12176 1
## 12177 1
## 12178 1
## 12179 1
## 12180 1
## 12181 1
## 12182 1
## 12183 1
## 12184 1
## 12185 1
## 12186 1
## 12187 1
## 12188 1
## 12189 1
## 12190 1
## 12191 1
## 12192 1
## 12193 1
## 12194 1
## 12195 1
## 12196 1
## 12197 1
## 12198 1
## 12199 1
## 12200 1
## 12201 1
## 12202 1
## 12203 1
## 12204 1
## 12205 1
## 12206 1
## 12207 1
## 12208 1
## 12209 1
## 12210 1
## 12211 1
## 12212 1
## 12213 1
## 12214 1
## 12215 1
## 12216 1
## 12217 1
## 12218 1
## 12219 1
## 12220 1
## 12221 1
## 12222 1
## 12223 1
## 12224 1
## 12225 1
## 12226 1
## 12227 1
## 12228 1
## 12229 1
## 12230 1
## 12231 1
## 12232 1
## 12233 1
## 12234 1
## 12235 1
## 12236 1
## 12237 1
## 12238 1
## 12239 1
## 12240 1
## 12241 1
## 12242 1
## 12243 1
## 12244 1
## 12245 1
## 12246 1
## 12247 1
## 12248 1
## 12249 1
## 12250 1
## 12251 1
## 12252 1
## 12253 1
## 12254 1
## 12255 1
## 12256 1
## 12257 1
## 12258 1
## 12259 1
## 12260 1
## 12261 1
## 12262 1
## 12263 1
## 12264 1
## 12265 1
## 12266 1
## 12267 1
## 12268 1
## 12269 1
## 12270 1
## 12271 1
## 12272 1
## 12273 1
## 12274 1
## 12275 1
## 12276 1
## 12277 1
## 12278 1
## 12279 1
## 12280 1
## 12281 1
## 12282 1
## 12283 1
## 12284 1
## 12285 1
## 12286 1
## 12287 1
## 12288 1
## 12289 1
## 12290 1
## 12291 1
## 12292 1
## 12293 1
## 12294 1
## 12295 1
## 12296 1
## 12297 1
## 12298 1
## 12299 1
## 12300 1
## 12301 1
## 12302 1
## 12303 1
## 12304 1
## 12305 1
## 12306 1
## 12307 1
## 12308 1
## 12309 1
## 12310 1
## 12311 1
## 12312 1
## 12313 1
## 12314 1
## 12315 1
## 12316 1
## 12317 1
## 12318 1
## 12319 1
## 12320 1
## 12321 1
## 12322 1
## 12323 1
## 12324 1
## 12325 1
## 12326 1
## 12327 1
## 12328 1
## 12329 1
## 12330 1
## 12331 1
## 12332 1
## 12333 1
## 12334 1
## 12335 1
## 12336 1
## 12337 1
## 12338 1
## 12339 1
## 12340 1
## 12341 1
## 12342 1
## 12343 1
## 12344 1
## 12345 1
## 12346 1
## 12347 1
## 12348 1
## 12349 1
## 12350 1
## 12351 1
## 12352 1
## 12353 1
## 12354 1
## 12355 1
## 12356 1
## 12357 1
## 12358 1
## 12359 1
## 12360 1
## 12361 1
## 12362 1
## 12363 1
## 12364 1
## 12365 1
## 12366 1
## 12367 1
## 12368 1
## 12369 1
## 12370 1
## 12371 1
## 12372 1
## 12373 1
## 12374 1
## 12375 1
## 12376 1
## 12377 1
## 12378 1
## 12379 1
## 12380 1
## 12381 1
## 12382 1
## 12383 1
## 12384 1
## 12385 1
## 12386 1
## 12387 1
## 12388 1
## 12389 1
## 12390 1
## 12391 1
## 12392 1
## 12393 1
## 12394 1
## 12395 1
## 12396 1
## 12397 1
## 12398 1
## 12399 1
## 12400 1
## 12401 1
## 12402 1
## 12403 1
## 12404 1
## 12405 1
## 12406 1
## 12407 1
## 12408 1
## 12409 1
## 12410 1
## 12411 1
## 12412 1
## 12413 1
## 12414 1
## 12415 1
## 12416 1
## 12417 1
## 12418 1
## 12419 1
## 12420 1
## 12421 1
## 12422 1
## 12423 1
## 12424 1
## 12425 1
## 12426 1
## 12427 1
## 12428 1
## 12429 1
## 12430 1
## 12431 1
## 12432 1
## 12433 1
## 12434 1
## 12435 1
## 12436 1
## 12437 1
## 12438 1
## 12439 1
## 12440 1
## 12441 1
## 12442 1
## 12443 1
## 12444 1
## 12445 1
## 12446 1
## 12447 1
## 12448 1
## 12449 1
## 12450 1
## 12451 1
## 12452 1
## 12453 1
## 12454 1
## 12455 1
## 12456 1
## 12457 1
## 12458 1
## 12459 1
## 12460 1
## 12461 1
## 12462 1
## 12463 1
## 12464 1
## 12465 1
## 12466 1
## 12467 1
## 12468 1
## 12469 1
## 12470 1
## 12471 1
## 12472 1
## 12473 1
## 12474 1
## 12475 1
## 12476 1
## 12477 1
## 12478 1
## 12479 1
## 12480 1
## 12481 1
## 12482 1
## 12483 1
## 12484 1
## 12485 1
## 12486 1
## 12487 1
## 12488 1
## 12489 1
## 12490 1
## 12491 1
## 12492 1
## 12493 1
## 12494 1
## 12495 1
## 12496 1
## 12497 1
## 12498 1
## 12499 1
## 12500 1
## 12501 1
## 12502 1
## 12503 1
## 12504 1
## 12505 1
## 12506 1
## 12507 1
## 12508 1
## 12509 1
## 12510 1
## 12511 1
## 12512 1
## 12513 1
## 12514 1
## 12515 1
## 12516 1
## 12517 1
## 12518 1
## 12519 1
## 12520 1
## 12521 1
## 12522 1
## 12523 1
## 12524 1
## 12525 1
## 12526 1
## 12527 1
## 12528 1
## 12529 1
## 12530 1
## 12531 1
## 12532 1
## 12533 1
## 12534 1
## 12535 1
## 12536 1
## 12537 1
## 12538 1
## 12539 1
## 12540 1
## 12541 1
## 12542 1
## 12543 1
## 12544 1
## 12545 1
## 12546 1
## 12547 1
## 12548 1
## 12549 1
## 12550 1
## 12551 1
## 12552 1
## 12553 1
## 12554 1
## 12555 1
## 12556 1
## 12557 1
## 12558 1
## 12559 1
## 12560 1
## 12561 1
## 12562 1
## 12563 1
## 12564 1
## 12565 1
## 12566 1
## 12567 1
## 12568 1
## 12569 1
## 12570 1
## 12571 1
## 12572 1
## 12573 1
## 12574 1
## 12575 1
## 12576 1
## 12577 1
## 12578 1
## 12579 1
## 12580 1
## 12581 1
## 12582 1
## 12583 1
## 12584 1
## 12585 1
## 12586 1
## 12587 1
## 12588 1
## 12589 1
## 12590 1
## 12591 1
## 12592 1
## 12593 1
## 12594 1
## 12595 1
## 12596 1
## 12597 1
## 12598 1
## 12599 1
## 12600 1
## 12601 1
## 12602 1
## 12603 1
## 12604 1
## 12605 1
## 12606 1
## 12607 1
## 12608 1
## 12609 1
## 12610 1
## 12611 1
## 12612 1
## 12613 1
## 12614 1
## 12615 1
## 12616 1
## 12617 1
## 12618 1
## 12619 1
## 12620 1
## 12621 1
## 12622 1
## 12623 1
## 12624 1
## 12625 1
## 12626 1
## 12627 1
## 12628 1
## 12629 1
## 12630 1
## 12631 1
## 12632 1
## 12633 1
## 12634 1
## 12635 1
## 12636 1
## 12637 1
## 12638 1
## 12639 1
## 12640 1
## 12641 1
## 12642 1
## 12643 1
## 12644 1
## 12645 1
## 12646 1
## 12647 1
## 12648 1
## 12649 1
## 12650 1
## 12651 1
## 12652 1
## 12653 1
## 12654 1
## 12655 1
## 12656 1
## 12657 1
## 12658 1
## 12659 1
## 12660 1
## 12661 1
## 12662 1
## 12663 1
## 12664 1
## 12665 1
## 12666 1
## 12667 1
## 12668 1
## 12669 1
## 12670 1
## 12671 1
## 12672 1
## 12673 1
## 12674 1
## 12675 1
## 12676 1
## 12677 1
## 12678 1
## 12679 1
## 12680 1
## 12681 1
## 12682 1
## 12683 1
## 12684 1
## 12685 1
## 12686 1
## 12687 1
## 12688 1
## 12689 1
## 12690 1
## 12691 1
## 12692 1
## 12693 1
## 12694 1
## 12695 1
## 12696 1
## 12697 1
## 12698 1
## 12699 1
## 12700 1
## 12701 1
## 12702 1
## 12703 1
## 12704 1
## 12705 1
## 12706 1
## 12707 1
## 12708 1
## 12709 1
## 12710 1
## 12711 1
## 12712 1
## 12713 1
## 12714 1
## 12715 1
## 12716 1
## 12717 1
## 12718 1
## 12719 1
## 12720 1
## 12721 1
## 12722 1
## 12723 1
## 12724 1
## 12725 1
## 12726 1
## 12727 1
## 12728 1
## 12729 1
## 12730 1
## 12731 1
## 12732 1
## 12733 1
## 12734 1
## 12735 1
## 12736 1
## 12737 1
## 12738 1
## 12739 1
## 12740 1
## 12741 1
## 12742 1
## 12743 1
## 12744 1
## 12745 1
## 12746 1
## 12747 1
## 12748 1
## 12749 1
## 12750 1
## 12751 1
## 12752 1
## 12753 1
## 12754 1
## 12755 1
## 12756 1
## 12757 1
## 12758 1
## 12759 1
## 12760 1
## 12761 1
## 12762 1
## 12763 1
## 12764 1
## 12765 1
## 12766 1
## 12767 1
## 12768 1
## 12769 1
## 12770 1
## 12771 1
## 12772 1
## 12773 1
## 12774 1
## 12775 1
## 12776 1
## 12777 1
## 12778 1
## 12779 1
## 12780 1
## 12781 1
## 12782 1
## 12783 1
## 12784 1
## 12785 1
## 12786 1
## 12787 1
## 12788 1
count(dfmerge, ReturnToWorkDate, sort=TRUE)
##      ReturnToWorkDate    n
## 1            #¡VALOR! 5080
## 2          11/07/2013   10
## 3          12/09/2011   10
## 4          22/05/2008   10
## 5          07/03/2013    9
## 6          13/03/2014    9
## 7          28/02/2007    9
## 8          02/09/2004    8
## 9          05/06/2014    8
## 10         05/08/2013    8
## 11         05/09/1996    8
## 12         08/11/2012    8
## 13         13/06/1996    8
## 14         15/04/1997    8
## 15         17/04/2012    8
## 16         20/06/1996    8
## 17         20/10/2010    8
## 18         22/10/2013    8
## 19         01/08/2011    7
## 20         02/04/2013    7
## 21         02/07/1996    7
## 22         03/10/2013    7
## 23         06/11/2012    7
## 24         07/10/1997    7
## 25         08/03/2013    7
## 26         08/07/1996    7
## 27         08/08/2008    7
## 28         08/08/2011    7
## 29         09/09/2013    7
## 30         09/10/2013    7
## 31         10/12/2012    7
## 32         11/03/2013    7
## 33         11/06/2013    7
## 34         12/08/1996    7
## 35         13/08/2012    7
## 36         17/07/2013    7
## 37         17/09/2012    7
## 38         18/09/1996    7
## 39         19/02/2014    7
## 40         20/01/2011    7
## 41         23/03/2012    7
## 42         24/03/2006    7
## 43         24/10/2013    7
## 44         25/03/2013    7
## 45         26/03/1997    7
## 46         26/03/2012    7
## 47         26/11/1996    7
## 48         28/06/2004    7
## 49         28/08/1996    7
## 50         03/05/2012    6
## 51         04/10/2013    6
## 52         06/02/2012    6
## 53         06/02/2014    6
## 54         07/09/2013    6
## 55         08/04/2013    6
## 56         08/09/2011    6
## 57         08/10/1996    6
## 58         08/10/2010    6
## 59         08/10/2012    6
## 60         10/04/2014    6
## 61         11/09/2008    6
## 62         11/12/2012    6
## 63         12/05/1997    6
## 64         12/05/2008    6
## 65         12/08/1997    6
## 66         13/01/1997    6
## 67         13/01/2006    6
## 68         14/02/2014    6
## 69         14/04/1997    6
## 70         14/04/2014    6
## 71         14/12/2005    6
## 72         15/03/2013    6
## 73         15/05/2013    6
## 74         16/07/1996    6
## 75         16/09/2013    6
## 76         16/10/2006    6
## 77         16/10/2008    6
## 78         16/12/1996    6
## 79         16/12/2004    6
## 80         16/12/2009    6
## 81         18/12/2012    6
## 82         19/03/2013    6
## 83         19/03/2014    6
## 84         19/04/1996    6
## 85         20/02/2006    6
## 86         20/02/2012    6
## 87         20/08/2013    6
## 88         20/11/2006    6
## 89         21/02/2011    6
## 90         21/02/2013    6
## 91         21/04/2014    6
## 92         21/05/1996    6
## 93         21/09/2005    6
## 94         22/01/2014    6
## 95         22/02/2013    6
## 96         22/03/2006    6
## 97         22/05/2012    6
## 98         22/09/2004    6
## 99         22/10/2007    6
## 100        22/11/2010    6
## 101        24/02/2012    6
## 102        26/01/2011    6
## 103        27/01/2014    6
## 104        27/03/2013    6
## 105        28/03/2012    6
## 106        30/04/1996    6
## 107        30/04/2012    6
## 108        30/07/2008    6
## 109        30/09/2013    6
## 110        01/05/2014    5
## 111        01/06/2013    5
## 112        01/10/1996    5
## 113        01/10/2012    5
## 114        02/04/2014    5
## 115        02/06/1997    5
## 116        02/06/2011    5
## 117        02/12/2011    5
## 118        02/12/2013    5
## 119        03/01/2005    5
## 120        03/02/2004    5
## 121        03/05/2011    5
## 122        03/07/2012    5
## 123        03/09/2013    5
## 124        03/10/2005    5
## 125        03/10/2012    5
## 126        04/06/2013    5
## 127        04/11/2008    5
## 128        04/11/2013    5
## 129        05/06/2006    5
## 130        05/09/2012    5
## 131        05/11/2013    5
## 132        06/01/2014    5
## 133        06/03/2014    5
## 134        06/04/2006    5
## 135        06/05/2014    5
## 136        06/08/1996    5
## 137        06/12/2013    5
## 138        07/01/2010    5
## 139        07/05/1996    5
## 140        07/06/1996    5
## 141        08/02/2012    5
## 142        08/03/2005    5
## 143        08/05/2012    5
## 144        08/11/2010    5
## 145        09/01/2014    5
## 146        09/04/2014    5
## 147        09/05/1997    5
## 148        09/07/2009    5
## 149        10/07/2013    5
## 150        10/09/2013    5
## 151        10/12/1996    5
## 152        11/02/2013    5
## 153        11/04/2007    5
## 154        12/02/2013    5
## 155        12/03/2012    5
## 156        13/03/1997    5
## 157        13/05/1997    5
## 158        13/07/2004    5
## 159        14/02/2011    5
## 160        14/07/2004    5
## 161        14/12/2012    5
## 162        15/03/2006    5
## 163        15/04/2008    5
## 164        15/06/2006    5
## 165        15/07/2013    5
## 166        15/08/2013    5
## 167        15/11/2011    5
## 168        16/02/2012    5
## 169        16/05/1996    5
## 170        16/11/2005    5
## 171        17/01/2014    5
## 172        17/05/2013    5
## 173        17/10/2011    5
## 174        18/02/2013    5
## 175        18/04/2014    5
## 176        19/03/1997    5
## 177        19/05/2014    5
## 178        19/07/1996    5
## 179        19/07/2013    5
## 180        19/08/2013    5
## 181        20/05/1996    5
## 182        20/05/1997    5
## 183        20/05/2013    5
## 184        20/10/1997    5
## 185        21/03/2012    5
## 186        21/08/2013    5
## 187        21/10/1996    5
## 188        21/12/2005    5
## 189        22/04/1996    5
## 190        22/06/2007    5
## 191        22/06/2012    5
## 192        22/10/1996    5
## 193        23/05/2012    5
## 194        23/05/2013    5
## 195        24/06/2004    5
## 196        25/01/2005    5
## 197        25/01/2013    5
## 198        25/02/2014    5
## 199        25/06/1997    5
## 200        25/06/2008    5
## 201        25/07/2011    5
## 202        25/08/1997    5
## 203        26/01/2006    5
## 204        26/08/2013    5
## 205        26/09/1996    5
## 206        26/09/2013    5
## 207        27/02/2007    5
## 208        27/06/1997    5
## 209        27/06/2011    5
## 210        27/07/2012    5
## 211        27/09/2006    5
## 212        27/10/1997    5
## 213        28/01/2004    5
## 214        28/03/2006    5
## 215        28/05/2014    5
## 216        28/06/2013    5
## 217        29/06/2011    5
## 218        29/11/2010    5
## 219        30/03/2012    5
## 220        30/07/2012    5
## 221        30/09/2008    5
## 222        30/10/2013    5
## 223        31/01/2013    5
## 224        31/05/2007    5
## 225        31/08/2006    5
## 226        01/02/2012    4
## 227        01/03/2007    4
## 228        01/03/2012    4
## 229        01/05/1996    4
## 230        01/05/2007    4
## 231        01/05/2013    4
## 232        01/08/2013    4
## 233        01/10/2008    4
## 234        02/01/1997    4
## 235        02/02/2010    4
## 236        02/05/1996    4
## 237        02/07/1997    4
## 238        02/07/2012    4
## 239        02/07/2013    4
## 240        02/08/1996    4
## 241        02/08/2010    4
## 242        02/12/2005    4
## 243        03/01/2011    4
## 244        03/02/1997    4
## 245        03/03/2008    4
## 246        03/04/1996    4
## 247        03/04/1998    4
## 248        03/06/2011    4
## 249        03/07/2007    4
## 250        03/12/2012    4
## 251        04/02/2014    4
## 252        04/04/2011    4
## 253        04/11/1996    4
## 254        04/11/2011    4
## 255        04/12/2008    4
## 256        05/01/2006    4
## 257        05/01/2011    4
## 258        05/02/2013    4
## 259        05/02/2014    4
## 260        05/03/2010    4
## 261        05/03/2013    4
## 262        05/06/1997    4
## 263        05/06/2013    4
## 264        05/11/2008    4
## 265        06/04/2005    4
## 266        06/04/2009    4
## 267        06/05/1996    4
## 268        06/06/2011    4
## 269        06/06/2014    4
## 270        06/11/1996    4
## 271        06/11/2013    4
## 272        06/12/2011    4
## 273        07/01/2013    4
## 274        07/04/2008    4
## 275        07/04/2012    4
## 276        07/05/2012    4
## 277        07/08/2006    4
## 278        07/09/1996    4
## 279        07/11/2011    4
## 280        07/12/2011    4
## 281        08/01/2010    4
## 282        08/02/2010    4
## 283        08/03/2012    4
## 284        08/08/1996    4
## 285        08/08/2013    4
## 286        08/09/2006    4
## 287        08/10/2013    4
## 288        08/12/2004    4
## 289        08/12/2005    4
## 290        09/01/1997    4
## 291        09/01/1998    4
## 292        09/01/2012    4
## 293        09/05/2014    4
## 294        09/06/1997    4
## 295        09/08/2007    4
## 296        09/11/2010    4
## 297        10/01/2012    4
## 298        10/02/1997    4
## 299        10/03/1997    4
## 300        10/03/2010    4
## 301        10/05/1996    4
## 302        10/06/2013    4
## 303        10/10/1996    4
## 304        10/10/2011    4
## 305        10/10/2012    4
## 306        10/12/2009    4
## 307        11/02/1997    4
## 308        11/04/2006    4
## 309        11/04/2014    4
## 310        11/07/1997    4
## 311        11/07/2008    4
## 312        11/08/2005    4
## 313        11/09/1996    4
## 314        11/09/2012    4
## 315        11/10/2013    4
## 316        11/12/2013    4
## 317        12/01/2005    4
## 318        12/03/2014    4
## 319        12/04/1996    4
## 320        12/04/2011    4
## 321        12/05/2014    4
## 322        12/07/2010    4
## 323        12/09/2005    4
## 324        12/11/2004    4
## 325        12/12/2007    4
## 326        13/02/2006    4
## 327        13/05/1996    4
## 328        13/11/1996    4
## 329        13/12/2012    4
## 330        13/12/2013    4
## 331        14/02/2012    4
## 332        14/02/2013    4
## 333        14/03/2006    4
## 334        14/03/2007    4
## 335        14/03/2014    4
## 336        14/05/1996    4
## 337        14/05/2014    4
## 338        14/06/2012    4
## 339        14/07/1996    4
## 340        14/08/2006    4
## 341        14/11/1997    4
## 342        15/02/2013    4
## 343        15/03/2010    4
## 344        15/04/2013    4
## 345        15/07/2008    4
## 346        15/07/2010    4
## 347        15/08/2006    4
## 348        15/10/2008    4
## 349        15/10/2012    4
## 350        15/12/2011    4
## 351        16/01/1997    4
## 352        16/01/2013    4
## 353        16/04/1996    4
## 354        16/04/2008    4
## 355        16/04/2014    4
## 356        16/05/2007    4
## 357        16/05/2012    4
## 358        16/07/2013    4
## 359        16/09/2004    4
## 360        16/09/2010    4
## 361        16/10/2013    4
## 362        16/12/1997    4
## 363        16/12/2010    4
## 364        16/12/2012    4
## 365        16/12/2013    4
## 366        17/01/2013    4
## 367        17/02/2012    4
## 368        17/02/2014    4
## 369        17/03/1998    4
## 370        17/03/2014    4
## 371        17/04/2006    4
## 372        17/06/2010    4
## 373        17/11/2011    4
## 374        18/04/1997    4
## 375        18/04/2005    4
## 376        18/06/1996    4
## 377        18/06/2008    4
## 378        18/06/2014    4
## 379        18/09/2007    4
## 380        18/10/2013    4
## 381        18/11/2005    4
## 382        18/11/2011    4
## 383        18/12/2006    4
## 384        18/12/2013    4
## 385        19/03/1996    4
## 386        19/03/2012    4
## 387        19/06/2006    4
## 388        19/06/2013    4
## 389        19/06/2014    4
## 390        19/08/1996    4
## 391        19/08/2002    4
## 392        19/08/2004    4
## 393        19/09/1996    4
## 394        19/09/2013    4
## 395        19/10/2012    4
## 396        19/12/2011    4
## 397        20/02/1997    4
## 398        20/03/2014    4
## 399        20/04/2009    4
## 400        20/05/2010    4
## 401        20/06/2006    4
## 402        20/07/2006    4
## 403        20/08/2004    4
## 404        20/09/2005    4
## 405        20/12/2005    4
## 406        21/02/2014    4
## 407        21/05/1997    4
## 408        21/05/2007    4
## 409        21/07/2010    4
## 410        21/08/2007    4
## 411        21/09/2012    4
## 412        21/12/2009    4
## 413        22/01/2004    4
## 414        22/01/2008    4
## 415        22/02/2010    4
## 416        22/03/2004    4
## 417        22/03/2013    4
## 418        22/03/2014    4
## 419        22/05/1997    4
## 420        22/05/2013    4
## 421        22/07/1996    4
## 422        22/09/2009    4
## 423        22/09/2010    4
## 424        22/11/2013    4
## 425        23/01/2004    4
## 426        23/01/2012    4
## 427        23/01/2014    4
## 428        23/02/2012    4
## 429        23/04/1996    4
## 430        23/06/1997    4
## 431        23/06/2008    4
## 432        23/09/1996    4
## 433        23/09/2010    4
## 434        23/10/2007    4
## 435        24/04/2013    4
## 436        24/08/2006    4
## 437        24/09/2012    4
## 438        24/11/1997    4
## 439        25/03/1997    4
## 440        25/03/2014    4
## 441        25/04/1996    4
## 442        25/04/1997    4
## 443        25/05/2006    4
## 444        25/06/2014    4
## 445        25/08/2009    4
## 446        25/09/1996    4
## 447        25/09/2008    4
## 448        25/09/2013    4
## 449        25/10/2010    4
## 450        26/01/2007    4
## 451        26/02/2013    4
## 452        26/03/2008    4
## 453        26/03/2014    4
## 454        26/04/2004    4
## 455        26/05/1997    4
## 456        26/06/2013    4
## 457        26/07/1996    4
## 458        26/07/2012    4
## 459        26/08/2005    4
## 460        26/10/2006    4
## 461        27/04/2012    4
## 462        27/05/1997    4
## 463        27/08/2008    4
## 464        27/08/2012    4
## 465        27/09/1996    4
## 466        28/02/2013    4
## 467        28/04/2014    4
## 468        28/07/2004    4
## 469        28/08/2013    4
## 470        28/10/2008    4
## 471        29/01/1997    4
## 472        29/01/2013    4
## 473        29/03/2007    4
## 474        29/04/1996    4
## 475        29/05/2012    4
## 476        29/05/2013    4
## 477        29/05/2014    4
## 478        29/06/2012    4
## 479        29/07/1996    4
## 480        29/10/2012    4
## 481        30/01/2014    4
## 482        30/03/2013    4
## 483        30/04/1997    4
## 484        30/06/1997    4
## 485        31/01/2014    4
## 486        31/05/2013    4
## 487        31/07/1996    4
## 488        31/07/2013    4
## 489        31/10/2005    4
## 490        31/10/2013    4
## 491        01/02/2013    3
## 492        01/03/2010    3
## 493        01/03/2011    3
## 494        01/04/2008    3
## 495        01/04/2009    3
## 496        01/05/1997    3
## 497        01/07/2013    3
## 498        01/08/1997    3
## 499        01/08/2005    3
## 500        01/09/1996    3
## 501        01/09/2010    3
## 502        01/10/1997    3
## 503        01/10/2010    3
## 504        01/11/2006    3
## 505        01/12/1997    3
## 506        01/12/2010    3
## 507        02/01/2009    3
## 508        02/02/2009    3
## 509        02/02/2013    3
## 510        02/04/2007    3
## 511        02/05/1997    3
## 512        02/05/2006    3
## 513        02/06/2008    3
## 514        02/06/2014    3
## 515        02/07/2009    3
## 516        02/08/2007    3
## 517        02/08/2013    3
## 518        02/09/1997    3
## 519        02/09/2008    3
## 520        02/09/2010    3
## 521        02/10/2012    3
## 522        02/10/2013    3
## 523        02/11/2010    3
## 524        02/11/2011    3
## 525        03/01/1997    3
## 526        03/02/2010    3
## 527        03/03/2006    3
## 528        03/03/2012    3
## 529        03/03/2014    3
## 530        03/04/2008    3
## 531        03/04/2012    3
## 532        03/05/1997    3
## 533        03/06/1996    3
## 534        03/06/2009    3
## 535        03/06/2014    3
## 536        03/07/1997    3
## 537        03/08/2005    3
## 538        03/08/2011    3
## 539        03/08/2012    3
## 540        03/09/1996    3
## 541        03/09/2004    3
## 542        03/10/1996    3
## 543        03/11/2005    3
## 544        03/11/2011    3
## 545        03/12/2013    3
## 546        04/01/2007    3
## 547        04/02/1997    3
## 548        04/02/2010    3
## 549        04/03/1997    3
## 550        04/03/2010    3
## 551        04/03/2011    3
## 552        04/03/2014    3
## 553        04/06/2007    3
## 554        04/06/2008    3
## 555        04/07/1996    3
## 556        04/07/2008    3
## 557        04/09/1996    3
## 558        04/09/2013    3
## 559        04/10/2011    3
## 560        04/12/2012    3
## 561        05/01/2005    3
## 562        05/01/2012    3
## 563        05/03/2007    3
## 564        05/03/2012    3
## 565        05/04/1996    3
## 566        05/04/2013    3
## 567        05/05/2004    3
## 568        05/07/2005    3
## 569        05/07/2010    3
## 570        05/10/2012    3
## 571        05/11/2009    3
## 572        05/11/2010    3
## 573        05/11/2012    3
## 574        05/12/2005    3
## 575        05/12/2011    3
## 576        05/12/2012    3
## 577        05/12/2013    3
## 578        06/02/1997    3
## 579        06/03/2008    3
## 580        06/06/1996    3
## 581        06/06/1997    3
## 582        06/07/2007    3
## 583        06/09/2011    3
## 584        06/11/1997    3
## 585        06/11/2008    3
## 586        06/12/2007    3
## 587        07/01/2005    3
## 588        07/01/2009    3
## 589        07/02/1997    3
## 590        07/02/2005    3
## 591        07/02/2012    3
## 592        07/03/2005    3
## 593        07/03/2012    3
## 594        07/04/1997    3
## 595        07/05/1997    3
## 596        07/05/2007    3
## 597        07/06/2007    3
## 598        07/06/2010    3
## 599        07/07/1997    3
## 600        07/07/2005    3
## 601        07/09/2010    3
## 602        07/10/2008    3
## 603        07/10/2010    3
## 604        07/11/1997    3
## 605        07/12/2012    3
## 606        08/01/2014    3
## 607        08/02/2013    3
## 608        08/02/2014    3
## 609        08/04/2014    3
## 610        08/05/1996    3
## 611        08/05/2009    3
## 612        08/05/2013    3
## 613        08/06/2006    3
## 614        08/06/2007    3
## 615        08/06/2009    3
## 616        08/06/2010    3
## 617        08/07/2013    3
## 618        08/08/2005    3
## 619        08/08/2012    3
## 620        08/09/2004    3
## 621        08/09/2005    3
## 622        08/10/1997    3
## 623        08/11/1996    3
## 624        08/11/2004    3
## 625        08/11/2013    3
## 626        08/12/2011    3
## 627        09/02/2009    3
## 628        09/02/2012    3
## 629        09/03/2004    3
## 630        09/03/2006    3
## 631        09/03/2011    3
## 632        09/03/2012    3
## 633        09/04/1997    3
## 634        09/04/2013    3
## 635        09/06/2010    3
## 636        09/07/1997    3
## 637        09/07/2013    3
## 638        09/08/1996    3
## 639        09/08/2012    3
## 640        09/08/2013    3
## 641        09/09/2011    3
## 642        09/10/1997    3
## 643        09/11/2009    3
## 644        09/11/2012    3
## 645        09/12/2004    3
## 646        09/12/2005    3
## 647        09/12/2010    3
## 648        09/12/2013    3
## 649        10/01/1998    3
## 650        10/01/2014    3
## 651        10/02/2006    3
## 652        10/02/2012    3
## 653        10/02/2014    3
## 654        10/03/2004    3
## 655        10/03/2008    3
## 656        10/03/2009    3
## 657        10/04/2012    3
## 658        10/06/1997    3
## 659        10/07/1997    3
## 660        10/07/2012    3
## 661        10/08/2005    3
## 662        10/08/2009    3
## 663        10/08/2012    3
## 664        10/08/2013    3
## 665        10/09/1996    3
## 666        10/09/1997    3
## 667        10/09/2004    3
## 668        10/09/2009    3
## 669        10/10/2005    3
## 670        10/10/2013    3
## 671        10/11/1998    3
## 672        10/11/2005    3
## 673        11/01/2010    3
## 674        11/01/2011    3
## 675        11/03/2002    3
## 676        11/03/2012    3
## 677        11/03/2014    3
## 678        11/04/1997    3
## 679        11/04/2012    3
## 680        11/05/2007    3
## 681        11/05/2010    3
## 682        11/06/1996    3
## 683        11/06/1997    3
## 684        11/06/2012    3
## 685        11/06/2014    3
## 686        11/07/1996    3
## 687        11/07/2006    3
## 688        11/08/1997    3
## 689        11/08/2008    3
## 690        11/08/2010    3
## 691        11/09/1997    3
## 692        11/09/2002    3
## 693        11/09/2007    3
## 694        11/10/2006    3
## 695        12/01/2006    3
## 696        12/02/2009    3
## 697        12/04/2013    3
## 698        12/05/2013    3
## 699        12/06/2008    3
## 700        12/06/2014    3
## 701        12/07/2005    3
## 702        12/07/2006    3
## 703        12/07/2011    3
## 704        12/07/2013    3
## 705        12/08/2004    3
## 706        12/08/2008    3
## 707        12/08/2009    3
## 708        12/09/1996    3
## 709        12/09/1997    3
## 710        12/09/2004    3
## 711        12/10/1996    3
## 712        12/10/2012    3
## 713        12/11/2013    3
## 714        12/12/2012    3
## 715        12/12/2013    3
## 716        13/01/1998    3
## 717        13/01/2010    3
## 718        13/01/2014    3
## 719        13/03/2013    3
## 720        13/04/1996    3
## 721        13/04/2012    3
## 722        13/05/2014    3
## 723        13/06/2008    3
## 724        13/06/2013    3
## 725        13/06/2014    3
## 726        13/07/2009    3
## 727        13/07/2011    3
## 728        13/07/2013    3
## 729        13/08/1996    3
## 730        13/08/2004    3
## 731        13/08/2008    3
## 732        13/08/2013    3
## 733        13/09/2004    3
## 734        13/09/2011    3
## 735        13/11/2011    3
## 736        13/11/2013    3
## 737        14/01/2011    3
## 738        14/01/2013    3
## 739        14/01/2014    3
## 740        14/02/2005    3
## 741        14/02/2006    3
## 742        14/03/1997    3
## 743        14/03/2005    3
## 744        14/03/2012    3
## 745        14/04/1998    3
## 746        14/04/2009    3
## 747        14/05/1997    3
## 748        14/05/2012    3
## 749        14/05/2013    3
## 750        14/06/2007    3
## 751        14/06/2010    3
## 752        14/06/2011    3
## 753        14/07/2007    3
## 754        14/07/2012    3
## 755        14/08/1996    3
## 756        14/08/1997    3
## 757        14/09/2013    3
## 758        14/10/1997    3
## 759        14/10/2004    3
## 760        14/10/2013    3
## 761        14/11/2003    3
## 762        14/11/2005    3
## 763        15/01/1997    3
## 764        15/01/2010    3
## 765        15/01/2014    3
## 766        15/03/2011    3
## 767        15/03/2012    3
## 768        15/03/2014    3
## 769        15/04/2005    3
## 770        15/04/2014    3
## 771        15/05/1996    3
## 772        15/06/2010    3
## 773        15/06/2011    3
## 774        15/06/2012    3
## 775        15/08/1997    3
## 776        15/09/1996    3
## 777        15/09/2005    3
## 778        15/10/2013    3
## 779        15/11/2006    3
## 780        16/03/2011    3
## 781        16/04/1997    3
## 782        16/04/2013    3
## 783        16/05/2014    3
## 784        16/07/2007    3
## 785        16/07/2012    3
## 786        16/08/2010    3
## 787        16/08/2013    3
## 788        16/09/1996    3
## 789        16/09/2011    3
## 790        16/09/2012    3
## 791        16/11/2010    3
## 792        16/11/2011    3
## 793        16/12/2003    3
## 794        16/12/2005    3
## 795        17/01/2011    3
## 796        17/02/1997    3
## 797        17/02/2005    3
## 798        17/02/2006    3
## 799        17/02/2011    3
## 800        17/02/2013    3
## 801        17/03/2011    3
## 802        17/05/2010    3
## 803        17/05/2012    3
## 804        17/06/2009    3
## 805        17/06/2011    3
## 806        17/06/2013    3
## 807        17/06/2014    3
## 808        17/07/2009    3
## 809        17/07/2011    3
## 810        17/08/1996    3
## 811        17/08/2005    3
## 812        17/09/2007    3
## 813        17/10/1996    3
## 814        17/11/1997    3
## 815        18/01/2014    3
## 816        18/02/2004    3
## 817        18/02/2011    3
## 818        18/02/2014    3
## 819        18/03/2013    3
## 820        18/04/2007    3
## 821        18/04/2008    3
## 822        18/04/2011    3
## 823        18/05/2006    3
## 824        18/06/2007    3
## 825        18/06/2009    3
## 826        18/06/2012    3
## 827        18/07/1996    3
## 828        18/07/1997    3
## 829        18/07/2012    3
## 830        18/08/2010    3
## 831        18/10/1996    3
## 832        18/10/2012    3
## 833        18/12/1997    3
## 834        18/12/2009    3
## 835        19/02/1997    3
## 836        19/02/2008    3
## 837        19/03/2004    3
## 838        19/03/2007    3
## 839        19/03/2009    3
## 840        19/06/2012    3
## 841        19/07/2010    3
## 842        19/08/1997    3
## 843        19/08/2008    3
## 844        19/08/2010    3
## 845        19/09/2005    3
## 846        19/09/2012    3
## 847        19/10/2009    3
## 848        19/10/2010    3
## 849        19/11/2007    3
## 850        19/11/2008    3
## 851        19/11/2010    3
## 852        19/11/2012    3
## 853        19/12/2003    3
## 854        19/12/2007    3
## 855        20/01/2006    3
## 856        20/01/2014    3
## 857        20/02/2013    3
## 858        20/02/2014    3
## 859        20/03/2009    3
## 860        20/03/2013    3
## 861        20/06/2014    3
## 862        20/07/2011    3
## 863        20/08/1996    3
## 864        20/08/1997    3
## 865        20/08/2008    3
## 866        20/09/2010    3
## 867        20/09/2013    3
## 868        20/10/2005    3
## 869        20/10/2009    3
## 870        20/11/2008    3
## 871        20/11/2009    3
## 872        20/11/2013    3
## 873        20/12/2010    3
## 874        20/12/2013    3
## 875        21/01/2010    3
## 876        21/01/2012    3
## 877        21/03/1996    3
## 878        21/04/2009    3
## 879        21/04/2011    3
## 880        21/05/2014    3
## 881        21/06/2011    3
## 882        21/06/2013    3
## 883        21/07/2005    3
## 884        21/07/2009    3
## 885        21/08/1996    3
## 886        21/08/2008    3
## 887        21/08/2012    3
## 888        21/09/2011    3
## 889        21/10/1997    3
## 890        21/10/2004    3
## 891        21/10/2008    3
## 892        21/12/2007    3
## 893        21/12/2012    3
## 894        22/01/1997    3
## 895        22/01/2007    3
## 896        22/04/2009    3
## 897        22/04/2013    3
## 898        22/04/2014    3
## 899        22/05/1996    3
## 900        22/06/1996    3
## 901        22/06/2013    3
## 902        22/07/2004    3
## 903        22/07/2011    3
## 904        22/07/2013    3
## 905        22/08/1996    3
## 906        22/08/2011    3
## 907        22/09/2006    3
## 908        22/09/2008    3
## 909        22/10/2012    3
## 910        22/11/1996    3
## 911        22/12/2012    3
## 912        23/01/2013    3
## 913        23/02/2009    3
## 914        23/03/1998    3
## 915        23/03/2007    3
## 916        23/03/2011    3
## 917        23/04/2004    3
## 918        23/04/2008    3
## 919        23/05/2014    3
## 920        23/07/1996    3
## 921        23/07/1997    3
## 922        23/08/1996    3
## 923        23/08/2004    3
## 924        23/09/2005    3
## 925        23/10/2003    3
## 926        23/11/1996    3
## 927        23/11/2009    3
## 928        23/11/2010    3
## 929        23/12/2006    3
## 930        24/01/2005    3
## 931        24/01/2007    3
## 932        24/01/2013    3
## 933        24/03/1997    3
## 934        24/03/2014    3
## 935        24/04/2007    3
## 936        24/05/2006    3
## 937        24/07/1996    3
## 938        24/07/2013    3
## 939        24/08/2011    3
## 940        24/08/2013    3
## 941        24/09/1996    3
## 942        24/09/2005    3
## 943        24/09/2013    3
## 944        24/10/2007    3
## 945        24/11/2009    3
## 946        25/01/2006    3
## 947        25/01/2010    3
## 948        25/01/2014    3
## 949        25/02/1997    3
## 950        25/02/2008    3
## 951        25/03/2011    3
## 952        25/04/2014    3
## 953        25/05/2005    3
## 954        25/05/2012    3
## 955        25/06/2004    3
## 956        25/06/2007    3
## 957        25/06/2010    3
## 958        25/06/2013    3
## 959        25/07/1996    3
## 960        25/07/2006    3
## 961        25/07/2007    3
## 962        25/07/2013    3
## 963        25/10/2007    3
## 964        25/10/2012    3
## 965        25/10/2013    3
## 966        26/01/2009    3
## 967        26/02/1998    3
## 968        26/02/2009    3
## 969        26/03/2007    3
## 970        26/06/1996    3
## 971        26/06/2014    3
## 972        26/07/2006    3
## 973        26/07/2013    3
## 974        26/08/1996    3
## 975        26/08/2008    3
## 976        26/08/2011    3
## 977        26/10/2011    3
## 978        26/10/2012    3
## 979        26/12/2007    3
## 980        27/02/2006    3
## 981        27/02/2009    3
## 982        27/02/2012    3
## 983        27/03/1996    3
## 984        27/03/2006    3
## 985        27/03/2007    3
## 986        27/04/2005    3
## 987        27/04/2014    3
## 988        27/05/2004    3
## 989        27/05/2014    3
## 990        27/06/2012    3
## 991        27/06/2013    3
## 992        27/07/2006    3
## 993        27/07/2007    3
## 994        27/07/2013    3
## 995        27/08/1997    3
## 996        27/08/2007    3
## 997        27/08/2010    3
## 998        27/09/1997    3
## 999        27/10/2008    3
## 1000       27/11/2013    3
## 1001       28/01/2008    3
## 1002       28/01/2010    3
## 1003       28/01/2011    3
## 1004       28/01/2013    3
## 1005       28/02/2011    3
## 1006       28/03/2011    3
## 1007       28/04/2005    3
## 1008       28/04/2009    3
## 1009       28/05/1996    3
## 1010       28/06/2011    3
## 1011       28/08/1997    3
## 1012       28/08/2006    3
## 1013       28/09/2009    3
## 1014       28/09/2010    3
## 1015       28/10/2011    3
## 1016       28/10/2013    3
## 1017       28/11/2006    3
## 1018       28/11/2013    3
## 1019       28/12/2012    3
## 1020       29/01/1999    3
## 1021       29/02/2012    3
## 1022       29/04/2006    3
## 1023       29/04/2014    3
## 1024       29/05/2007    3
## 1025       29/08/2013    3
## 1026       29/09/2005    3
## 1027       29/09/2011    3
## 1028       29/10/1996    3
## 1029       29/10/2008    3
## 1030       29/10/2009    3
## 1031       29/10/2013    3
## 1032       29/11/2004    3
## 1033       29/11/2012    3
## 1034       29/11/2013    3
## 1035       29/12/1999    3
## 1036       30/01/2012    3
## 1037       30/04/2014    3
## 1038       30/05/1997    3
## 1039       30/05/2013    3
## 1040       30/07/2007    3
## 1041       30/07/2011    3
## 1042       30/08/2005    3
## 1043       30/08/2010    3
## 1044       30/08/2013    3
## 1045       30/09/1996    3
## 1046       30/10/1996    3
## 1047       30/11/2007    3
## 1048       30/11/2009    3
## 1049       30/11/2011    3
## 1050       31/01/1997    3
## 1051       31/01/2007    3
## 1052       31/03/1997    3
## 1053       31/05/2006    3
## 1054       31/05/2011    3
## 1055       31/10/1996    3
## 1056       31/10/1997    3
## 1057       01/01/1997    2
## 1058       01/01/2010    2
## 1059       01/01/2014    2
## 1060       01/02/1997    2
## 1061       01/02/2005    2
## 1062       01/02/2006    2
## 1063       01/02/2008    2
## 1064       01/02/2010    2
## 1065       01/02/2014    2
## 1066       01/03/2005    2
## 1067       01/04/1996    2
## 1068       01/04/2010    2
## 1069       01/04/2013    2
## 1070       01/04/2014    2
## 1071       01/05/2006    2
## 1072       01/05/2010    2
## 1073       01/05/2012    2
## 1074       01/06/1997    2
## 1075       01/06/2005    2
## 1076       01/06/2010    2
## 1077       01/06/2012    2
## 1078       01/07/2008    2
## 1079       01/07/2010    2
## 1080       01/07/2011    2
## 1081       01/08/2008    2
## 1082       01/08/2012    2
## 1083       01/09/1998    2
## 1084       01/09/2009    2
## 1085       01/09/2012    2
## 1086       01/09/2013    2
## 1087       01/10/2003    2
## 1088       01/10/2006    2
## 1089       01/10/2007    2
## 1090       01/11/2007    2
## 1091       01/11/2011    2
## 1092       01/11/2012    2
## 1093       01/11/2013    2
## 1094       01/12/2003    2
## 1095       01/12/2011    2
## 1096       02/01/2011    2
## 1097       02/02/2004    2
## 1098       02/03/2006    2
## 1099       02/03/2009    2
## 1100       02/03/2013    2
## 1101       02/04/1996    2
## 1102       02/04/1997    2
## 1103       02/04/2004    2
## 1104       02/05/2011    2
## 1105       02/06/2009    2
## 1106       02/07/2002    2
## 1107       02/07/2004    2
## 1108       02/07/2007    2
## 1109       02/08/2006    2
## 1110       02/08/2008    2
## 1111       02/09/2003    2
## 1112       02/09/2011    2
## 1113       02/09/2012    2
## 1114       02/10/1996    2
## 1115       02/10/2003    2
## 1116       02/10/2005    2
## 1117       02/10/2006    2
## 1118       02/10/2008    2
## 1119       02/10/2011    2
## 1120       02/11/1998    2
## 1121       02/11/2004    2
## 1122       02/11/2006    2
## 1123       02/11/2012    2
## 1124       02/12/1997    2
## 1125       02/12/2009    2
## 1126       02/12/2010    2
## 1127       03/01/2006    2
## 1128       03/01/2009    2
## 1129       03/01/2012    2
## 1130       03/01/2013    2
## 1131       03/01/2014    2
## 1132       03/02/1999    2
## 1133       03/02/2005    2
## 1134       03/02/2006    2
## 1135       03/02/2011    2
## 1136       03/02/2013    2
## 1137       03/02/2014    2
## 1138       03/04/2007    2
## 1139       03/05/2007    2
## 1140       03/05/2014    2
## 1141       03/06/2007    2
## 1142       03/06/2012    2
## 1143       03/07/1996    2
## 1144       03/07/2005    2
## 1145       03/09/1997    2
## 1146       03/09/2005    2
## 1147       03/09/2007    2
## 1148       03/09/2012    2
## 1149       03/10/2006    2
## 1150       03/10/2007    2
## 1151       03/10/2010    2
## 1152       03/10/2011    2
## 1153       03/11/1996    2
## 1154       03/11/1998    2
## 1155       03/11/2008    2
## 1156       03/11/2009    2
## 1157       03/11/2010    2
## 1158       03/11/2013    2
## 1159       03/12/1996    2
## 1160       03/12/2004    2
## 1161       03/12/2007    2
## 1162       04/01/2002    2
## 1163       04/01/2008    2
## 1164       04/01/2012    2
## 1165       04/02/2012    2
## 1166       04/03/2003    2
## 1167       04/03/2004    2
## 1168       04/03/2012    2
## 1169       04/03/2013    2
## 1170       04/04/1996    2
## 1171       04/04/1997    2
## 1172       04/04/2005    2
## 1173       04/04/2012    2
## 1174       04/04/2013    2
## 1175       04/05/1997    2
## 1176       04/05/1998    2
## 1177       04/05/2007    2
## 1178       04/05/2009    2
## 1179       04/05/2010    2
## 1180       04/05/2013    2
## 1181       04/06/2004    2
## 1182       04/06/2009    2
## 1183       04/06/2010    2
## 1184       04/06/2014    2
## 1185       04/07/2013    2
## 1186       04/08/1997    2
## 1187       04/08/2005    2
## 1188       04/08/2006    2
## 1189       04/08/2013    2
## 1190       04/09/2008    2
## 1191       04/10/2012    2
## 1192       04/11/1998    2
## 1193       04/11/2009    2
## 1194       04/12/1996    2
## 1195       04/12/2013    2
## 1196       05/01/2004    2
## 1197       05/01/2010    2
## 1198       05/02/1997    2
## 1199       05/03/2003    2
## 1200       05/03/2014    2
## 1201       05/04/2002    2
## 1202       05/04/2006    2
## 1203       05/04/2007    2
## 1204       05/05/1996    2
## 1205       05/05/2005    2
## 1206       05/05/2006    2
## 1207       05/05/2009    2
## 1208       05/05/2013    2
## 1209       05/06/2007    2
## 1210       05/07/2011    2
## 1211       05/07/2012    2
## 1212       05/08/2004    2
## 1213       05/08/2008    2
## 1214       05/08/2010    2
## 1215       05/08/2011    2
## 1216       05/09/2002    2
## 1217       05/09/2013    2
## 1218       05/10/1997    2
## 1219       05/10/2004    2
## 1220       05/11/1997    2
## 1221       05/11/2011    2
## 1222       05/12/2006    2
## 1223       05/12/2007    2
## 1224       06/01/2006    2
## 1225       06/01/2009    2
## 1226       06/01/2011    2
## 1227       06/01/2012    2
## 1228       06/02/1996    2
## 1229       06/02/1998    2
## 1230       06/02/2004    2
## 1231       06/03/1998    2
## 1232       06/03/2007    2
## 1233       06/03/2012    2
## 1234       06/03/2013    2
## 1235       06/04/1997    2
## 1236       06/04/2011    2
## 1237       06/04/2013    2
## 1238       06/04/2014    2
## 1239       06/05/1997    2
## 1240       06/05/2003    2
## 1241       06/05/2008    2
## 1242       06/06/2006    2
## 1243       06/06/2008    2
## 1244       06/06/2012    2
## 1245       06/06/2013    2
## 1246       06/07/1999    2
## 1247       06/07/2005    2
## 1248       06/07/2011    2
## 1249       06/07/2012    2
## 1250       06/08/2008    2
## 1251       06/08/2013    2
## 1252       06/09/1997    2
## 1253       06/09/2006    2
## 1254       06/09/2013    2
## 1255       06/10/2004    2
## 1256       06/10/2007    2
## 1257       06/10/2009    2
## 1258       06/10/2011    2
## 1259       06/10/2013    2
## 1260       06/11/2001    2
## 1261       06/11/2006    2
## 1262       06/12/2004    2
## 1263       06/12/2005    2
## 1264       06/12/2006    2
## 1265       06/12/2012    2
## 1266       07/01/1998    2
## 1267       07/01/2008    2
## 1268       07/02/2006    2
## 1269       07/02/2008    2
## 1270       07/02/2013    2
## 1271       07/02/2014    2
## 1272       07/03/2006    2
## 1273       07/03/2011    2
## 1274       07/04/2006    2
## 1275       07/04/2011    2
## 1276       07/04/2014    2
## 1277       07/05/2001    2
## 1278       07/05/2009    2
## 1279       07/05/2013    2
## 1280       07/05/2014    2
## 1281       07/06/2000    2
## 1282       07/06/2004    2
## 1283       07/06/2008    2
## 1284       07/06/2011    2
## 1285       07/06/2012    2
## 1286       07/06/2013    2
## 1287       07/06/2014    2
## 1288       07/07/2004    2
## 1289       07/07/2008    2
## 1290       07/07/2009    2
## 1291       07/07/2010    2
## 1292       07/07/2012    2
## 1293       07/08/1997    2
## 1294       07/08/2013    2
## 1295       07/09/2011    2
## 1296       07/10/1996    2
## 1297       07/10/2004    2
## 1298       07/10/2006    2
## 1299       07/11/2013    2
## 1300       07/12/1998    2
## 1301       07/12/2005    2
## 1302       08/01/2004    2
## 1303       08/01/2012    2
## 1304       08/01/2013    2
## 1305       08/02/1999    2
## 1306       08/02/2005    2
## 1307       08/02/2006    2
## 1308       08/02/2008    2
## 1309       08/03/2007    2
## 1310       08/03/2011    2
## 1311       08/04/1997    2
## 1312       08/04/2005    2
## 1313       08/05/1997    2
## 1314       08/05/2007    2
## 1315       08/05/2008    2
## 1316       08/06/2004    2
## 1317       08/06/2011    2
## 1318       08/06/2013    2
## 1319       08/07/2008    2
## 1320       08/08/2004    2
## 1321       08/08/2006    2
## 1322       08/09/1997    2
## 1323       08/09/2008    2
## 1324       08/09/2009    2
## 1325       08/10/2004    2
## 1326       08/10/2007    2
## 1327       08/10/2009    2
## 1328       08/11/2011    2
## 1329       08/12/2003    2
## 1330       08/12/2009    2
## 1331       08/12/2010    2
## 1332       08/12/2012    2
## 1333       09/01/2004    2
## 1334       09/01/2010    2
## 1335       09/01/2013    2
## 1336       09/02/1997    2
## 1337       09/02/2004    2
## 1338       09/02/2005    2
## 1339       09/03/2009    2
## 1340       09/04/2007    2
## 1341       09/05/2004    2
## 1342       09/05/2011    2
## 1343       09/05/2012    2
## 1344       09/06/2008    2
## 1345       09/06/2014    2
## 1346       09/07/1998    2
## 1347       09/07/2007    2
## 1348       09/07/2012    2
## 1349       09/08/2002    2
## 1350       09/08/2004    2
## 1351       09/08/2006    2
## 1352       09/08/2010    2
## 1353       09/09/1996    2
## 1354       09/09/1997    2
## 1355       09/09/2004    2
## 1356       09/09/2009    2
## 1357       09/10/1996    2
## 1358       09/10/2004    2
## 1359       09/10/2006    2
## 1360       09/10/2012    2
## 1361       09/11/2004    2
## 1362       09/11/2008    2
## 1363       09/11/2011    2
## 1364       09/12/1997    2
## 1365       10/01/2005    2
## 1366       10/01/2006    2
## 1367       10/01/2007    2
## 1368       10/01/2013    2
## 1369       10/02/1998    2
## 1370       10/03/2014    2
## 1371       10/04/1996    2
## 1372       10/04/2006    2
## 1373       10/04/2013    2
## 1374       10/05/2004    2
## 1375       10/05/2007    2
## 1376       10/06/1996    2
## 1377       10/06/2008    2
## 1378       10/06/2014    2
## 1379       10/07/2004    2
## 1380       10/07/2006    2
## 1381       10/07/2007    2
## 1382       10/08/1996    2
## 1383       10/08/2004    2
## 1384       10/08/2007    2
## 1385       10/08/2011    2
## 1386       10/09/2005    2
## 1387       10/09/2007    2
## 1388       10/09/2012    2
## 1389       10/11/1997    2
## 1390       10/11/2004    2
## 1391       10/11/2006    2
## 1392       10/11/2008    2
## 1393       10/11/2010    2
## 1394       10/12/2007    2
## 1395       10/12/2008    2
## 1396       10/12/2010    2
## 1397       11/01/2006    2
## 1398       11/01/2008    2
## 1399       11/01/2012    2
## 1400       11/01/2013    2
## 1401       11/02/2004    2
## 1402       11/02/2010    2
## 1403       11/02/2014    2
## 1404       11/03/2005    2
## 1405       11/03/2009    2
## 1406       11/03/2010    2
## 1407       11/04/2005    2
## 1408       11/04/2008    2
## 1409       11/05/2012    2
## 1410       11/05/2013    2
## 1411       11/06/2008    2
## 1412       11/07/2011    2
## 1413       11/07/2012    2
## 1414       11/08/2009    2
## 1415       11/08/2011    2
## 1416       11/09/2006    2
## 1417       11/09/2013    2
## 1418       11/10/2007    2
## 1419       11/10/2010    2
## 1420       11/10/2011    2
## 1421       11/11/2006    2
## 1422       11/11/2013    2
## 1423       11/12/1996    2
## 1424       11/12/2005    2
## 1425       11/12/2007    2
## 1426       12/01/1997    2
## 1427       12/02/2004    2
## 1428       12/02/2007    2
## 1429       12/02/2014    2
## 1430       12/03/1997    2
## 1431       12/03/2008    2
## 1432       12/03/2010    2
## 1433       12/04/2004    2
## 1434       12/04/2006    2
## 1435       12/04/2007    2
## 1436       12/04/2012    2
## 1437       12/05/2004    2
## 1438       12/05/2006    2
## 1439       12/05/2010    2
## 1440       12/05/2011    2
## 1441       12/06/1996    2
## 1442       12/06/1997    2
## 1443       12/06/2007    2
## 1444       12/06/2009    2
## 1445       12/06/2010    2
## 1446       12/06/2012    2
## 1447       12/06/2013    2
## 1448       12/07/2012    2
## 1449       12/08/2010    2
## 1450       12/08/2013    2
## 1451       12/09/2012    2
## 1452       12/09/2013    2
## 1453       12/10/2006    2
## 1454       12/10/2007    2
## 1455       12/10/2009    2
## 1456       12/11/1997    2
## 1457       12/11/2003    2
## 1458       12/11/2008    2
## 1459       12/11/2009    2
## 1460       12/11/2010    2
## 1461       12/11/2012    2
## 1462       12/12/1997    2
## 1463       12/12/2006    2
## 1464       13/01/2005    2
## 1465       13/01/2007    2
## 1466       13/01/2012    2
## 1467       13/02/1997    2
## 1468       13/02/2008    2
## 1469       13/02/2009    2
## 1470       13/02/2013    2
## 1471       13/02/2014    2
## 1472       13/03/1996    2
## 1473       13/03/2007    2
## 1474       13/03/2012    2
## 1475       13/04/2005    2
## 1476       13/04/2014    2
## 1477       13/05/1998    2
## 1478       13/05/2008    2
## 1479       13/06/2006    2
## 1480       13/06/2010    2
## 1481       13/06/2012    2
## 1482       13/07/2005    2
## 1483       13/07/2006    2
## 1484       13/07/2007    2
## 1485       13/07/2012    2
## 1486       13/08/1997    2
## 1487       13/08/2007    2
## 1488       13/09/1996    2
## 1489       13/09/2012    2
## 1490       13/10/2004    2
## 1491       13/10/2005    2
## 1492       13/11/2008    2
## 1493       13/11/2012    2
## 1494       13/12/1996    2
## 1495       13/12/2011    2
## 1496       14/01/1997    2
## 1497       14/01/2004    2
## 1498       14/03/2008    2
## 1499       14/03/2010    2
## 1500       14/04/2010    2
## 1501       14/05/2007    2
## 1502       14/05/2010    2
## 1503       14/06/1996    2
## 1504       14/06/2002    2
## 1505       14/06/2004    2
## 1506       14/06/2006    2
## 1507       14/06/2013    2
## 1508       14/06/2014    2
## 1509       14/07/1997    2
## 1510       14/07/2005    2
## 1511       14/07/2006    2
## 1512       14/08/2008    2
## 1513       14/08/2010    2
## 1514       14/08/2013    2
## 1515       14/09/2004    2
## 1516       14/09/2006    2
## 1517       14/09/2009    2
## 1518       14/09/2011    2
## 1519       14/10/2011    2
## 1520       14/11/1996    2
## 1521       14/11/2012    2
## 1522       14/12/2011    2
## 1523       15/01/2004    2
## 1524       15/01/2006    2
## 1525       15/01/2007    2
## 1526       15/01/2011    2
## 1527       15/02/2008    2
## 1528       15/02/2011    2
## 1529       15/02/2014    2
## 1530       15/03/2005    2
## 1531       15/03/2007    2
## 1532       15/04/1996    2
## 1533       15/06/1998    2
## 1534       15/06/2005    2
## 1535       15/06/2009    2
## 1536       15/07/1996    2
## 1537       15/07/1997    2
## 1538       15/07/2004    2
## 1539       15/07/2005    2
## 1540       15/07/2011    2
## 1541       15/08/2002    2
## 1542       15/08/2003    2
## 1543       15/08/2005    2
## 1544       15/08/2007    2
## 1545       15/08/2011    2
## 1546       15/09/2008    2
## 1547       15/09/2010    2
## 1548       15/09/2011    2
## 1549       15/10/1997    2
## 1550       15/10/2007    2
## 1551       15/10/2009    2
## 1552       15/11/2004    2
## 1553       15/11/2012    2
## 1554       15/11/2013    2
## 1555       15/12/1997    2
## 1556       15/12/2005    2
## 1557       15/12/2007    2
## 1558       16/01/2004    2
## 1559       16/01/2009    2
## 1560       16/01/2010    2
## 1561       16/02/2009    2
## 1562       16/02/2011    2
## 1563       16/03/2004    2
## 1564       16/03/2012    2
## 1565       16/04/2012    2
## 1566       16/05/1997    2
## 1567       16/05/2004    2
## 1568       16/05/2006    2
## 1569       16/05/2008    2
## 1570       16/05/2011    2
## 1571       16/05/2013    2
## 1572       16/06/1999    2
## 1573       16/06/2003    2
## 1574       16/06/2008    2
## 1575       16/06/2011    2
## 1576       16/06/2013    2
## 1577       16/06/2014    2
## 1578       16/07/2009    2
## 1579       16/07/2010    2
## 1580       16/08/1996    2
## 1581       16/08/2004    2
## 1582       16/08/2005    2
## 1583       16/08/2007    2
## 1584       16/08/2012    2
## 1585       16/09/2005    2
## 1586       16/10/2003    2
## 1587       16/10/2007    2
## 1588       16/10/2012    2
## 1589       16/11/2001    2
## 1590       16/11/2004    2
## 1591       16/11/2013    2
## 1592       17/01/1997    2
## 1593       17/01/2009    2
## 1594       17/02/2004    2
## 1595       17/03/1997    2
## 1596       17/03/2004    2
## 1597       17/03/2005    2
## 1598       17/03/2007    2
## 1599       17/04/1996    2
## 1600       17/04/1997    2
## 1601       17/04/2013    2
## 1602       17/04/2014    2
## 1603       17/05/1996    2
## 1604       17/05/2007    2
## 1605       17/06/2012    2
## 1606       17/07/1996    2
## 1607       17/07/2001    2
## 1608       17/07/2006    2
## 1609       17/08/2011    2
## 1610       17/09/2005    2
## 1611       17/09/2013    2
## 1612       17/10/1997    2
## 1613       17/10/2007    2
## 1614       17/10/2008    2
## 1615       17/10/2013    2
## 1616       17/11/2005    2
## 1617       17/11/2009    2
## 1618       17/12/2003    2
## 1619       17/12/2012    2
## 1620       18/02/1997    2
## 1621       18/03/1997    2
## 1622       18/03/1999    2
## 1623       18/03/2011    2
## 1624       18/05/1996    2
## 1625       18/05/2004    2
## 1626       18/05/2008    2
## 1627       18/05/2010    2
## 1628       18/06/1997    2
## 1629       18/06/2004    2
## 1630       18/07/2006    2
## 1631       18/07/2007    2
## 1632       18/07/2009    2
## 1633       18/07/2011    2
## 1634       18/08/2004    2
## 1635       18/08/2005    2
## 1636       18/08/2007    2
## 1637       18/08/2008    2
## 1638       18/08/2011    2
## 1639       18/09/1997    2
## 1640       18/09/2009    2
## 1641       18/09/2012    2
## 1642       18/11/1996    2
## 1643       18/11/1997    2
## 1644       18/11/2002    2
## 1645       18/11/2013    2
## 1646       18/12/1996    2
## 1647       18/12/2001    2
## 1648       18/12/2003    2
## 1649       18/12/2007    2
## 1650       19/01/2011    2
## 1651       19/01/2013    2
## 1652       19/02/2004    2
## 1653       19/02/2009    2
## 1654       19/03/2010    2
## 1655       19/04/2004    2
## 1656       19/04/2006    2
## 1657       19/04/2011    2
## 1658       19/04/2014    2
## 1659       19/05/1997    2
## 1660       19/06/1996    2
## 1661       19/06/2009    2
## 1662       19/07/2004    2
## 1663       19/07/2011    2
## 1664       19/07/2012    2
## 1665       19/09/2010    2
## 1666       19/10/2005    2
## 1667       19/10/2011    2
## 1668       19/11/1996    2
## 1669       19/12/2010    2
## 1670       20/01/2010    2
## 1671       20/01/2012    2
## 1672       20/02/1998    2
## 1673       20/02/2007    2
## 1674       20/03/2008    2
## 1675       20/03/2012    2
## 1676       20/04/1996    2
## 1677       20/04/2004    2
## 1678       20/04/2006    2
## 1679       20/04/2014    2
## 1680       20/05/2005    2
## 1681       20/05/2011    2
## 1682       20/06/2008    2
## 1683       20/06/2009    2
## 1684       20/06/2011    2
## 1685       20/06/2012    2
## 1686       20/06/2013    2
## 1687       20/07/2008    2
## 1688       20/07/2010    2
## 1689       20/08/2003    2
## 1690       20/08/2009    2
## 1691       20/08/2010    2
## 1692       20/08/2012    2
## 1693       20/09/1996    2
## 1694       20/09/2012    2
## 1695       20/10/2004    2
## 1696       20/11/2011    2
## 1697       20/11/2012    2
## 1698       20/12/2003    2
## 1699       20/12/2012    2
## 1700       21/01/1997    2
## 1701       21/01/2004    2
## 1702       21/02/1996    2
## 1703       21/02/1997    2
## 1704       21/02/2012    2
## 1705       21/03/1997    2
## 1706       21/03/1998    2
## 1707       21/03/2006    2
## 1708       21/03/2011    2
## 1709       21/04/1997    2
## 1710       21/04/2008    2
## 1711       21/04/2010    2
## 1712       21/05/2004    2
## 1713       21/05/2012    2
## 1714       21/05/2013    2
## 1715       21/06/2005    2
## 1716       21/06/2006    2
## 1717       21/06/2010    2
## 1718       21/07/1996    2
## 1719       21/07/2004    2
## 1720       21/07/2008    2
## 1721       21/08/2009    2
## 1722       21/08/2011    2
## 1723       21/09/1996    2
## 1724       21/10/2009    2
## 1725       21/10/2010    2
## 1726       21/10/2011    2
## 1727       21/10/2013    2
## 1728       21/11/1996    2
## 1729       21/11/2002    2
## 1730       21/11/2006    2
## 1731       21/11/2008    2
## 1732       21/11/2011    2
## 1733       21/11/2012    2
## 1734       21/11/2013    2
## 1735       21/12/2008    2
## 1736       22/01/2013    2
## 1737       22/02/2007    2
## 1738       22/02/2012    2
## 1739       22/03/2007    2
## 1740       22/04/2005    2
## 1741       22/04/2010    2
## 1742       22/05/1998    2
## 1743       22/05/2006    2
## 1744       22/05/2014    2
## 1745       22/06/2005    2
## 1746       22/06/2010    2
## 1747       22/07/1997    2
## 1748       22/07/2002    2
## 1749       22/07/2008    2
## 1750       22/08/1997    2
## 1751       22/08/2001    2
## 1752       22/08/2007    2
## 1753       22/08/2012    2
## 1754       22/08/2013    2
## 1755       22/09/2011    2
## 1756       22/10/1997    2
## 1757       22/10/2004    2
## 1758       22/10/2008    2
## 1759       22/11/2004    2
## 1760       22/11/2005    2
## 1761       22/11/2011    2
## 1762       22/12/2009    2
## 1763       23/01/2006    2
## 1764       23/03/2004    2
## 1765       23/03/2009    2
## 1766       23/04/2006    2
## 1767       23/04/2009    2
## 1768       23/04/2013    2
## 1769       23/05/1997    2
## 1770       23/05/2005    2
## 1771       23/05/2006    2
## 1772       23/05/2007    2
## 1773       23/05/2008    2
## 1774       23/05/2011    2
## 1775       23/06/1998    2
## 1776       23/06/2004    2
## 1777       23/06/2007    2
## 1778       23/06/2014    2
## 1779       23/07/2013    2
## 1780       23/08/2011    2
## 1781       23/08/2013    2
## 1782       23/09/1997    2
## 1783       23/09/2013    2
## 1784       23/10/1996    2
## 1785       23/10/2009    2
## 1786       23/10/2013    2
## 1787       23/11/2006    2
## 1788       23/11/2012    2
## 1789       24/01/1997    2
## 1790       24/01/2006    2
## 1791       24/01/2008    2
## 1792       24/01/2010    2
## 1793       24/01/2012    2
## 1794       24/02/1998    2
## 1795       24/02/2011    2
## 1796       24/03/2008    2
## 1797       24/04/2010    2
## 1798       24/04/2014    2
## 1799       24/05/2007    2
## 1800       24/05/2008    2
## 1801       24/05/2012    2
## 1802       24/05/2014    2
## 1803       24/06/2002    2
## 1804       24/06/2006    2
## 1805       24/06/2009    2
## 1806       24/06/2013    2
## 1807       24/07/1997    2
## 1808       24/07/2008    2
## 1809       24/07/2010    2
## 1810       24/08/1998    2
## 1811       24/09/2004    2
## 1812       24/09/2007    2
## 1813       24/09/2008    2
## 1814       24/09/2010    2
## 1815       24/10/1997    2
## 1816       24/10/2003    2
## 1817       24/10/2008    2
## 1818       24/10/2012    2
## 1819       24/11/1998    2
## 1820       24/11/2003    2
## 1821       24/11/2004    2
## 1822       24/11/2010    2
## 1823       24/12/2012    2
## 1824       25/01/1999    2
## 1825       25/01/2007    2
## 1826       25/01/2011    2
## 1827       25/02/2005    2
## 1828       25/02/2010    2
## 1829       25/02/2011    2
## 1830       25/02/2013    2
## 1831       25/03/2004    2
## 1832       25/03/2008    2
## 1833       25/04/2011    2
## 1834       25/05/1997    2
## 1835       25/05/2009    2
## 1836       25/05/2010    2
## 1837       25/05/2011    2
## 1838       25/06/1996    2
## 1839       25/06/2009    2
## 1840       25/07/1997    2
## 1841       25/08/1998    2
## 1842       25/08/2003    2
## 1843       25/08/2004    2
## 1844       25/08/2010    2
## 1845       25/09/2002    2
## 1846       25/09/2007    2
## 1847       25/09/2010    2
## 1848       25/10/1996    2
## 1849       25/10/2005    2
## 1850       25/11/1996    2
## 1851       25/11/2009    2
## 1852       25/11/2013    2
## 1853       26/01/2010    2
## 1854       26/02/1996    2
## 1855       26/02/2002    2
## 1856       26/02/2008    2
## 1857       26/02/2010    2
## 1858       26/02/2012    2
## 1859       26/02/2014    2
## 1860       26/03/1998    2
## 1861       26/04/1996    2
## 1862       26/04/2007    2
## 1863       26/04/2010    2
## 1864       26/05/2010    2
## 1865       26/05/2012    2
## 1866       26/06/1998    2
## 1867       26/06/2001    2
## 1868       26/07/2004    2
## 1869       26/07/2005    2
## 1870       26/08/1997    2
## 1871       26/08/2004    2
## 1872       26/08/2012    2
## 1873       26/09/2005    2
## 1874       26/09/2011    2
## 1875       26/09/2012    2
## 1876       26/10/2005    2
## 1877       26/10/2010    2
## 1878       26/10/2013    2
## 1879       26/11/2008    2
## 1880       26/11/2013    2
## 1881       26/12/2013    2
## 1882       27/01/1997    2
## 1883       27/01/2010    2
## 1884       27/01/2013    2
## 1885       27/03/2014    2
## 1886       27/04/2006    2
## 1887       27/04/2009    2
## 1888       27/05/2005    2
## 1889       27/05/2008    2
## 1890       27/06/1996    2
## 1891       27/06/2005    2
## 1892       27/06/2006    2
## 1893       27/06/2014    2
## 1894       27/07/2004    2
## 1895       27/07/2010    2
## 1896       27/08/1996    2
## 1897       27/08/2003    2
## 1898       27/08/2004    2
## 1899       27/09/2007    2
## 1900       27/09/2010    2
## 1901       27/09/2011    2
## 1902       27/09/2012    2
## 1903       27/09/2013    2
## 1904       27/10/2007    2
## 1905       27/10/2010    2
## 1906       27/11/2006    2
## 1907       27/11/2007    2
## 1908       27/11/2009    2
## 1909       27/11/2010    2
## 1910       27/11/2012    2
## 1911       27/12/2005    2
## 1912       27/12/2007    2
## 1913       27/12/2011    2
## 1914       28/01/1997    2
## 1915       28/01/2009    2
## 1916       28/01/2014    2
## 1917       28/02/2006    2
## 1918       28/02/2014    2
## 1919       28/03/2000    2
## 1920       28/03/2013    2
## 1921       28/03/2014    2
## 1922       28/04/1996    2
## 1923       28/04/2003    2
## 1924       28/04/2008    2
## 1925       28/04/2011    2
## 1926       28/05/1998    2
## 1927       28/05/2011    2
## 1928       28/06/1996    2
## 1929       28/06/1997    2
## 1930       28/06/2005    2
## 1931       28/06/2008    2
## 1932       28/06/2009    2
## 1933       28/06/2012    2
## 1934       28/07/1997    2
## 1935       28/07/2005    2
## 1936       28/07/2008    2
## 1937       28/07/2009    2
## 1938       28/07/2011    2
## 1939       28/07/2012    2
## 1940       28/08/2012    2
## 1941       28/09/1996    2
## 1942       28/09/2006    2
## 1943       28/09/2011    2
## 1944       28/09/2012    2
## 1945       28/10/1997    2
## 1946       28/10/1998    2
## 1947       28/10/2004    2
## 1948       28/10/2005    2
## 1949       28/10/2009    2
## 1950       28/10/2012    2
## 1951       28/11/2011    2
## 1952       28/11/2012    2
## 1953       28/12/2011    2
## 1954       29/01/2004    2
## 1955       29/01/2010    2
## 1956       29/03/2011    2
## 1957       29/03/2013    2
## 1958       29/03/2014    2
## 1959       29/04/2008    2
## 1960       29/04/2010    2
## 1961       29/04/2011    2
## 1962       29/05/1996    2
## 1963       29/05/2008    2
## 1964       29/07/2008    2
## 1965       29/07/2010    2
## 1966       29/07/2013    2
## 1967       29/08/1997    2
## 1968       29/08/2005    2
## 1969       29/08/2006    2
## 1970       29/09/2004    2
## 1971       29/09/2006    2
## 1972       29/09/2007    2
## 1973       29/09/2008    2
## 1974       29/09/2013    2
## 1975       29/10/2007    2
## 1976       29/10/2011    2
## 1977       29/11/2005    2
## 1978       29/12/2005    2
## 1979       29/12/2011    2
## 1980       30/01/1996    2
## 1981       30/01/1997    2
## 1982       30/01/2005    2
## 1983       30/01/2013    2
## 1984       30/03/1997    2
## 1985       30/03/2007    2
## 1986       30/04/2004    2
## 1987       30/04/2005    2
## 1988       30/04/2007    2
## 1989       30/04/2009    2
## 1990       30/04/2010    2
## 1991       30/04/2013    2
## 1992       30/05/2006    2
## 1993       30/05/2008    2
## 1994       30/05/2012    2
## 1995       30/05/2014    2
## 1996       30/06/2004    2
## 1997       30/06/2010    2
## 1998       30/06/2011    2
## 1999       30/07/2004    2
## 2000       30/08/2006    2
## 2001       30/08/2012    2
## 2002       30/09/2010    2
## 2003       30/09/2011    2
## 2004       30/10/2008    2
## 2005       30/10/2009    2
## 2006       30/11/2005    2
## 2007       30/11/2012    2
## 2008       30/12/1997    2
## 2009       30/12/2006    2
## 2010       30/12/2010    2
## 2011       31/01/2012    2
## 2012       31/03/2005    2
## 2013       31/03/2009    2
## 2014       31/03/2010    2
## 2015       31/05/1996    2
## 2016       31/05/2005    2
## 2017       31/07/1997    2
## 2018       31/07/2000    2
## 2019       31/08/1996    2
## 2020       31/08/2007    2
## 2021       31/08/2009    2
## 2022       31/08/2013    2
## 2023       31/10/2003    2
## 2024       31/10/2004    2
## 2025       31/10/2011    2
## 2026       31/12/2007    2
## 2027       31/12/2013    2
## 2028       01/01/1998    1
## 2029       01/01/2001    1
## 2030       01/01/2008    1
## 2031       01/01/2012    1
## 2032       01/01/2013    1
## 2033       01/02/1995    1
## 2034       01/02/1996    1
## 2035       01/02/1999    1
## 2036       01/02/2011    1
## 2037       01/03/1999    1
## 2038       01/03/2006    1
## 2039       01/03/2013    1
## 2040       01/03/2014    1
## 2041       01/04/1997    1
## 2042       01/04/1999    1
## 2043       01/04/2000    1
## 2044       01/04/2002    1
## 2045       01/04/2005    1
## 2046       01/04/2006    1
## 2047       01/05/1999    1
## 2048       01/05/2001    1
## 2049       01/05/2002    1
## 2050       01/05/2003    1
## 2051       01/05/2005    1
## 2052       01/05/2011    1
## 2053       01/06/1996    1
## 2054       01/06/2004    1
## 2055       01/06/2006    1
## 2056       01/06/2008    1
## 2057       01/06/2009    1
## 2058       01/06/2014    1
## 2059       01/07/2002    1
## 2060       01/07/2004    1
## 2061       01/07/2005    1
## 2062       01/07/2006    1
## 2063       01/07/2009    1
## 2064       01/08/1995    1
## 2065       01/08/1996    1
## 2066       01/08/2000    1
## 2067       01/08/2006    1
## 2068       01/08/2007    1
## 2069       01/09/1997    1
## 2070       01/09/2003    1
## 2071       01/09/2011    1
## 2072       01/10/2005    1
## 2073       01/10/2009    1
## 2074       01/10/2013    1
## 2075       01/11/1993    1
## 2076       01/11/1996    1
## 2077       01/11/2002    1
## 2078       01/11/2004    1
## 2079       01/11/2005    1
## 2080       01/11/2010    1
## 2081       01/12/1998    1
## 2082       01/12/2000    1
## 2083       01/12/2004    1
## 2084       01/12/2006    1
## 2085       01/12/2007    1
## 2086       01/12/2012    1
## 2087       01/12/2013    1
## 2088       02/01/1991    1
## 2089       02/01/1996    1
## 2090       02/01/1998    1
## 2091       02/01/2000    1
## 2092       02/01/2001    1
## 2093       02/01/2003    1
## 2094       02/01/2006    1
## 2095       02/01/2007    1
## 2096       02/01/2013    1
## 2097       02/02/1996    1
## 2098       02/02/1999    1
## 2099       02/02/2006    1
## 2100       02/02/2007    1
## 2101       02/02/2011    1
## 2102       02/03/1996    1
## 2103       02/03/1997    1
## 2104       02/03/1998    1
## 2105       02/03/2004    1
## 2106       02/03/2005    1
## 2107       02/03/2007    1
## 2108       02/03/2010    1
## 2109       02/03/2011    1
## 2110       02/03/2012    1
## 2111       02/04/2001    1
## 2112       02/04/2008    1
## 2113       02/04/2009    1
## 2114       02/04/2012    1
## 2115       02/05/2005    1
## 2116       02/05/2007    1
## 2117       02/05/2008    1
## 2118       02/05/2012    1
## 2119       02/05/2013    1
## 2120       02/06/1993    1
## 2121       02/06/1998    1
## 2122       02/06/2004    1
## 2123       02/06/2005    1
## 2124       02/06/2006    1
## 2125       02/07/2001    1
## 2126       02/07/2005    1
## 2127       02/07/2008    1
## 2128       02/07/2010    1
## 2129       02/08/1997    1
## 2130       02/08/1998    1
## 2131       02/08/2000    1
## 2132       02/08/2005    1
## 2133       02/08/2011    1
## 2134       02/08/2012    1
## 2135       02/09/1996    1
## 2136       02/09/2002    1
## 2137       02/09/2009    1
## 2138       02/09/2013    1
## 2139       02/10/1997    1
## 2140       02/10/2000    1
## 2141       02/10/2001    1
## 2142       02/10/2004    1
## 2143       02/10/2007    1
## 2144       02/11/1996    1
## 2145       02/11/1997    1
## 2146       02/11/2013    1
## 2147       02/12/1994    1
## 2148       02/12/1996    1
## 2149       02/12/1998    1
## 2150       02/12/2004    1
## 2151       03/01/1999    1
## 2152       03/01/2001    1
## 2153       03/01/2002    1
## 2154       03/01/2008    1
## 2155       03/02/1996    1
## 2156       03/02/2003    1
## 2157       03/02/2008    1
## 2158       03/02/2009    1
## 2159       03/03/1997    1
## 2160       03/03/1998    1
## 2161       03/03/2003    1
## 2162       03/03/2007    1
## 2163       03/03/2009    1
## 2164       03/03/2011    1
## 2165       03/04/1997    1
## 2166       03/04/2006    1
## 2167       03/04/2009    1
## 2168       03/04/2013    1
## 2169       03/04/2014    1
## 2170       03/05/1996    1
## 2171       03/05/2004    1
## 2172       03/05/2005    1
## 2173       03/05/2006    1
## 2174       03/05/2010    1
## 2175       03/05/2013    1
## 2176       03/06/1997    1
## 2177       03/06/2004    1
## 2178       03/06/2005    1
## 2179       03/06/2010    1
## 2180       03/06/2013    1
## 2181       03/07/2006    1
## 2182       03/07/2013    1
## 2183       03/08/1996    1
## 2184       03/08/1998    1
## 2185       03/08/2000    1
## 2186       03/08/2009    1
## 2187       03/08/2010    1
## 2188       03/08/2013    1
## 2189       03/09/2001    1
## 2190       03/09/2009    1
## 2191       03/09/2010    1
## 2192       03/10/1995    1
## 2193       03/10/1998    1
## 2194       03/10/2000    1
## 2195       03/11/1995    1
## 2196       03/11/1997    1
## 2197       03/11/2003    1
## 2198       03/11/2004    1
## 2199       03/11/2012    1
## 2200       03/12/2002    1
## 2201       03/12/2008    1
## 2202       03/12/2010    1
## 2203       03/12/2011    1
## 2204       04/01/1998    1
## 2205       04/01/2005    1
## 2206       04/01/2006    1
## 2207       04/01/2011    1
## 2208       04/01/2013    1
## 2209       04/01/2014    1
## 2210       04/02/2005    1
## 2211       04/02/2006    1
## 2212       04/02/2008    1
## 2213       04/02/2009    1
## 2214       04/03/1998    1
## 2215       04/03/2005    1
## 2216       04/03/2006    1
## 2217       04/03/2008    1
## 2218       04/03/2009    1
## 2219       04/04/2006    1
## 2220       04/04/2007    1
## 2221       04/04/2014    1
## 2222       04/05/1996    1
## 2223       04/05/2006    1
## 2224       04/05/2008    1
## 2225       04/06/1996    1
## 2226       04/06/1997    1
## 2227       04/06/2002    1
## 2228       04/06/2006    1
## 2229       04/06/2011    1
## 2230       04/06/2012    1
## 2231       04/07/2005    1
## 2232       04/07/2006    1
## 2233       04/08/1996    1
## 2234       04/08/1999    1
## 2235       04/08/2004    1
## 2236       04/08/2007    1
## 2237       04/08/2008    1
## 2238       04/08/2009    1
## 2239       04/09/1997    1
## 2240       04/09/2001    1
## 2241       04/09/2002    1
## 2242       04/09/2004    1
## 2243       04/09/2012    1
## 2244       04/10/1996    1
## 2245       04/10/2002    1
## 2246       04/10/2004    1
## 2247       04/10/2005    1
## 2248       04/10/2006    1
## 2249       04/10/2007    1
## 2250       04/10/2009    1
## 2251       04/10/2010    1
## 2252       04/11/1997    1
## 2253       04/11/2004    1
## 2254       04/11/2005    1
## 2255       04/11/2006    1
## 2256       04/11/2010    1
## 2257       04/12/1997    1
## 2258       04/12/2002    1
## 2259       04/12/2003    1
## 2260       05/01/1996    1
## 2261       05/01/1998    1
## 2262       05/01/2007    1
## 2263       05/01/2008    1
## 2264       05/01/2013    1
## 2265       05/02/2003    1
## 2266       05/02/2008    1
## 2267       05/02/2010    1
## 2268       05/03/1996    1
## 2269       05/03/1997    1
## 2270       05/03/1998    1
## 2271       05/03/2004    1
## 2272       05/03/2006    1
## 2273       05/03/2008    1
## 2274       05/04/1997    1
## 2275       05/04/2004    1
## 2276       05/04/2009    1
## 2277       05/04/2011    1
## 2278       05/04/2012    1
## 2279       05/05/2002    1
## 2280       05/05/2010    1
## 2281       05/05/2011    1
## 2282       05/05/2012    1
## 2283       05/05/2014    1
## 2284       05/06/1995    1
## 2285       05/06/1996    1
## 2286       05/06/2000    1
## 2287       05/06/2001    1
## 2288       05/06/2002    1
## 2289       05/06/2003    1
## 2290       05/06/2008    1
## 2291       05/06/2010    1
## 2292       05/06/2012    1
## 2293       05/07/1995    1
## 2294       05/07/2007    1
## 2295       05/07/2013    1
## 2296       05/08/1994    1
## 2297       05/08/1996    1
## 2298       05/08/1997    1
## 2299       05/08/1998    1
## 2300       05/08/2003    1
## 2301       05/08/2005    1
## 2302       05/08/2006    1
## 2303       05/08/2009    1
## 2304       05/09/1997    1
## 2305       05/09/2004    1
## 2306       05/09/2007    1
## 2307       05/09/2008    1
## 2308       05/09/2009    1
## 2309       05/09/2010    1
## 2310       05/10/1996    1
## 2311       05/10/1998    1
## 2312       05/10/2006    1
## 2313       05/10/2007    1
## 2314       05/10/2010    1
## 2315       05/10/2011    1
## 2316       05/11/1999    1
## 2317       05/11/2004    1
## 2318       05/12/1996    1
## 2319       05/12/1997    1
## 2320       05/12/2001    1
## 2321       05/12/2003    1
## 2322       05/12/2010    1
## 2323       06/01/1997    1
## 2324       06/01/1998    1
## 2325       06/01/2008    1
## 2326       06/02/2003    1
## 2327       06/02/2005    1
## 2328       06/02/2006    1
## 2329       06/02/2009    1
## 2330       06/02/2013    1
## 2331       06/03/1995    1
## 2332       06/03/2002    1
## 2333       06/03/2006    1
## 2334       06/03/2009    1
## 2335       06/04/1996    1
## 2336       06/04/1998    1
## 2337       06/04/2001    1
## 2338       06/04/2007    1
## 2339       06/04/2010    1
## 2340       06/04/2012    1
## 2341       06/05/2001    1
## 2342       06/05/2004    1
## 2343       06/05/2005    1
## 2344       06/05/2006    1
## 2345       06/05/2007    1
## 2346       06/05/2009    1
## 2347       06/05/2010    1
## 2348       06/05/2011    1
## 2349       06/05/2013    1
## 2350       06/06/2001    1
## 2351       06/06/2004    1
## 2352       06/06/2005    1
## 2353       06/06/2007    1
## 2354       06/07/1996    1
## 2355       06/07/1998    1
## 2356       06/07/2000    1
## 2357       06/07/2004    1
## 2358       06/07/2006    1
## 2359       06/07/2009    1
## 2360       06/07/2010    1
## 2361       06/08/1997    1
## 2362       06/08/2001    1
## 2363       06/08/2004    1
## 2364       06/08/2006    1
## 2365       06/08/2007    1
## 2366       06/08/2009    1
## 2367       06/08/2010    1
## 2368       06/08/2012    1
## 2369       06/09/1996    1
## 2370       06/09/2002    1
## 2371       06/09/2010    1
## 2372       06/10/1988    1
## 2373       06/10/1997    1
## 2374       06/10/1998    1
## 2375       06/10/2001    1
## 2376       06/10/2003    1
## 2377       06/10/2008    1
## 2378       06/10/2012    1
## 2379       06/11/1994    1
## 2380       06/11/2000    1
## 2381       06/11/2003    1
## 2382       06/11/2009    1
## 2383       06/11/2010    1
## 2384       06/11/2011    1
## 2385       06/12/1997    1
## 2386       06/12/2010    1
## 2387       07/01/1997    1
## 2388       07/01/2003    1
## 2389       07/01/2004    1
## 2390       07/01/2011    1
## 2391       07/01/2014    1
## 2392       07/02/2000    1
## 2393       07/02/2009    1
## 2394       07/03/2002    1
## 2395       07/03/2007    1
## 2396       07/03/2008    1
## 2397       07/03/2009    1
## 2398       07/04/1998    1
## 2399       07/04/2000    1
## 2400       07/04/2004    1
## 2401       07/04/2005    1
## 2402       07/04/2010    1
## 2403       07/05/1999    1
## 2404       07/05/2000    1
## 2405       07/05/2002    1
## 2406       07/05/2006    1
## 2407       07/05/2008    1
## 2408       07/05/2010    1
## 2409       07/05/2011    1
## 2410       07/06/1995    1
## 2411       07/06/1999    1
## 2412       07/06/2006    1
## 2413       07/07/1996    1
## 2414       07/07/1999    1
## 2415       07/07/2013    1
## 2416       07/08/1996    1
## 2417       07/08/2000    1
## 2418       07/08/2002    1
## 2419       07/08/2003    1
## 2420       07/08/2004    1
## 2421       07/08/2007    1
## 2422       07/08/2008    1
## 2423       07/09/1998    1
## 2424       07/09/2001    1
## 2425       07/09/2004    1
## 2426       07/09/2008    1
## 2427       07/09/2009    1
## 2428       07/10/2005    1
## 2429       07/10/2011    1
## 2430       07/10/2012    1
## 2431       07/11/1994    1
## 2432       07/11/2003    1
## 2433       07/11/2005    1
## 2434       07/11/2008    1
## 2435       07/11/2012    1
## 2436       07/12/1995    1
## 2437       07/12/2003    1
## 2438       07/12/2006    1
## 2439       07/12/2007    1
## 2440       08/01/1997    1
## 2441       08/01/1999    1
## 2442       08/01/2002    1
## 2443       08/01/2005    1
## 2444       08/01/2006    1
## 2445       08/01/2008    1
## 2446       08/01/2011    1
## 2447       08/02/1995    1
## 2448       08/02/1996    1
## 2449       08/02/1997    1
## 2450       08/02/2000    1
## 2451       08/02/2007    1
## 2452       08/02/2009    1
## 2453       08/02/2011    1
## 2454       08/03/1999    1
## 2455       08/03/2006    1
## 2456       08/03/2010    1
## 2457       08/04/1996    1
## 2458       08/04/2004    1
## 2459       08/04/2006    1
## 2460       08/04/2009    1
## 2461       08/04/2010    1
## 2462       08/04/2011    1
## 2463       08/04/2012    1
## 2464       08/05/2010    1
## 2465       08/05/2014    1
## 2466       08/06/1999    1
## 2467       08/06/2001    1
## 2468       08/06/2003    1
## 2469       08/06/2005    1
## 2470       08/06/2008    1
## 2471       08/06/2014    1
## 2472       08/07/1997    1
## 2473       08/07/1998    1
## 2474       08/07/2005    1
## 2475       08/07/2006    1
## 2476       08/07/2011    1
## 2477       08/08/1997    1
## 2478       08/08/1998    1
## 2479       08/08/2007    1
## 2480       08/08/2009    1
## 2481       08/09/2001    1
## 2482       08/09/2003    1
## 2483       08/09/2007    1
## 2484       08/09/2010    1
## 2485       08/10/2003    1
## 2486       08/10/2006    1
## 2487       08/10/2008    1
## 2488       08/10/2011    1
## 2489       08/11/2007    1
## 2490       08/11/2009    1
## 2491       08/12/1995    1
## 2492       08/12/1996    1
## 2493       08/12/1997    1
## 2494       08/12/2006    1
## 2495       08/12/2013    1
## 2496       09/01/2001    1
## 2497       09/01/2002    1
## 2498       09/01/2003    1
## 2499       09/01/2006    1
## 2500       09/01/2007    1
## 2501       09/01/2009    1
## 2502       09/02/1998    1
## 2503       09/02/2007    1
## 2504       09/02/2010    1
## 2505       09/03/1999    1
## 2506       09/03/2007    1
## 2507       09/03/2013    1
## 2508       09/04/1998    1
## 2509       09/04/1999    1
## 2510       09/04/2000    1
## 2511       09/04/2001    1
## 2512       09/04/2004    1
## 2513       09/04/2009    1
## 2514       09/04/2010    1
## 2515       09/05/2003    1
## 2516       09/05/2005    1
## 2517       09/05/2006    1
## 2518       09/05/2008    1
## 2519       09/05/2009    1
## 2520       09/05/2010    1
## 2521       09/06/2005    1
## 2522       09/06/2006    1
## 2523       09/06/2007    1
## 2524       09/06/2011    1
## 2525       09/07/1996    1
## 2526       09/07/2008    1
## 2527       09/07/2010    1
## 2528       09/07/2011    1
## 2529       09/08/1997    1
## 2530       09/08/1999    1
## 2531       09/08/2005    1
## 2532       09/08/2008    1
## 2533       09/08/2011    1
## 2534       09/09/1995    1
## 2535       09/09/2002    1
## 2536       09/09/2003    1
## 2537       09/09/2005    1
## 2538       09/09/2012    1
## 2539       09/10/1998    1
## 2540       09/10/1999    1
## 2541       09/10/2000    1
## 2542       09/10/2005    1
## 2543       09/10/2009    1
## 2544       09/11/1997    1
## 2545       09/11/1998    1
## 2546       09/11/2000    1
## 2547       09/11/2005    1
## 2548       09/11/2006    1
## 2549       09/12/2000    1
## 2550       09/12/2003    1
## 2551       09/12/2006    1
## 2552       09/12/2007    1
## 2553       09/12/2011    1
## 2554       10/01/1997    1
## 2555       10/01/1999    1
## 2556       10/01/2000    1
## 2557       10/01/2001    1
## 2558       10/01/2002    1
## 2559       10/01/2004    1
## 2560       10/01/2008    1
## 2561       10/01/2009    1
## 2562       10/01/2011    1
## 2563       10/02/2000    1
## 2564       10/02/2011    1
## 2565       10/03/2001    1
## 2566       10/03/2013    1
## 2567       10/04/1997    1
## 2568       10/04/1998    1
## 2569       10/04/2003    1
## 2570       10/04/2005    1
## 2571       10/04/2011    1
## 2572       10/05/1997    1
## 2573       10/05/1998    1
## 2574       10/05/2005    1
## 2575       10/05/2006    1
## 2576       10/05/2010    1
## 2577       10/05/2011    1
## 2578       10/05/2012    1
## 2579       10/05/2013    1
## 2580       10/05/2014    1
## 2581       10/06/2003    1
## 2582       10/06/2004    1
## 2583       10/06/2006    1
## 2584       10/06/2007    1
## 2585       10/06/2009    1
## 2586       10/06/2010    1
## 2587       10/06/2011    1
## 2588       10/06/2012    1
## 2589       10/07/2001    1
## 2590       10/07/2002    1
## 2591       10/07/2008    1
## 2592       10/07/2010    1
## 2593       10/08/1995    1
## 2594       10/08/2006    1
## 2595       10/08/2010    1
## 2596       10/09/2002    1
## 2597       10/09/2008    1
## 2598       10/09/2010    1
## 2599       10/10/1997    1
## 2600       10/10/2002    1
## 2601       10/10/2007    1
## 2602       10/10/2008    1
## 2603       10/10/2009    1
## 2604       10/11/1996    1
## 2605       10/11/2007    1
## 2606       10/11/2011    1
## 2607       10/11/2012    1
## 2608       10/11/2013    1
## 2609       10/12/1997    1
## 2610       10/12/1999    1
## 2611       10/12/2003    1
## 2612       10/12/2004    1
## 2613       10/12/2006    1
## 2614       10/12/2013    1
## 2615       11/01/1996    1
## 2616       11/01/1997    1
## 2617       11/01/2002    1
## 2618       11/02/1994    1
## 2619       11/02/1998    1
## 2620       11/02/2001    1
## 2621       11/02/2002    1
## 2622       11/02/2005    1
## 2623       11/02/2008    1
## 2624       11/02/2011    1
## 2625       11/03/1992    1
## 2626       11/03/1996    1
## 2627       11/03/1998    1
## 2628       11/03/2007    1
## 2629       11/03/2008    1
## 2630       11/04/1996    1
## 2631       11/04/1998    1
## 2632       11/04/2013    1
## 2633       11/05/2004    1
## 2634       11/05/2005    1
## 2635       11/05/2006    1
## 2636       11/06/2003    1
## 2637       11/06/2007    1
## 2638       11/06/2011    1
## 2639       11/07/2002    1
## 2640       11/07/2005    1
## 2641       11/07/2007    1
## 2642       11/08/1996    1
## 2643       11/08/2006    1
## 2644       11/08/2012    1
## 2645       11/08/2013    1
## 2646       11/09/2000    1
## 2647       11/09/2004    1
## 2648       11/09/2009    1
## 2649       11/10/1996    1
## 2650       11/10/1999    1
## 2651       11/10/2002    1
## 2652       11/10/2004    1
## 2653       11/10/2005    1
## 2654       11/10/2009    1
## 2655       11/11/1997    1
## 2656       11/11/2002    1
## 2657       11/11/2004    1
## 2658       11/11/2005    1
## 2659       11/11/2008    1
## 2660       11/11/2010    1
## 2661       11/12/1997    1
## 2662       11/12/2004    1
## 2663       11/12/2010    1
## 2664       12/01/1999    1
## 2665       12/01/2007    1
## 2666       12/01/2011    1
## 2667       12/01/2012    1
## 2668       12/02/1996    1
## 2669       12/02/1997    1
## 2670       12/02/1999    1
## 2671       12/02/2001    1
## 2672       12/02/2002    1
## 2673       12/02/2005    1
## 2674       12/02/2008    1
## 2675       12/02/2010    1
## 2676       12/03/1996    1
## 2677       12/03/2007    1
## 2678       12/03/2013    1
## 2679       12/04/1995    1
## 2680       12/04/1997    1
## 2681       12/04/2003    1
## 2682       12/04/2010    1
## 2683       12/04/2014    1
## 2684       12/05/1996    1
## 2685       12/05/1998    1
## 2686       12/05/2003    1
## 2687       12/05/2005    1
## 2688       12/05/2012    1
## 2689       12/06/2002    1
## 2690       12/06/2006    1
## 2691       12/07/1996    1
## 2692       12/07/1998    1
## 2693       12/07/2002    1
## 2694       12/07/2007    1
## 2695       12/08/1998    1
## 2696       12/08/2003    1
## 2697       12/08/2007    1
## 2698       12/08/2012    1
## 2699       12/09/2006    1
## 2700       12/09/2007    1
## 2701       12/09/2009    1
## 2702       12/09/2010    1
## 2703       12/10/1997    1
## 2704       12/10/2005    1
## 2705       12/10/2008    1
## 2706       12/10/2011    1
## 2707       12/11/1996    1
## 2708       12/11/1998    1
## 2709       12/11/1999    1
## 2710       12/11/2001    1
## 2711       12/11/2005    1
## 2712       12/11/2007    1
## 2713       12/12/1996    1
## 2714       12/12/2005    1
## 2715       12/12/2008    1
## 2716       12/12/2010    1
## 2717       12/12/2011    1
## 2718       13/01/2003    1
## 2719       13/01/2008    1
## 2720       13/01/2009    1
## 2721       13/01/2011    1
## 2722       13/02/1998    1
## 2723       13/02/2010    1
## 2724       13/02/2012    1
## 2725       13/03/2000    1
## 2726       13/03/2003    1
## 2727       13/03/2006    1
## 2728       13/04/2003    1
## 2729       13/04/2011    1
## 2730       13/04/2013    1
## 2731       13/05/2004    1
## 2732       13/05/2006    1
## 2733       13/05/2009    1
## 2734       13/05/2011    1
## 2735       13/05/2013    1
## 2736       13/06/1994    1
## 2737       13/06/1997    1
## 2738       13/06/2003    1
## 2739       13/06/2005    1
## 2740       13/06/2007    1
## 2741       13/06/2011    1
## 2742       13/07/1996    1
## 2743       13/07/1997    1
## 2744       13/07/2010    1
## 2745       13/08/2009    1
## 2746       13/08/2010    1
## 2747       13/09/1993    1
## 2748       13/09/2001    1
## 2749       13/09/2005    1
## 2750       13/09/2010    1
## 2751       13/09/2013    1
## 2752       13/10/1996    1
## 2753       13/10/1998    1
## 2754       13/10/2000    1
## 2755       13/10/2003    1
## 2756       13/10/2006    1
## 2757       13/10/2008    1
## 2758       13/10/2010    1
## 2759       13/10/2011    1
## 2760       13/11/1997    1
## 2761       13/11/2004    1
## 2762       13/11/2007    1
## 2763       13/11/2009    1
## 2764       13/12/1995    1
## 2765       13/12/2003    1
## 2766       13/12/2008    1
## 2767       13/12/2010    1
## 2768       14/01/1999    1
## 2769       14/01/2005    1
## 2770       14/01/2006    1
## 2771       14/01/2008    1
## 2772       14/01/2012    1
## 2773       14/02/1996    1
## 2774       14/02/1997    1
## 2775       14/02/2007    1
## 2776       14/03/1996    1
## 2777       14/03/2001    1
## 2778       14/03/2002    1
## 2779       14/03/2011    1
## 2780       14/03/2013    1
## 2781       14/04/1996    1
## 2782       14/04/2003    1
## 2783       14/04/2004    1
## 2784       14/04/2011    1
## 2785       14/04/2012    1
## 2786       14/04/2013    1
## 2787       14/05/1998    1
## 2788       14/05/2006    1
## 2789       14/05/2008    1
## 2790       14/06/1993    1
## 2791       14/06/1995    1
## 2792       14/06/1997    1
## 2793       14/06/1999    1
## 2794       14/06/2005    1
## 2795       14/06/2009    1
## 2796       14/07/2009    1
## 2797       14/07/2010    1
## 2798       14/07/2011    1
## 2799       14/08/2007    1
## 2800       14/08/2012    1
## 2801       14/09/1997    1
## 2802       14/09/2005    1
## 2803       14/09/2010    1
## 2804       14/10/2000    1
## 2805       14/10/2009    1
## 2806       14/10/2010    1
## 2807       14/10/2012    1
## 2808       14/11/1995    1
## 2809       14/11/2002    1
## 2810       14/11/2006    1
## 2811       14/11/2007    1
## 2812       14/11/2011    1
## 2813       14/12/1996    1
## 2814       14/12/1997    1
## 2815       14/12/2004    1
## 2816       14/12/2008    1
## 2817       14/12/2009    1
## 2818       14/12/2013    1
## 2819       15/01/2005    1
## 2820       15/01/2009    1
## 2821       15/01/2012    1
## 2822       15/01/2013    1
## 2823       15/02/1996    1
## 2824       15/02/1998    1
## 2825       15/02/2006    1
## 2826       15/02/2007    1
## 2827       15/02/2010    1
## 2828       15/02/2012    1
## 2829       15/03/1994    1
## 2830       15/03/1997    1
## 2831       15/03/1999    1
## 2832       15/03/2008    1
## 2833       15/03/2009    1
## 2834       15/04/1998    1
## 2835       15/04/2007    1
## 2836       15/04/2009    1
## 2837       15/04/2010    1
## 2838       15/04/2011    1
## 2839       15/04/2012    1
## 2840       15/05/1995    1
## 2841       15/05/1997    1
## 2842       15/05/2000    1
## 2843       15/05/2002    1
## 2844       15/05/2003    1
## 2845       15/05/2004    1
## 2846       15/05/2010    1
## 2847       15/05/2014    1
## 2848       15/06/1999    1
## 2849       15/06/2013    1
## 2850       15/06/2014    1
## 2851       15/07/1995    1
## 2852       15/07/2003    1
## 2853       15/07/2009    1
## 2854       15/08/1995    1
## 2855       15/08/1996    1
## 2856       15/08/2000    1
## 2857       15/08/2008    1
## 2858       15/08/2009    1
## 2859       15/08/2012    1
## 2860       15/09/1993    1
## 2861       15/09/1997    1
## 2862       15/09/1998    1
## 2863       15/09/2006    1
## 2864       15/09/2007    1
## 2865       15/10/1998    1
## 2866       15/10/2004    1
## 2867       15/10/2005    1
## 2868       15/10/2006    1
## 2869       15/10/2010    1
## 2870       15/10/2011    1
## 2871       15/11/2005    1
## 2872       15/11/2007    1
## 2873       15/11/2010    1
## 2874       15/12/1998    1
## 2875       15/12/1999    1
## 2876       15/12/2003    1
## 2877       15/12/2004    1
## 2878       15/12/2006    1
## 2879       15/12/2008    1
## 2880       15/12/2009    1
## 2881       16/01/1998    1
## 2882       16/01/2002    1
## 2883       16/01/2003    1
## 2884       16/01/2008    1
## 2885       16/01/2011    1
## 2886       16/01/2012    1
## 2887       16/01/2014    1
## 2888       16/02/1997    1
## 2889       16/02/2000    1
## 2890       16/02/2004    1
## 2891       16/02/2005    1
## 2892       16/02/2006    1
## 2893       16/02/2010    1
## 2894       16/03/2005    1
## 2895       16/03/2006    1
## 2896       16/03/2007    1
## 2897       16/03/2008    1
## 2898       16/03/2009    1
## 2899       16/04/1998    1
## 2900       16/04/2003    1
## 2901       16/04/2009    1
## 2902       16/04/2010    1
## 2903       16/05/2005    1
## 2904       16/06/1996    1
## 2905       16/06/1997    1
## 2906       16/06/1998    1
## 2907       16/06/2010    1
## 2908       16/06/2012    1
## 2909       16/07/1995    1
## 2910       16/07/1997    1
## 2911       16/07/2003    1
## 2912       16/07/2004    1
## 2913       16/07/2005    1
## 2914       16/07/2006    1
## 2915       16/08/1997    1
## 2916       16/08/2006    1
## 2917       16/09/1997    1
## 2918       16/09/1998    1
## 2919       16/09/1999    1
## 2920       16/09/2008    1
## 2921       16/09/2009    1
## 2922       16/10/1996    1
## 2923       16/10/1997    1
## 2924       16/10/2001    1
## 2925       16/11/1995    1
## 2926       16/11/1997    1
## 2927       16/11/2007    1
## 2928       16/11/2009    1
## 2929       16/12/2000    1
## 2930       16/12/2006    1
## 2931       16/12/2011    1
## 2932       17/01/2002    1
## 2933       17/01/2004    1
## 2934       17/01/2008    1
## 2935       17/01/2010    1
## 2936       17/01/2012    1
## 2937       17/02/2003    1
## 2938       17/03/1999    1
## 2939       17/03/2006    1
## 2940       17/03/2008    1
## 2941       17/03/2009    1
## 2942       17/03/2010    1
## 2943       17/04/1998    1
## 2944       17/04/2004    1
## 2945       17/04/2010    1
## 2946       17/05/1997    1
## 2947       17/05/2000    1
## 2948       17/05/2003    1
## 2949       17/05/2004    1
## 2950       17/05/2006    1
## 2951       17/05/2011    1
## 2952       17/05/2014    1
## 2953       17/06/1996    1
## 2954       17/06/1998    1
## 2955       17/06/2004    1
## 2956       17/06/2005    1
## 2957       17/07/1997    1
## 2958       17/07/1998    1
## 2959       17/07/2003    1
## 2960       17/07/2010    1
## 2961       17/08/1998    1
## 2962       17/08/2004    1
## 2963       17/08/2006    1
## 2964       17/08/2010    1
## 2965       17/08/2012    1
## 2966       17/08/2013    1
## 2967       17/09/1996    1
## 2968       17/09/1997    1
## 2969       17/09/2001    1
## 2970       17/09/2002    1
## 2971       17/09/2004    1
## 2972       17/09/2008    1
## 2973       17/09/2011    1
## 2974       17/10/2002    1
## 2975       17/10/2004    1
## 2976       17/10/2005    1
## 2977       17/10/2006    1
## 2978       17/10/2009    1
## 2979       17/10/2012    1
## 2980       17/11/1996    1
## 2981       17/11/2004    1
## 2982       17/11/2008    1
## 2983       17/11/2010    1
## 2984       17/12/1996    1
## 2985       17/12/1998    1
## 2986       17/12/2001    1
## 2987       17/12/2002    1
## 2988       17/12/2005    1
## 2989       17/12/2007    1
## 2990       17/12/2008    1
## 2991       17/12/2009    1
## 2992       17/12/2010    1
## 2993       17/12/2011    1
## 2994       17/12/2013    1
## 2995       18/01/1996    1
## 2996       18/01/2006    1
## 2997       18/01/2007    1
## 2998       18/01/2008    1
## 2999       18/01/2010    1
## 3000       18/01/2012    1
## 3001       18/01/2013    1
## 3002       18/02/1996    1
## 3003       18/02/2002    1
## 3004       18/02/2006    1
## 3005       18/02/2008    1
## 3006       18/02/2010    1
## 3007       18/03/1996    1
## 3008       18/03/2005    1
## 3009       18/03/2008    1
## 3010       18/03/2009    1
## 3011       18/03/2010    1
## 3012       18/04/2009    1
## 3013       18/04/2012    1
## 3014       18/05/1999    1
## 3015       18/05/2001    1
## 3016       18/05/2007    1
## 3017       18/05/2009    1
## 3018       18/05/2011    1
## 3019       18/05/2012    1
## 3020       18/05/2013    1
## 3021       18/05/2014    1
## 3022       18/06/2002    1
## 3023       18/06/2006    1
## 3024       18/07/2000    1
## 3025       18/07/2002    1
## 3026       18/07/2013    1
## 3027       18/08/1997    1
## 3028       18/08/2006    1
## 3029       18/08/2009    1
## 3030       18/08/2012    1
## 3031       18/08/2013    1
## 3032       18/09/1998    1
## 3033       18/09/2000    1
## 3034       18/09/2006    1
## 3035       18/09/2008    1
## 3036       18/09/2013    1
## 3037       18/10/1999    1
## 3038       18/10/2004    1
## 3039       18/10/2010    1
## 3040       18/10/2011    1
## 3041       18/11/2007    1
## 3042       18/11/2008    1
## 3043       18/12/1998    1
## 3044       18/12/2004    1
## 3045       18/12/2005    1
## 3046       18/12/2008    1
## 3047       19/01/1997    1
## 3048       19/01/1998    1
## 3049       19/01/2005    1
## 3050       19/01/2006    1
## 3051       19/01/2008    1
## 3052       19/01/2009    1
## 3053       19/02/1996    1
## 3054       19/02/2005    1
## 3055       19/02/2006    1
## 3056       19/02/2007    1
## 3057       19/02/2013    1
## 3058       19/03/2005    1
## 3059       19/03/2008    1
## 3060       19/04/1997    1
## 3061       19/04/1998    1
## 3062       19/04/2003    1
## 3063       19/04/2008    1
## 3064       19/04/2010    1
## 3065       19/04/2012    1
## 3066       19/04/2013    1
## 3067       19/05/1996    1
## 3068       19/05/1998    1
## 3069       19/05/2000    1
## 3070       19/05/2004    1
## 3071       19/05/2005    1
## 3072       19/05/2007    1
## 3073       19/05/2009    1
## 3074       19/06/1998    1
## 3075       19/06/2003    1
## 3076       19/06/2004    1
## 3077       19/06/2008    1
## 3078       19/07/2005    1
## 3079       19/07/2006    1
## 3080       19/08/1998    1
## 3081       19/08/2005    1
## 3082       19/08/2006    1
## 3083       19/08/2011    1
## 3084       19/08/2012    1
## 3085       19/09/1997    1
## 3086       19/09/1998    1
## 3087       19/09/2002    1
## 3088       19/09/2003    1
## 3089       19/09/2004    1
## 3090       19/09/2006    1
## 3091       19/09/2008    1
## 3092       19/09/2011    1
## 3093       19/10/1996    1
## 3094       19/10/1997    1
## 3095       19/10/2004    1
## 3096       19/11/1994    1
## 3097       19/11/1997    1
## 3098       19/11/2001    1
## 3099       19/11/2002    1
## 3100       19/11/2003    1
## 3101       19/11/2004    1
## 3102       19/11/2006    1
## 3103       19/11/2009    1
## 3104       19/12/1996    1
## 3105       19/12/2002    1
## 3106       19/12/2008    1
## 3107       19/12/2009    1
## 3108       19/12/2012    1
## 3109       20/01/1997    1
## 3110       20/01/1999    1
## 3111       20/01/2009    1
## 3112       20/02/2009    1
## 3113       20/03/1996    1
## 3114       20/03/1997    1
## 3115       20/03/1998    1
## 3116       20/03/1999    1
## 3117       20/03/2000    1
## 3118       20/03/2004    1
## 3119       20/03/2006    1
## 3120       20/03/2011    1
## 3121       20/04/1995    1
## 3122       20/04/1997    1
## 3123       20/04/1998    1
## 3124       20/04/2001    1
## 3125       20/04/2007    1
## 3126       20/04/2011    1
## 3127       20/04/2012    1
## 3128       20/04/2013    1
## 3129       20/05/1995    1
## 3130       20/05/1998    1
## 3131       20/05/1999    1
## 3132       20/05/2003    1
## 3133       20/05/2004    1
## 3134       20/05/2009    1
## 3135       20/05/2014    1
## 3136       20/06/1997    1
## 3137       20/06/2000    1
## 3138       20/06/2001    1
## 3139       20/06/2002    1
## 3140       20/06/2005    1
## 3141       20/06/2007    1
## 3142       20/07/1998    1
## 3143       20/07/2012    1
## 3144       20/08/1993    1
## 3145       20/08/1998    1
## 3146       20/08/2002    1
## 3147       20/08/2005    1
## 3148       20/08/2006    1
## 3149       20/08/2007    1
## 3150       20/09/2001    1
## 3151       20/09/2006    1
## 3152       20/09/2007    1
## 3153       20/09/2009    1
## 3154       20/10/1996    1
## 3155       20/10/1999    1
## 3156       20/10/2003    1
## 3157       20/10/2006    1
## 3158       20/10/2007    1
## 3159       20/10/2011    1
## 3160       20/11/1997    1
## 3161       20/11/1998    1
## 3162       20/11/2002    1
## 3163       20/11/2003    1
## 3164       20/11/2010    1
## 3165       20/12/2004    1
## 3166       20/12/2011    1
## 3167       21/01/1996    1
## 3168       21/01/1998    1
## 3169       21/01/2002    1
## 3170       21/01/2007    1
## 3171       21/01/2008    1
## 3172       21/01/2013    1
## 3173       21/02/1998    1
## 3174       21/02/1999    1
## 3175       21/02/2003    1
## 3176       21/02/2004    1
## 3177       21/02/2005    1
## 3178       21/02/2006    1
## 3179       21/02/2010    1
## 3180       21/03/2008    1
## 3181       21/03/2009    1
## 3182       21/03/2010    1
## 3183       21/03/2014    1
## 3184       21/04/1996    1
## 3185       21/04/1998    1
## 3186       21/04/2003    1
## 3187       21/04/2004    1
## 3188       21/04/2006    1
## 3189       21/04/2007    1
## 3190       21/05/2010    1
## 3191       21/06/1995    1
## 3192       21/06/1996    1
## 3193       21/06/1999    1
## 3194       21/06/2002    1
## 3195       21/06/2004    1
## 3196       21/06/2008    1
## 3197       21/06/2012    1
## 3198       21/06/2014    1
## 3199       21/07/1997    1
## 3200       21/07/2002    1
## 3201       21/07/2006    1
## 3202       21/07/2012    1
## 3203       21/07/2013    1
## 3204       21/08/2000    1
## 3205       21/08/2006    1
## 3206       21/09/1998    1
## 3207       21/09/2004    1
## 3208       21/09/2007    1
## 3209       21/09/2009    1
## 3210       21/10/1994    1
## 3211       21/10/2002    1
## 3212       21/10/2003    1
## 3213       21/10/2007    1
## 3214       21/11/1997    1
## 3215       21/11/2004    1
## 3216       21/11/2005    1
## 3217       21/11/2009    1
## 3218       21/12/1996    1
## 3219       21/12/2004    1
## 3220       21/12/2011    1
## 3221       22/01/1996    1
## 3222       22/01/2001    1
## 3223       22/01/2002    1
## 3224       22/01/2009    1
## 3225       22/01/2010    1
## 3226       22/02/1996    1
## 3227       22/02/1997    1
## 3228       22/02/2001    1
## 3229       22/02/2003    1
## 3230       22/02/2004    1
## 3231       22/02/2005    1
## 3232       22/02/2006    1
## 3233       22/02/2008    1
## 3234       22/02/2014    1
## 3235       22/03/1996    1
## 3236       22/03/1999    1
## 3237       22/03/2000    1
## 3238       22/03/2002    1
## 3239       22/03/2011    1
## 3240       22/03/2012    1
## 3241       22/04/1997    1
## 3242       22/04/1998    1
## 3243       22/04/2000    1
## 3244       22/04/2004    1
## 3245       22/04/2008    1
## 3246       22/05/1995    1
## 3247       22/05/2002    1
## 3248       22/05/2004    1
## 3249       22/05/2007    1
## 3250       22/05/2010    1
## 3251       22/06/1997    1
## 3252       22/06/1998    1
## 3253       22/06/2001    1
## 3254       22/06/2011    1
## 3255       22/07/2003    1
## 3256       22/07/2005    1
## 3257       22/07/2010    1
## 3258       22/07/2012    1
## 3259       22/08/2006    1
## 3260       22/08/2008    1
## 3261       22/08/2009    1
## 3262       22/09/1989    1
## 3263       22/09/1995    1
## 3264       22/09/1997    1
## 3265       22/09/2000    1
## 3266       22/09/2005    1
## 3267       22/10/1995    1
## 3268       22/10/1998    1
## 3269       22/10/2006    1
## 3270       22/10/2009    1
## 3271       22/11/2003    1
## 3272       22/11/2006    1
## 3273       22/12/1998    1
## 3274       22/12/2004    1
## 3275       22/12/2006    1
## 3276       22/12/2010    1
## 3277       22/12/2011    1
## 3278       22/12/2013    1
## 3279       23/01/1997    1
## 3280       23/01/1998    1
## 3281       23/01/1999    1
## 3282       23/02/1996    1
## 3283       23/02/1997    1
## 3284       23/02/1998    1
## 3285       23/02/1999    1
## 3286       23/02/2001    1
## 3287       23/02/2004    1
## 3288       23/02/2005    1
## 3289       23/02/2006    1
## 3290       23/02/2007    1
## 3291       23/02/2008    1
## 3292       23/02/2010    1
## 3293       23/02/2011    1
## 3294       23/02/2013    1
## 3295       23/02/2014    1
## 3296       23/03/1997    1
## 3297       23/03/2006    1
## 3298       23/03/2008    1
## 3299       23/03/2010    1
## 3300       23/04/1997    1
## 3301       23/04/2005    1
## 3302       23/04/2010    1
## 3303       23/04/2011    1
## 3304       23/04/2012    1
## 3305       23/04/2014    1
## 3306       23/05/1996    1
## 3307       23/05/2002    1
## 3308       23/06/1999    1
## 3309       23/06/2005    1
## 3310       23/06/2010    1
## 3311       23/07/2001    1
## 3312       23/07/2002    1
## 3313       23/07/2007    1
## 3314       23/07/2009    1
## 3315       23/07/2010    1
## 3316       23/08/2006    1
## 3317       23/08/2009    1
## 3318       23/09/2002    1
## 3319       23/09/2006    1
## 3320       23/09/2009    1
## 3321       23/09/2012    1
## 3322       23/10/1997    1
## 3323       23/10/2006    1
## 3324       23/10/2008    1
## 3325       23/10/2012    1
## 3326       23/11/2003    1
## 3327       23/11/2004    1
## 3328       23/11/2008    1
## 3329       23/11/2011    1
## 3330       23/11/2013    1
## 3331       23/12/1996    1
## 3332       23/12/1998    1
## 3333       23/12/2003    1
## 3334       23/12/2008    1
## 3335       23/12/2010    1
## 3336       23/12/2011    1
## 3337       23/12/2013    1
## 3338       24/01/2000    1
## 3339       24/01/2004    1
## 3340       24/02/1999    1
## 3341       24/02/2004    1
## 3342       24/02/2006    1
## 3343       24/02/2009    1
## 3344       24/02/2010    1
## 3345       24/02/2013    1
## 3346       24/02/2014    1
## 3347       24/03/1998    1
## 3348       24/03/2002    1
## 3349       24/03/2003    1
## 3350       24/03/2004    1
## 3351       24/03/2005    1
## 3352       24/03/2009    1
## 3353       24/03/2010    1
## 3354       24/04/1996    1
## 3355       24/04/1997    1
## 3356       24/04/2002    1
## 3357       24/04/2005    1
## 3358       24/04/2006    1
## 3359       24/04/2009    1
## 3360       24/04/2012    1
## 3361       24/05/1995    1
## 3362       24/05/1996    1
## 3363       24/05/1997    1
## 3364       24/05/2005    1
## 3365       24/05/2011    1
## 3366       24/05/2013    1
## 3367       24/06/1996    1
## 3368       24/06/1997    1
## 3369       24/06/2007    1
## 3370       24/06/2008    1
## 3371       24/06/2010    1
## 3372       24/06/2011    1
## 3373       24/06/2014    1
## 3374       24/07/1998    1
## 3375       24/07/2001    1
## 3376       24/07/2002    1
## 3377       24/07/2006    1
## 3378       24/07/2011    1
## 3379       24/08/1995    1
## 3380       24/08/1997    1
## 3381       24/08/2000    1
## 3382       24/08/2005    1
## 3383       24/08/2009    1
## 3384       24/08/2012    1
## 3385       24/09/1999    1
## 3386       24/09/2011    1
## 3387       24/10/1996    1
## 3388       24/10/2002    1
## 3389       24/10/2004    1
## 3390       24/10/2005    1
## 3391       24/10/2010    1
## 3392       24/10/2011    1
## 3393       24/11/1999    1
## 3394       24/11/2005    1
## 3395       24/11/2007    1
## 3396       24/11/2012    1
## 3397       24/12/1996    1
## 3398       24/12/2004    1
## 3399       24/12/2008    1
## 3400       24/12/2009    1
## 3401       24/12/2011    1
## 3402       24/12/2013    1
## 3403       25/01/1997    1
## 3404       25/01/2008    1
## 3405       25/01/2009    1
## 3406       25/01/2012    1
## 3407       25/02/1999    1
## 3408       25/02/2000    1
## 3409       25/02/2006    1
## 3410       25/02/2012    1
## 3411       25/03/1996    1
## 3412       25/03/2002    1
## 3413       25/03/2005    1
## 3414       25/03/2010    1
## 3415       25/04/1995    1
## 3416       25/04/2003    1
## 3417       25/04/2005    1
## 3418       25/04/2006    1
## 3419       25/04/2007    1
## 3420       25/04/2010    1
## 3421       25/04/2012    1
## 3422       25/04/2013    1
## 3423       25/05/1996    1
## 3424       25/05/2004    1
## 3425       25/06/2002    1
## 3426       25/06/2003    1
## 3427       25/06/2012    1
## 3428       25/07/2009    1
## 3429       25/07/2010    1
## 3430       25/08/1996    1
## 3431       25/08/2000    1
## 3432       25/08/2006    1
## 3433       25/08/2008    1
## 3434       25/08/2013    1
## 3435       25/09/2003    1
## 3436       25/09/2006    1
## 3437       25/09/2011    1
## 3438       25/09/2012    1
## 3439       25/10/1997    1
## 3440       25/10/1998    1
## 3441       25/10/1999    1
## 3442       25/10/2004    1
## 3443       25/10/2006    1
## 3444       25/10/2011    1
## 3445       25/11/2002    1
## 3446       25/11/2012    1
## 3447       25/12/1996    1
## 3448       25/12/1997    1
## 3449       25/12/2008    1
## 3450       25/12/2012    1
## 3451       26/01/1998    1
## 3452       26/01/2004    1
## 3453       26/01/2005    1
## 3454       26/01/2012    1
## 3455       26/01/2014    1
## 3456       26/02/1993    1
## 3457       26/02/1997    1
## 3458       26/02/1999    1
## 3459       26/02/2000    1
## 3460       26/02/2003    1
## 3461       26/02/2005    1
## 3462       26/02/2011    1
## 3463       26/03/2009    1
## 3464       26/03/2010    1
## 3465       26/03/2013    1
## 3466       26/04/1997    1
## 3467       26/04/2000    1
## 3468       26/04/2006    1
## 3469       26/04/2012    1
## 3470       26/04/2013    1
## 3471       26/05/1998    1
## 3472       26/05/2008    1
## 3473       26/05/2011    1
## 3474       26/05/2013    1
## 3475       26/05/2014    1
## 3476       26/06/2000    1
## 3477       26/06/2002    1
## 3478       26/06/2004    1
## 3479       26/06/2006    1
## 3480       26/06/2007    1
## 3481       26/06/2009    1
## 3482       26/06/2010    1
## 3483       26/06/2012    1
## 3484       26/07/1997    1
## 3485       26/07/2001    1
## 3486       26/07/2002    1
## 3487       26/07/2007    1
## 3488       26/08/1993    1
## 3489       26/08/2009    1
## 3490       26/08/2010    1
## 3491       26/09/1997    1
## 3492       26/09/2003    1
## 3493       26/09/2006    1
## 3494       26/09/2007    1
## 3495       26/09/2008    1
## 3496       26/10/2004    1
## 3497       26/10/2007    1
## 3498       26/10/2008    1
## 3499       26/10/2009    1
## 3500       26/11/1997    1
## 3501       26/11/2003    1
## 3502       26/11/2005    1
## 3503       26/11/2007    1
## 3504       26/11/2009    1
## 3505       26/12/1995    1
## 3506       26/12/1996    1
## 3507       26/12/2006    1
## 3508       26/12/2008    1
## 3509       27/01/2004    1
## 3510       27/01/2005    1
## 3511       27/01/2006    1
## 3512       27/01/2008    1
## 3513       27/01/2009    1
## 3514       27/01/2011    1
## 3515       27/01/2012    1
## 3516       27/02/1997    1
## 3517       27/02/2002    1
## 3518       27/02/2005    1
## 3519       27/02/2008    1
## 3520       27/03/1998    1
## 3521       27/03/2001    1
## 3522       27/03/2003    1
## 3523       27/03/2005    1
## 3524       27/03/2008    1
## 3525       27/03/2012    1
## 3526       27/04/1996    1
## 3527       27/04/2004    1
## 3528       27/04/2010    1
## 3529       27/04/2013    1
## 3530       27/05/1996    1
## 3531       27/05/2010    1
## 3532       27/05/2011    1
## 3533       27/05/2013    1
## 3534       27/06/2001    1
## 3535       27/06/2008    1
## 3536       27/06/2009    1
## 3537       27/07/1998    1
## 3538       27/07/2005    1
## 3539       27/07/2008    1
## 3540       27/07/2009    1
## 3541       27/08/1984    1
## 3542       27/08/2001    1
## 3543       27/08/2002    1
## 3544       27/08/2009    1
## 3545       27/08/2013    1
## 3546       27/09/1995    1
## 3547       27/09/2001    1
## 3548       27/09/2004    1
## 3549       27/10/1995    1
## 3550       27/10/1996    1
## 3551       27/10/1998    1
## 3552       27/10/2003    1
## 3553       27/10/2004    1
## 3554       27/10/2006    1
## 3555       27/10/2011    1
## 3556       27/11/1998    1
## 3557       27/11/2001    1
## 3558       27/12/1996    1
## 3559       27/12/1997    1
## 3560       27/12/2003    1
## 3561       27/12/2006    1
## 3562       27/12/2010    1
## 3563       27/12/2013    1
## 3564       28/01/2002    1
## 3565       28/01/2003    1
## 3566       28/01/2005    1
## 3567       28/02/1997    1
## 3568       28/02/2001    1
## 3569       28/02/2002    1
## 3570       28/02/2004    1
## 3571       28/02/2008    1
## 3572       28/02/2009    1
## 3573       28/02/2010    1
## 3574       28/02/2012    1
## 3575       28/03/2005    1
## 3576       28/03/2007    1
## 3577       28/03/2008    1
## 3578       28/04/1995    1
## 3579       28/04/2006    1
## 3580       28/04/2010    1
## 3581       28/04/2012    1
## 3582       28/05/1997    1
## 3583       28/05/2006    1
## 3584       28/05/2007    1
## 3585       28/05/2008    1
## 3586       28/05/2009    1
## 3587       28/06/1995    1
## 3588       28/06/2000    1
## 3589       28/06/2006    1
## 3590       28/06/2007    1
## 3591       28/07/1996    1
## 3592       28/07/1998    1
## 3593       28/07/2003    1
## 3594       28/07/2006    1
## 3595       28/08/1998    1
## 3596       28/08/2004    1
## 3597       28/08/2005    1
## 3598       28/08/2008    1
## 3599       28/08/2010    1
## 3600       28/08/2011    1
## 3601       28/09/1997    1
## 3602       28/09/1998    1
## 3603       28/09/1999    1
## 3604       28/09/2004    1
## 3605       28/09/2007    1
## 3606       28/10/1995    1
## 3607       28/10/1996    1
## 3608       28/11/1994    1
## 3609       28/11/2000    1
## 3610       28/11/2004    1
## 3611       28/12/1996    1
## 3612       28/12/2004    1
## 3613       28/12/2005    1
## 3614       28/12/2008    1
## 3615       29/01/1996    1
## 3616       29/01/1998    1
## 3617       29/01/2002    1
## 3618       29/01/2006    1
## 3619       29/01/2007    1
## 3620       29/01/2008    1
## 3621       29/01/2009    1
## 3622       29/01/2011    1
## 3623       29/01/2012    1
## 3624       29/01/2014    1
## 3625       29/02/2004    1
## 3626       29/03/1996    1
## 3627       29/03/1997    1
## 3628       29/03/1998    1
## 3629       29/03/2002    1
## 3630       29/03/2003    1
## 3631       29/03/2004    1
## 3632       29/03/2005    1
## 3633       29/03/2010    1
## 3634       29/03/2012    1
## 3635       29/04/1997    1
## 3636       29/04/1998    1
## 3637       29/04/2002    1
## 3638       29/04/2003    1
## 3639       29/04/2005    1
## 3640       29/04/2007    1
## 3641       29/04/2012    1
## 3642       29/04/2013    1
## 3643       29/05/1997    1
## 3644       29/05/1998    1
## 3645       29/05/2003    1
## 3646       29/05/2004    1
## 3647       29/05/2006    1
## 3648       29/05/2009    1
## 3649       29/06/1995    1
## 3650       29/06/1997    1
## 3651       29/06/1998    1
## 3652       29/06/2001    1
## 3653       29/06/2004    1
## 3654       29/06/2007    1
## 3655       29/06/2009    1
## 3656       29/06/2010    1
## 3657       29/07/2005    1
## 3658       29/07/2006    1
## 3659       29/07/2009    1
## 3660       29/08/1996    1
## 3661       29/08/1998    1
## 3662       29/08/2003    1
## 3663       29/08/2007    1
## 3664       29/08/2011    1
## 3665       29/08/2012    1
## 3666       29/09/1997    1
## 3667       29/09/2001    1
## 3668       29/09/2009    1
## 3669       29/09/2010    1
## 3670       29/10/1976    1
## 3671       29/10/1997    1
## 3672       29/10/2002    1
## 3673       29/10/2004    1
## 3674       29/10/2010    1
## 3675       29/11/1997    1
## 3676       29/11/1998    1
## 3677       29/11/2011    1
## 3678       29/12/2004    1
## 3679       29/12/2006    1
## 3680       29/12/2007    1
## 3681       29/12/2009    1
## 3682       29/12/2012    1
## 3683       29/12/2013    1
## 3684       30/01/2002    1
## 3685       30/01/2003    1
## 3686       30/01/2004    1
## 3687       30/01/2006    1
## 3688       30/01/2011    1
## 3689       30/03/1996    1
## 3690       30/03/2003    1
## 3691       30/03/2005    1
## 3692       30/03/2009    1
## 3693       30/03/2010    1
## 3694       30/04/2001    1
## 3695       30/04/2006    1
## 3696       30/04/2008    1
## 3697       30/05/1995    1
## 3698       30/05/1996    1
## 3699       30/05/2001    1
## 3700       30/05/2007    1
## 3701       30/05/2011    1
## 3702       30/06/1995    1
## 3703       30/06/1996    1
## 3704       30/06/1999    1
## 3705       30/06/2003    1
## 3706       30/06/2005    1
## 3707       30/06/2013    1
## 3708       30/07/1996    1
## 3709       30/07/1997    1
## 3710       30/07/2001    1
## 3711       30/07/2006    1
## 3712       30/07/2010    1
## 3713       30/07/2013    1
## 3714       30/08/1997    1
## 3715       30/08/2001    1
## 3716       30/08/2004    1
## 3717       30/08/2007    1
## 3718       30/08/2008    1
## 3719       30/08/2011    1
## 3720       30/09/1994    1
## 3721       30/09/1997    1
## 3722       30/09/2002    1
## 3723       30/09/2004    1
## 3724       30/09/2005    1
## 3725       30/09/2009    1
## 3726       30/10/1997    1
## 3727       30/10/2001    1
## 3728       30/10/2003    1
## 3729       30/10/2004    1
## 3730       30/10/2005    1
## 3731       30/10/2006    1
## 3732       30/10/2007    1
## 3733       30/10/2011    1
## 3734       30/11/2000    1
## 3735       30/11/2004    1
## 3736       30/11/2006    1
## 3737       30/11/2010    1
## 3738       30/12/1996    1
## 3739       30/12/1999    1
## 3740       30/12/2003    1
## 3741       30/12/2011    1
## 3742       30/12/2012    1
## 3743       30/12/2013    1
## 3744       31/01/2005    1
## 3745       31/01/2006    1
## 3746       31/01/2008    1
## 3747       31/01/2010    1
## 3748       31/03/1996    1
## 3749       31/03/1998    1
## 3750       31/03/2004    1
## 3751       31/03/2012    1
## 3752       31/03/2014    1
## 3753       31/05/1997    1
## 3754       31/05/2000    1
## 3755       31/05/2002    1
## 3756       31/05/2008    1
## 3757       31/05/2012    1
## 3758       31/07/1998    1
## 3759       31/07/2004    1
## 3760       31/07/2007    1
## 3761       31/07/2011    1
## 3762       31/07/2012    1
## 3763       31/08/1998    1
## 3764       31/08/2004    1
## 3765       31/08/2010    1
## 3766       31/08/2011    1
## 3767       31/08/2012    1
## 3768       31/10/2006    1
## 3769       31/10/2007    1
## 3770       31/10/2008    1
## 3771       31/10/2012    1
## 3772       31/12/1996    1
## 3773       31/12/1997    1
## 3774       31/12/2001    1
## 3775       31/12/2004    1
## 3776       31/12/2010    1
## 3777       31/12/2012    1
count(dfmerge, AverageWeeklyWage, sort=TRUE)
##      AverageWeeklyWage    n
## 1                 NULL 8814
## 2                    1  567
## 3                   40  129
## 4                  300   97
## 5                   30   95
## 6                  500   66
## 7                  100   40
## 8                  600   39
## 9                  478   32
## 10                 350   31
## 11                 400   27
## 12                  60   26
## 13                  48   23
## 14                0.23   22
## 15                 484   16
## 16                 460   15
## 17                 900   14
## 18                 800   13
## 19                 450   12
## 20                 360   11
## 21                 480   11
## 22              616.71   11
## 23               478.1   10
## 24                 200    9
## 25                 446    9
## 26                 320    8
## 27               456.8    7
## 28              456.94    7
## 29                 640    7
## 30                 0.1    6
## 31                   2    6
## 32                 270    6
## 33                 284    6
## 34                 452    6
## 35                 490    6
## 36                 508    6
## 37                 548    6
## 38                 608    6
## 39                 650    6
## 40                1000    5
## 41                1083    5
## 42                 220    5
## 43                 280    5
## 44                  45    5
## 45                 462    5
## 46                 535    5
## 47                 538    5
## 48                 560    5
## 49                 648    5
## 50                 654    5
## 51                 700    5
## 52                 712    5
## 53                 180    4
## 54              310.17    4
## 55                 375    4
## 56                 424    4
## 57                 440    4
## 58              440.26    4
## 59                 455    4
## 60                 469    4
## 61                 470    4
## 62                 472    4
## 63                 501    4
## 64               524.6    4
## 65                 525    4
## 66                 530    4
## 67                 539    4
## 68                 542    4
## 69                 543    4
## 70                 549    4
## 71                 550    4
## 72                 556    4
## 73                 557    4
## 74              576.92    4
## 75                 602    4
## 76                 606    4
## 77                 607    4
## 78                 620    4
## 79                 630    4
## 80                 631    4
## 81                 652    4
## 82              653.85    4
## 83                 720    4
## 84                 755    4
## 85                 769    4
## 86                 822    4
## 87                 826    4
## 88                 837    4
## 89                 850    4
## 90              918.46    4
## 91                 962    4
## 92                1058    3
## 93                1063    3
## 94             1083.27    3
## 95                1225    3
## 96                 126    3
## 97                 140    3
## 98                 195    3
## 99                 240    3
## 100                250    3
## 101              285.6    3
## 102             304.29    3
## 103              315.4    3
## 104             322.59    3
## 105              338.4    3
## 106                340    3
## 107                 35    3
## 108                 36    3
## 109                364    3
## 110              413.6    3
## 111             414.13    3
## 112             416.44    3
## 113                420    3
## 114             424.37    3
## 115                436    3
## 116                442    3
## 117              450.8    3
## 118                453    3
## 119                454    3
## 120              454.8    3
## 121                464    3
## 122                466    3
## 123                483    3
## 124                486    3
## 125                496    3
## 126                506    3
## 127                516    3
## 128                520    3
## 129                526    3
## 130                532    3
## 131             536.89    3
## 132                540    3
## 133                577    3
## 134             580.57    3
## 135                592    3
## 136                615    3
## 137                618    3
## 138                638    3
## 139                656    3
## 140                678    3
## 141                680    3
## 142                694    3
## 143                750    3
## 144                792    3
## 145             811.81    3
## 146                816    3
## 147             836.33    3
## 148                884    3
## 149             906.44    3
## 150                915    3
## 151                944    3
## 152                 10    2
## 153            1013.71    2
## 154               1017    2
## 155               1032    2
## 156             1034.4    2
## 157               1046    2
## 158               1066    2
## 159                115    2
## 160               1161    2
## 161               1180    2
## 162               1200    2
## 163               1213    2
## 164               1239    2
## 165               1260    2
## 166               1326    2
## 167               1350    2
## 168               1414    2
## 169                160    2
## 170                 20    2
## 171                234    2
## 172                256    2
## 173                260    2
## 174                277    2
## 175              293.6    2
## 176             304.23    2
## 177              307.6    2
## 178                315    2
## 179              319.6    2
## 180              321.6    2
## 181                323    2
## 182             328.04    2
## 183                336    2
## 184              344.8    2
## 185             353.81    2
## 186             373.43    2
## 187              377.6    2
## 188             381.55    2
## 189                382    2
## 190              386.8    2
## 191              387.6    2
## 192             391.08    2
## 193             392.19    2
## 194                394    2
## 195             394.98    2
## 196                408    2
## 197              414.5    2
## 198             414.52    2
## 199              422.8    2
## 200                425    2
## 201                428    2
## 202             428.85    2
## 203             430.38    2
## 204                435    2
## 205             435.12    2
## 206             439.37    2
## 207              443.6    2
## 208             443.83    2
## 209              444.4    2
## 210              444.8    2
## 211                449    2
## 212             449.65    2
## 213                451    2
## 214              453.6    2
## 215                457    2
## 216                458    2
## 217              458.4    2
## 218              461.6    2
## 219             461.67    2
## 220              473.6    2
## 221                475    2
## 222                482    2
## 223                488    2
## 224             489.31    2
## 225              490.4    2
## 226              490.8    2
## 227             490.96    2
## 228                491    2
## 229                492    2
## 230                498    2
## 231                499    2
## 232                  5    2
## 233                504    2
## 234              504.8    2
## 235                505    2
## 236                509    2
## 237             509.98    2
## 238                511    2
## 239                517    2
## 240                518    2
## 241                519    2
## 242                522    2
## 243              523.2    2
## 244                529    2
## 245                541    2
## 246                544    2
## 247                545    2
## 248             545.42    2
## 249             545.58    2
## 250              546.8    2
## 251              547.6    2
## 252                551    2
## 253                553    2
## 254                554    2
## 255                558    2
## 256                562    2
## 257              562.8    2
## 258                563    2
## 259              565.5    2
## 260                566    2
## 261              566.6    2
## 262              568.4    2
## 263                575    2
## 264              576.4    2
## 265              576.8    2
## 266                579    2
## 267                583    2
## 268                588    2
## 269                591    2
## 270                593    2
## 271              593.2    2
## 272                594    2
## 273                596    2
## 274              597.6    2
## 275                598    2
## 276                604    2
## 277              604.8    2
## 278                610    2
## 279                614    2
## 280              622.8    2
## 281                624    2
## 282                625    2
## 283                627    2
## 284                634    2
## 285                642    2
## 286                644    2
## 287                645    2
## 288                646    2
## 289                651    2
## 290                653    2
## 291             660.32    2
## 292                666    2
## 293                668    2
## 294                669    2
## 295             670.42    2
## 296                675    2
## 297                683    2
## 298              684.4    2
## 299                687    2
## 300             689.21    2
## 301                692    2
## 302                696    2
## 303                699    2
## 304                703    2
## 305                710    2
## 306                714    2
## 307                715    2
## 308                718    2
## 309                721    2
## 310                722    2
## 311                723    2
## 312                727    2
## 313                729    2
## 314                731    2
## 315                740    2
## 316                742    2
## 317                743    2
## 318                745    2
## 319                747    2
## 320                749    2
## 321                756    2
## 322                776    2
## 323              781.2    2
## 324                785    2
## 325                798    2
## 326                799    2
## 327                808    2
## 328                815    2
## 329              818.4    2
## 330                828    2
## 331             828.04    2
## 332                836    2
## 333                838    2
## 334                839    2
## 335                840    2
## 336                846    2
## 337                849    2
## 338                860    2
## 339                865    2
## 340                871    2
## 341                874    2
## 342                880    2
## 343                 90    2
## 344                918    2
## 345             941.42    2
## 346                950    2
## 347             958.28    2
## 348                974    2
## 349               1002    1
## 350            1003.97    1
## 351            1006.32    1
## 352            1007.19    1
## 353             101.92    1
## 354             1010.2    1
## 355               1012    1
## 356               1014    1
## 357            1014.71    1
## 358            1016.68    1
## 359            1017.69    1
## 360            1019.23    1
## 361               1020    1
## 362               1022    1
## 363               1023    1
## 364               1025    1
## 365             1027.6    1
## 366            1029.48    1
## 367             1031.6    1
## 368            1032.79    1
## 369             1036.6    1
## 370            1039.15    1
## 371               1040    1
## 372               1041    1
## 373            1042.78    1
## 374             1042.8    1
## 375            1046.08    1
## 376            1046.54    1
## 377             1046.8    1
## 378               1048    1
## 379            1049.85    1
## 380                105    1
## 381            1050.89    1
## 382               1051    1
## 383               1054    1
## 384            1054.27    1
## 385            1054.28    1
## 386             1054.4    1
## 387               1056    1
## 388               1059    1
## 389                106    1
## 390            1062.32    1
## 391            1064.63    1
## 392               1065    1
## 393            1065.61    1
## 394            1066.42    1
## 395            1066.46    1
## 396            1067.85    1
## 397             1068.4    1
## 398            1068.46    1
## 399                107    1
## 400               1070    1
## 401               1071    1
## 402               1073    1
## 403            1073.23    1
## 404            1073.58    1
## 405               1082    1
## 406             1082.8    1
## 407             1083.6    1
## 408            1083.69    1
## 409            1087.46    1
## 410            1090.11    1
## 411            1091.76    1
## 412            1093.27    1
## 413            1094.44    1
## 414            1095.48    1
## 415               1096    1
## 416             1096.8    1
## 417               1097    1
## 418                110    1
## 419               1100    1
## 420               1102    1
## 421             1103.3    1
## 422            1105.15    1
## 423            1105.77    1
## 424               1106    1
## 425            1106.23    1
## 426            1107.71    1
## 427               1108    1
## 428               1109    1
## 429            1110.57    1
## 430            1110.78    1
## 431               1112    1
## 432            1113.46    1
## 433               1115    1
## 434               1116    1
## 435            1116.97    1
## 436             1120.4    1
## 437               1128    1
## 438            1129.89    1
## 439            1130.05    1
## 440            1132.22    1
## 441             1132.4    1
## 442            1134.08    1
## 443            1134.59    1
## 444            1135.13    1
## 445            1138.67    1
## 446               1139    1
## 447             1139.6    1
## 448               1140    1
## 449               1141    1
## 450            1141.15    1
## 451             1144.4    1
## 452            1149.81    1
## 453               1150    1
## 454               1152    1
## 455            1153.28    1
## 456            1159.52    1
## 457             1161.1    1
## 458            1161.44    1
## 459            1166.54    1
## 460               1170    1
## 461               1171    1
## 462            1171.33    1
## 463               1173    1
## 464               1174    1
## 465            1174.42    1
## 466               1176    1
## 467            1180.39    1
## 468               1182    1
## 469               1183    1
## 470            1183.28    1
## 471            1185.95    1
## 472               1188    1
## 473               1193    1
## 474               1195    1
## 475            1198.06    1
## 476                120    1
## 477             1201.6    1
## 478               1202    1
## 479               1203    1
## 480             1207.2    1
## 481             121.87    1
## 482               1210    1
## 483             1211.6    1
## 484             1212.4    1
## 485             1219.6    1
## 486               1220    1
## 487            1220.16    1
## 488            1221.64    1
## 489            1222.13    1
## 490            1222.19    1
## 491            1233.32    1
## 492               1234    1
## 493            1238.75    1
## 494            1239.69    1
## 495            1240.26    1
## 496            1241.53    1
## 497               1242    1
## 498               1244    1
## 499            1245.61    1
## 500            1246.83    1
## 501             1249.6    1
## 502                125    1
## 503               1252    1
## 504               1262    1
## 505               1267    1
## 506               1272    1
## 507             1273.2    1
## 508               1275    1
## 509            1284.59    1
## 510               1286    1
## 511               1288    1
## 512                129    1
## 513                130    1
## 514               1300    1
## 515            1306.13    1
## 516             1307.6    1
## 517             131160    1
## 518               1312    1
## 519               1314    1
## 520               1316    1
## 521            1318.55    1
## 522               1322    1
## 523            1322.33    1
## 524            1322.65    1
## 525             1323.2    1
## 526             133.45    1
## 527            1334.08    1
## 528             1341.6    1
## 529               1347    1
## 530               1352    1
## 531                136    1
## 532               1363    1
## 533               1367    1
## 534               1370    1
## 535            1371.09    1
## 536               1372    1
## 537             1373.2    1
## 538            1378.33    1
## 539            1383.69    1
## 540            1384.99    1
## 541               1385    1
## 542            1387.15    1
## 543               1400    1
## 544             1401.6    1
## 545              141.8    1
## 546               1412    1
## 547             1415.4    1
## 548               1419    1
## 549             1419.3    1
## 550               1430    1
## 551                145    1
## 552              146.4    1
## 553            1461.51    1
## 554               1472    1
## 555                148    1
## 556            1481.93    1
## 557            1482.36    1
## 558               1494    1
## 559            1498.56    1
## 560                150    1
## 561               1500    1
## 562            1502.77    1
## 563               1515    1
## 564                152    1
## 565            1527.99    1
## 566               1535    1
## 567            1551.25    1
## 568            1564.64    1
## 569             1575.6    1
## 570            1578.48    1
## 571            1599.89    1
## 572              16.84    1
## 573               1601    1
## 574            1615.38    1
## 575                162    1
## 576               1633    1
## 577              164.8    1
## 578               1651    1
## 579            1671.12    1
## 580            1679.65    1
## 581                168    1
## 582            1695.92    1
## 583             170.14    1
## 584               1712    1
## 585            1721.43    1
## 586             1727.1    1
## 587             173.07    1
## 588               1731    1
## 589              174.5    1
## 590                175    1
## 591            1759.15    1
## 592             1764.4    1
## 593                177    1
## 594               1808    1
## 595             181.76    1
## 596               1875    1
## 597               1879    1
## 598             189.98    1
## 599             190.38    1
## 600               1910    1
## 601             193.07    1
## 602            1937.53    1
## 603              194.4    1
## 604               1961    1
## 605            1974.91    1
## 606             199.26    1
## 607               1998    1
## 608               2.14    1
## 609                2.3    1
## 610               2021    1
## 611            2024000    1
## 612               2027    1
## 613             204.65    1
## 614                206    1
## 615            2069.25    1
## 616                 21    1
## 617               2120    1
## 618            2146.09    1
## 619              215.6    1
## 620               2151    1
## 621                216    1
## 622             216.78    1
## 623                218    1
## 624              218.4    1
## 625               2201    1
## 626             224.61    1
## 627              228.3    1
## 628               2285    1
## 629              229.5    1
## 630             230.77    1
## 631             236.11    1
## 632            2361.74    1
## 633                 24    1
## 634              24.07    1
## 635            2406.04    1
## 636              241.9    1
## 637              243.6    1
## 638                245    1
## 639             246.27    1
## 640             247.49    1
## 641               2500    1
## 642                252    1
## 643             253.32    1
## 644              253.8    1
## 645                255    1
## 646              255.2    1
## 647                257    1
## 648                263    1
## 649             267.46    1
## 650             268.12    1
## 651              268.4    1
## 652                269    1
## 653              274.5    1
## 654              275.2    1
## 655             279.79    1
## 656             2804.4    1
## 657             282.45    1
## 658             282.64    1
## 659               2846    1
## 660              285.2    1
## 661             285.89    1
## 662             287.76    1
## 663             289.48    1
## 664              290.8    1
## 665              291.2    1
## 666             291.46    1
## 667            2938.78    1
## 668              294.4    1
## 669              294.8    1
## 670                296    1
## 671              296.8    1
## 672             296.81    1
## 673             298.82    1
## 674            2997.75    1
## 675                  3    1
## 676               3.36    1
## 677              301.2    1
## 678             301.56    1
## 679             302.38    1
## 680             302.64    1
## 681              302.8    1
## 682             304.22    1
## 683              304.4    1
## 684             304.56    1
## 685             306.06    1
## 686             307.69    1
## 687             307.71    1
## 688             308.65    1
## 689              308.8    1
## 690             309.38    1
## 691                310    1
## 692             310.14    1
## 693              310.8    1
## 694              311.2    1
## 695              311.6    1
## 696              312.4    1
## 697             313.32    1
## 698             314.09    1
## 699             314.71    1
## 700             315.81    1
## 701             316.12    1
## 702                317    1
## 703             317.33    1
## 704              317.4    1
## 705             318.06    1
## 706             318.17    1
## 707                 32    1
## 708             320.19    1
## 709             321.05    1
## 710              321.2    1
## 711             321.35    1
## 712             321.38    1
## 713             321.54    1
## 714             321.62    1
## 715             321.71    1
## 716             321.77    1
## 717             322.54    1
## 718              322.6    1
## 719              322.8    1
## 720             322.81    1
## 721             323.01    1
## 722              323.2    1
## 723             323.27    1
## 724              323.6    1
## 725                324    1
## 726             325.58    1
## 727              325.6    1
## 728              326.1    1
## 729                328    1
## 730              328.1    1
## 731            3281.18    1
## 732             329.11    1
## 733             329.19    1
## 734              329.2    1
## 735             329.93    1
## 736                330    1
## 737             330.03    1
## 738             330.31    1
## 739             330.54    1
## 740              331.2    1
## 741             331.68    1
## 742             332.63    1
## 743            3323.04    1
## 744             333.52    1
## 745              334.4    1
## 746             334.77    1
## 747              334.8    1
## 748              336.6    1
## 749             336.98    1
## 750              337.6    1
## 751             337.65    1
## 752              339.6    1
## 753             340.34    1
## 754             340.35    1
## 755                341    1
## 756              341.9    1
## 757             342.03    1
## 758              342.4    1
## 759              344.1    1
## 760             345.16    1
## 761             345.17    1
## 762                346    1
## 763             346.72    1
## 764             346.87    1
## 765             347.35    1
## 766              348.4    1
## 767             348.71    1
## 768              348.8    1
## 769             349.09    1
## 770             350.67    1
## 771             350.92    1
## 772              351.2    1
## 773             351.22    1
## 774             352.15    1
## 775              352.3    1
## 776             352.51    1
## 777             353.07    1
## 778              353.6    1
## 779             353.87    1
## 780                354    1
## 781             354.33    1
## 782             355.58    1
## 783             355.94    1
## 784               3552    1
## 785             356.69    1
## 786                357    1
## 787             357.31    1
## 788             357.32    1
## 789             357.84    1
## 790              359.2    1
## 791             359.98    1
## 792             360.66    1
## 793              360.8    1
## 794             361.55    1
## 795             361.83    1
## 796                362    1
## 797             362.14    1
## 798             362.45    1
## 799             362.86    1
## 800             362.92    1
## 801             363.87    1
## 802             364.12    1
## 803             364.39    1
## 804              364.4    1
## 805             364.52    1
## 806                365    1
## 807             365.16    1
## 808             366.11    1
## 809             366.55    1
## 810             366.87    1
## 811             366.92    1
## 812              367.5    1
## 813                368    1
## 814             368.16    1
## 815             368.48    1
## 816             368.57    1
## 817             369.07    1
## 818              369.3    1
## 819             369.42    1
## 820                 37    1
## 821               37.5    1
## 822             370.49    1
## 823             370.68    1
## 824              371.2    1
## 825             371.38    1
## 826             371.53    1
## 827                372    1
## 828             372.06    1
## 829              372.2    1
## 830              372.8    1
## 831              372.9    1
## 832             373.11    1
## 833             373.42    1
## 834             374.96    1
## 835             375.28    1
## 836              375.8    1
## 837             376.17    1
## 838             377.27    1
## 839             377.75    1
## 840                378    1
## 841             378.15    1
## 842             378.24    1
## 843             379.09    1
## 844              379.6    1
## 845             379.71    1
## 846             379.86    1
## 847                380    1
## 848             380.88    1
## 849             381.47    1
## 850             381.58    1
## 851              381.6    1
## 852             382.56    1
## 853             382.78    1
## 854              383.2    1
## 855             383.55    1
## 856                384    1
## 857              384.1    1
## 858              384.3    1
## 859              384.8    1
## 860             384.92    1
## 861                385    1
## 862             385.15    1
## 863             385.66    1
## 864             385.75    1
## 865             386.76    1
## 866              387.2    1
## 867             387.22    1
## 868             387.23    1
## 869             387.98    1
## 870             387.99    1
## 871                388    1
## 872              388.1    1
## 873              388.4    1
## 874             389.03    1
## 875             389.19    1
## 876             389.33    1
## 877             389.59    1
## 878              389.6    1
## 879             390.84    1
## 880             390.92    1
## 881             391.11    1
## 882                392    1
## 883             392.17    1
## 884             392.25    1
## 885             392.42    1
## 886             392.62    1
## 887             393.37    1
## 888             393.75    1
## 889             393.92    1
## 890              394.2    1
## 891             394.44    1
## 892             394.75    1
## 893             394.96    1
## 894                395    1
## 895             395.01    1
## 896              396.4    1
## 897             396.83    1
## 898             397.28    1
## 899              397.6    1
## 900             397.69    1
## 901             397.92    1
## 902            3970.47    1
## 903                398    1
## 904             398.81    1
## 905             398.92    1
## 906                399    1
## 907              399.6    1
## 908             399.77    1
## 909             400.12    1
## 910              400.4    1
## 911             400.54    1
## 912             400.79    1
## 913              400.8    1
## 914             401.65    1
## 915             402.02    1
## 916             402.33    1
## 917             402.77    1
## 918              402.9    1
## 919             403.62    1
## 920                404    1
## 921             404.36    1
## 922             404.58    1
## 923                405    1
## 924             405.75    1
## 925              406.1    1
## 926             406.21    1
## 927             406.31    1
## 928                407    1
## 929             407.22    1
## 930             407.33    1
## 931              408.4    1
## 932             409.06    1
## 933             409.08    1
## 934              409.2    1
## 935             409.39    1
## 936             409.82    1
## 937             409.96    1
## 938              41.42    1
## 939             410.07    1
## 940             410.37    1
## 941              411.4    1
## 942                412    1
## 943             412.29    1
## 944             412.57    1
## 945             412.82    1
## 946             412.97    1
## 947             413.04    1
## 948             413.35    1
## 949                414    1
## 950             414.27    1
## 951             414.71    1
## 952              414.8    1
## 953             415.19    1
## 954             415.54    1
## 955              416.4    1
## 956             416.42    1
## 957             416.46    1
## 958             416.76    1
## 959             416.77    1
## 960              416.8    1
## 961             416.93    1
## 962             417.12    1
## 963              417.6    1
## 964              418.4    1
## 965             420.92    1
## 966              422.4    1
## 967                423    1
## 968             423.05    1
## 969              424.4    1
## 970             424.63    1
## 971             425.42    1
## 972             425.63    1
## 973             426.77    1
## 974             426.82    1
## 975             426.83    1
## 976             427.19    1
## 977             427.34    1
## 978             427.56    1
## 979             428.17    1
## 980             428.21    1
## 981             428.84    1
## 982             428.89    1
## 983                429    1
## 984             429.36    1
## 985             430.09    1
## 986              430.4    1
## 987             430.71    1
## 988              430.8    1
## 989              43000    1
## 990             431.07    1
## 991             431.09    1
## 992             431.14    1
## 993              431.6    1
## 994                432    1
## 995             432.13    1
## 996             432.36    1
## 997             432.42    1
## 998              432.6    1
## 999             432.94    1
## 1000            433.82    1
## 1001               434    1
## 1002            434.49    1
## 1003            435.19    1
## 1004            435.39    1
## 1005            435.58    1
## 1006            435.97    1
## 1007            436.06    1
## 1008            436.72    1
## 1009             436.8    1
## 1010            436.98    1
## 1011            437.17    1
## 1012            437.54    1
## 1013            437.67    1
## 1014            437.73    1
## 1015               438    1
## 1016            438.06    1
## 1017            438.32    1
## 1018             438.4    1
## 1019            438.49    1
## 1020             438.8    1
## 1021            438.88    1
## 1022            439.31    1
## 1023            439.58    1
## 1024            439.96    1
## 1025             44.98    1
## 1026            440.15    1
## 1027             440.4    1
## 1028            440.85    1
## 1029            441.13    1
## 1030             441.2    1
## 1031            441.34    1
## 1032            441.72    1
## 1033            442.28    1
## 1034            442.31    1
## 1035            442.41    1
## 1036            442.64    1
## 1037               443    1
## 1038            443.85    1
## 1039               444    1
## 1040            444.01    1
## 1041            444.71    1
## 1042            444.76    1
## 1043            445.17    1
## 1044            445.19    1
## 1045             445.6    1
## 1046            445.75    1
## 1047               447    1
## 1048            447.12    1
## 1049            447.16    1
## 1050            447.54    1
## 1051            447.98    1
## 1052               448    1
## 1053            448.17    1
## 1054            448.19    1
## 1055             448.4    1
## 1056            448.42    1
## 1057            448.86    1
## 1058            449.57    1
## 1059            450.17    1
## 1060            450.69    1
## 1061            450.85    1
## 1062            451.54    1
## 1063            451.97    1
## 1064            452.11    1
## 1065            452.29    1
## 1066            452.33    1
## 1067            452.39    1
## 1068            452.53    1
## 1069             452.8    1
## 1070            452.84    1
## 1071            453.41    1
## 1072            453.46    1
## 1073            453.82    1
## 1074            454.38    1
## 1075             454.6    1
## 1076            454.81    1
## 1077            455.26    1
## 1078            456.36    1
## 1079            456.52    1
## 1080            456.84    1
## 1081             457.6    1
## 1082            457.61    1
## 1083            457.87    1
## 1084             457.9    1
## 1085            458.27    1
## 1086               459    1
## 1087            459.26    1
## 1088             459.5    1
## 1089             46.94    1
## 1090            460.11    1
## 1091            460.21    1
## 1092            460.38    1
## 1093             460.4    1
## 1094            460.46    1
## 1095            460.63    1
## 1096            460.77    1
## 1097            460.91    1
## 1098            461.78    1
## 1099             462.4    1
## 1100             462.5    1
## 1101            462.75    1
## 1102             462.8    1
## 1103            462.93    1
## 1104               463    1
## 1105            463.35    1
## 1106             463.6    1
## 1107            463.63    1
## 1108            463.69    1
## 1109            464.02    1
## 1110             464.4    1
## 1111            464.96    1
## 1112            465.38    1
## 1113            465.56    1
## 1114            465.58    1
## 1115            467.01    1
## 1116            467.15    1
## 1117            467.23    1
## 1118             467.6    1
## 1119             467.8    1
## 1120            468.03    1
## 1121            468.13    1
## 1122            468.53    1
## 1123            468.99    1
## 1124            469.08    1
## 1125            469.11    1
## 1126            469.29    1
## 1127            469.77    1
## 1128            470.05    1
## 1129            470.42    1
## 1130            470.73    1
## 1131               471    1
## 1132            471.15    1
## 1133             471.2    1
## 1134            471.48    1
## 1135             471.5    1
## 1136            471.89    1
## 1137            472.25    1
## 1138             472.4    1
## 1139            472.57    1
## 1140            472.67    1
## 1141            472.73    1
## 1142            472.79    1
## 1143             472.8    1
## 1144               473    1
## 1145            473.38    1
## 1146            474.69    1
## 1147            474.71    1
## 1148            475.15    1
## 1149            475.44    1
## 1150            475.61    1
## 1151            475.72    1
## 1152               476    1
## 1153            476.49    1
## 1154             476.6    1
## 1155            476.63    1
## 1156            477.05    1
## 1157            477.12    1
## 1158            477.13    1
## 1159             477.2    1
## 1160            477.85    1
## 1161            477.96    1
## 1162            478.05    1
## 1163            478.07    1
## 1164             478.2    1
## 1165            478.27    1
## 1166             478.4    1
## 1167            478.52    1
## 1168             478.8    1
## 1169          47809.62    1
## 1170            479.33    1
## 1171            479.63    1
## 1172            479.97    1
## 1173            480.07    1
## 1174            480.96    1
## 1175               481    1
## 1176             481.2    1
## 1177            481.46    1
## 1178            482.02    1
## 1179            482.57    1
## 1180            482.73    1
## 1181            482.81    1
## 1182            483.31    1
## 1183            483.32    1
## 1184            483.83    1
## 1185            484.28    1
## 1186             484.4    1
## 1187            484.61    1
## 1188             484.8    1
## 1189             485.2    1
## 1190            485.47    1
## 1191            486.23    1
## 1192             486.4    1
## 1193            486.52    1
## 1194            486.69    1
## 1195            487.21    1
## 1196             487.6    1
## 1197            487.62    1
## 1198            487.63    1
## 1199            488.57    1
## 1200            488.73    1
## 1201            488.79    1
## 1202             488.9    1
## 1203               489    1
## 1204             489.6    1
## 1205            489.63    1
## 1206            490.28    1
## 1207            490.33    1
## 1208            490.63    1
## 1209            491.37    1
## 1210            491.58    1
## 1211            492.14    1
## 1212            492.25    1
## 1213            492.42    1
## 1214            492.77    1
## 1215            492.88    1
## 1216            492.92    1
## 1217               493    1
## 1218            493.54    1
## 1219            494.13    1
## 1220               495    1
## 1221             495.2    1
## 1222            495.26    1
## 1223            495.42    1
## 1224            495.52    1
## 1225            495.67    1
## 1226            495.73    1
## 1227            496.23    1
## 1228             496.3    1
## 1229            496.46    1
## 1230            496.62    1
## 1231               497    1
## 1232            497.02    1
## 1233             497.2    1
## 1234            497.25    1
## 1235            497.31    1
## 1236             497.4    1
## 1237            497.68    1
## 1238            498.06    1
## 1239             498.4    1
## 1240            499.15    1
## 1241            499.87    1
## 1242                50    1
## 1243             50.26    1
## 1244            500.03    1
## 1245            500.34    1
## 1246             500.4    1
## 1247             500.6    1
## 1248            500.75    1
## 1249            500.96    1
## 1250             501.2    1
## 1251            501.37    1
## 1252            501.53    1
## 1253            501.69    1
## 1254            502.25    1
## 1255             502.8    1
## 1256            502.83    1
## 1257            502.96    1
## 1258            503.02    1
## 1259            503.85    1
## 1260            504.13    1
## 1261            504.81    1
## 1262            505.01    1
## 1263            505.05    1
## 1264            505.47    1
## 1265             505.6    1
## 1266            506.03    1
## 1267             506.1    1
## 1268            506.35    1
## 1269            506.37    1
## 1270             506.4    1
## 1271            506.42    1
## 1272            506.53    1
## 1273            506.57    1
## 1274            506.77    1
## 1275            506.85    1
## 1276               507    1
## 1277             507.2    1
## 1278            508.35    1
## 1279             508.4    1
## 1280            508.48    1
## 1281            508.58    1
## 1282             508.9    1
## 1283             509.2    1
## 1284            509.34    1
## 1285            509.97    1
## 1286               510    1
## 1287            510.24    1
## 1288             511.2    1
## 1289            511.23    1
## 1290            511.57    1
## 1291             511.6    1
## 1292            511.86    1
## 1293               512    1
## 1294            512.02    1
## 1295            512.07    1
## 1296            512.75    1
## 1297            513.29    1
## 1298            513.54    1
## 1299            513.64    1
## 1300            513.85    1
## 1301            513.95    1
## 1302               514    1
## 1303            514.06    1
## 1304            514.29    1
## 1305             514.8    1
## 1306               515    1
## 1307             515.2    1
## 1308            515.35    1
## 1309            515.72    1
## 1310            515.98    1
## 1311            516.45    1
## 1312            516.73    1
## 1313             516.8    1
## 1314             517.2    1
## 1315             517.6    1
## 1316            517.77    1
## 1317            518.56    1
## 1318             518.6    1
## 1319             518.8    1
## 1320            519.23    1
## 1321            519.31    1
## 1322             519.6    1
## 1323            519.79    1
## 1324             519.8    1
## 1325             520.4    1
## 1326               521    1
## 1327             521.2    1
## 1328            521.83    1
## 1329             522.4    1
## 1330             522.8    1
## 1331            523.41    1
## 1332            523.79    1
## 1333               524    1
## 1334            524.06    1
## 1335            525.16    1
## 1336             525.6    1
## 1337            525.85    1
## 1338            526.06    1
## 1339            526.64    1
## 1340            526.92    1
## 1341            527.73    1
## 1342            527.76    1
## 1343             527.9    1
## 1344            527.96    1
## 1345               528    1
## 1346            528.18    1
## 1347             528.4    1
## 1348             528.9    1
## 1349            528.98    1
## 1350             529.2    1
## 1351             529.6    1
## 1352            529.96    1
## 1353             53.21    1
## 1354             530.4    1
## 1355            530.48    1
## 1356             530.5    1
## 1357            530.71    1
## 1358             530.8    1
## 1359               531    1
## 1360            531.32    1
## 1361             531.5    1
## 1362            531.93    1
## 1363            532.15    1
## 1364             532.6    1
## 1365            532.68    1
## 1366             532.8    1
## 1367            533.03    1
## 1368             533.2    1
## 1369             533.6    1
## 1370            533.68    1
## 1371               534    1
## 1372            534.22    1
## 1373             534.4    1
## 1374            534.52    1
## 1375            534.62    1
## 1376             534.7    1
## 1377            534.73    1
## 1378            534.75    1
## 1379             534.8    1
## 1380            535.51    1
## 1381             535.6    1
## 1382            535.84    1
## 1383               536    1
## 1384            537.36    1
## 1385            537.39    1
## 1386            537.92    1
## 1387            537.96    1
## 1388            538.05    1
## 1389            538.38    1
## 1390             538.4    1
## 1391            538.48    1
## 1392            539.41    1
## 1393            539.73    1
## 1394             539.8    1
## 1395            540.67    1
## 1396            541.09    1
## 1397            541.14    1
## 1398            541.46    1
## 1399             542.8    1
## 1400            542.87    1
## 1401            543.32    1
## 1402            543.69    1
## 1403            543.75    1
## 1404            544.04    1
## 1405             544.6    1
## 1406            545.57    1
## 1407            545.71    1
## 1408               546    1
## 1409            546.53    1
## 1410            546.88    1
## 1411            546.98    1
## 1412            547.66    1
## 1413            548.38    1
## 1414            548.43    1
## 1415            548.65    1
## 1416             548.8    1
## 1417            548.85    1
## 1418            549.11    1
## 1419            549.46    1
## 1420            549.62    1
## 1421             55.55    1
## 1422             550.2    1
## 1423             550.8    1
## 1424            551.44    1
## 1425            551.84    1
## 1426               552    1
## 1427             552.3    1
## 1428            553.28    1
## 1429            553.72    1
## 1430            553.73    1
## 1431            554.44    1
## 1432            554.57    1
## 1433            554.61    1
## 1434            554.73    1
## 1435             554.8    1
## 1436             554.9    1
## 1437            554.91    1
## 1438            554.94    1
## 1439               555    1
## 1440            555.31    1
## 1441            556.16    1
## 1442            556.27    1
## 1443             556.4    1
## 1444            556.79    1
## 1445            557.46    1
## 1446            558.28    1
## 1447            558.57    1
## 1448               559    1
## 1449            559.02    1
## 1450             559.6    1
## 1451            559.64    1
## 1452            559.71    1
## 1453            559.92    1
## 1454            560.19    1
## 1455            561.65    1
## 1456            561.67    1
## 1457             56140    1
## 1458            562.64    1
## 1459             563.2    1
## 1460            563.58    1
## 1461            563.86    1
## 1462             563.9    1
## 1463               564    1
## 1464            564.19    1
## 1465            564.27    1
## 1466            564.37    1
## 1467            565.79    1
## 1468            566.15    1
## 1469            566.35    1
## 1470            566.72    1
## 1471            566.73    1
## 1472             566.8    1
## 1473            566.81    1
## 1474            566.99    1
## 1475            567.23    1
## 1476             567.3    1
## 1477               568    1
## 1478            568.17    1
## 1479            568.75    1
## 1480             568.8    1
## 1481            568.94    1
## 1482            569.45    1
## 1483            569.93    1
## 1484               570    1
## 1485            570.37    1
## 1486             570.5    1
## 1487            570.65    1
## 1488            570.77    1
## 1489               571    1
## 1490             571.3    1
## 1491            571.46    1
## 1492            572.45    1
## 1493             572.5    1
## 1494               573    1
## 1495            573.47    1
## 1496            573.65    1
## 1497               574    1
## 1498            574.19    1
## 1499            574.37    1
## 1500            574.38    1
## 1501            575.11    1
## 1502            575.25    1
## 1503            575.35    1
## 1504            575.42    1
## 1505            575.87    1
## 1506            576.82    1
## 1507             577.2    1
## 1508            577.37    1
## 1509             577.5    1
## 1510            577.72    1
## 1511            578.42    1
## 1512            579.55    1
## 1513            579.96    1
## 1514               581    1
## 1515             581.2    1
## 1516            581.84    1
## 1517            582.03    1
## 1518            582.13    1
## 1519            582.24    1
## 1520            583.17    1
## 1521             583.2    1
## 1522             583.6    1
## 1523            583.65    1
## 1524            583.68    1
## 1525            583.77    1
## 1526            584.36    1
## 1527             584.4    1
## 1528             584.8    1
## 1529               585    1
## 1530             585.2    1
## 1531            585.23    1
## 1532             585.3    1
## 1533             585.6    1
## 1534               586    1
## 1535            587.01    1
## 1536             587.2    1
## 1537            587.23    1
## 1538            587.67    1
## 1539            587.85    1
## 1540            588.29    1
## 1541             588.3    1
## 1542             588.6    1
## 1543             589.2    1
## 1544            589.32    1
## 1545             59.82    1
## 1546               590    1
## 1547            590.23    1
## 1548            590.76    1
## 1549            590.81    1
## 1550            591.79    1
## 1551            591.84    1
## 1552            592.82    1
## 1553             593.6    1
## 1554            593.69    1
## 1555            593.76    1
## 1556            593.93    1
## 1557            594.71    1
## 1558               595    1
## 1559             595.6    1
## 1560            595.98    1
## 1561            596.05    1
## 1562            596.44    1
## 1563            596.81    1
## 1564            597.16    1
## 1565            598.39    1
## 1566            598.46    1
## 1567             598.5    1
## 1568            598.55    1
## 1569            599.48    1
## 1570            599.82    1
## 1571            599.86    1
## 1572            600.69    1
## 1573             600.8    1
## 1574               601    1
## 1575             602.2    1
## 1576             602.3    1
## 1577               603    1
## 1578            603.29    1
## 1579            603.46    1
## 1580            603.88    1
## 1581            604.38    1
## 1582             604.4    1
## 1583             604.5    1
## 1584            604.73    1
## 1585               605    1
## 1586            606.01    1
## 1587             606.9    1
## 1588            606.92    1
## 1589            607.52    1
## 1590             607.6    1
## 1591            607.73    1
## 1592            607.78    1
## 1593            607.86    1
## 1594            608.55    1
## 1595               609    1
## 1596            609.07    1
## 1597             609.2    1
## 1598            609.45    1
## 1599            609.46    1
## 1600            609.62    1
## 1601            609.76    1
## 1602            609.89    1
## 1603            610.17    1
## 1604            610.45    1
## 1605               611    1
## 1606            611.29    1
## 1607            611.41    1
## 1608            611.52    1
## 1609             611.6    1
## 1610            611.79    1
## 1611               612    1
## 1612            613.04    1
## 1613            613.94    1
## 1614            613.96    1
## 1615            614.46    1
## 1616            614.54    1
## 1617            614.76    1
## 1618             614.8    1
## 1619             615.2    1
## 1620            615.35    1
## 1621            615.38    1
## 1622             615.6    1
## 1623            615.91    1
## 1624            615.95    1
## 1625               616    1
## 1626               617    1
## 1627             617.2    1
## 1628            618.19    1
## 1629            618.85    1
## 1630            619.38    1
## 1631             619.5    1
## 1632             619.8    1
## 1633            620.16    1
## 1634            620.18    1
## 1635             620.4    1
## 1636            620.55    1
## 1637             620.8    1
## 1638            620.94    1
## 1639               621    1
## 1640             621.2    1
## 1641            621.58    1
## 1642            621.69    1
## 1643            621.72    1
## 1644            621.82    1
## 1645            622.23    1
## 1646            623.65    1
## 1647             624.4    1
## 1648            625.44    1
## 1649            626.59    1
## 1650            626.83    1
## 1651             627.2    1
## 1652            627.55    1
## 1653               628    1
## 1654             628.5    1
## 1655               629    1
## 1656            629.09    1
## 1657             629.2    1
## 1658             630.4    1
## 1659            631.95    1
## 1660               632    1
## 1661             632.4    1
## 1662            633.94    1
## 1663            634.69    1
## 1664            634.92    1
## 1665               635    1
## 1666               636    1
## 1667            636.26    1
## 1668            636.38    1
## 1669            636.48    1
## 1670             636.8    1
## 1671            637.76    1
## 1672            638.41    1
## 1673            638.87    1
## 1674            638.99    1
## 1675             639.2    1
## 1676            639.46    1
## 1677            639.92    1
## 1678              64.8    1
## 1679            640.01    1
## 1680             640.2    1
## 1681            640.24    1
## 1682            640.43    1
## 1683            641.43    1
## 1684             641.6    1
## 1685            642.98    1
## 1686            643.29    1
## 1687            643.85    1
## 1688            644.22    1
## 1689            644.81    1
## 1690            644.94    1
## 1691             645.2    1
## 1692            646.69    1
## 1693             646.8    1
## 1694            647.17    1
## 1695            647.27    1
## 1696             647.3    1
## 1697            647.39    1
## 1698            647.54    1
## 1699            648.36    1
## 1700            648.46    1
## 1701            648.98    1
## 1702            649.01    1
## 1703            649.13    1
## 1704             649.2    1
## 1705             650.7    1
## 1706             650.8    1
## 1707            651.03    1
## 1708            651.54    1
## 1709            652.85    1
## 1710             653.4    1
## 1711            653.71    1
## 1712            655.32    1
## 1713             655.5    1
## 1714            655.92    1
## 1715            656.24    1
## 1716            656.36    1
## 1717             656.4    1
## 1718            657.12    1
## 1719            657.23    1
## 1720               658    1
## 1721               659    1
## 1722               660    1
## 1723             660.4    1
## 1724               661    1
## 1725            661.58    1
## 1726               662    1
## 1727             662.2    1
## 1728            662.67    1
## 1729             662.8    1
## 1730            662.96    1
## 1731             663.4    1
## 1732            663.46    1
## 1733            663.69    1
## 1734               664    1
## 1735            664.14    1
## 1736               665    1
## 1737            665.28    1
## 1738            665.56    1
## 1739            666.24    1
## 1740             667.6    1
## 1741            667.83    1
## 1742            667.88    1
## 1743            668.32    1
## 1744            668.77    1
## 1745             669.2    1
## 1746            669.61    1
## 1747            669.75    1
## 1748               670    1
## 1749            670.01    1
## 1750             670.4    1
## 1751               671    1
## 1752             671.2    1
## 1753               672    1
## 1754             672.2    1
## 1755               673    1
## 1756             673.4    1
## 1757               674    1
## 1758             674.6    1
## 1759            674.83    1
## 1760             675.2    1
## 1761             676.8    1
## 1762               677    1
## 1763            677.11    1
## 1764            679.02    1
## 1765             679.6    1
## 1766            679.62    1
## 1767               681    1
## 1768               682    1
## 1769            682.15    1
## 1770            682.45    1
## 1771            683.48    1
## 1772               684    1
## 1773            684.29    1
## 1774             684.8    1
## 1775            684.81    1
## 1776               685    1
## 1777            685.71    1
## 1778               686    1
## 1779             686.7    1
## 1780            687.71    1
## 1781            688.94    1
## 1782               689    1
## 1783             689.2    1
## 1784             690.8    1
## 1785            690.89    1
## 1786               691    1
## 1787            691.28    1
## 1788            691.42    1
## 1789            693.45    1
## 1790            693.48    1
## 1791            693.92    1
## 1792            694.23    1
## 1793               695    1
## 1794            695.38    1
## 1795            696.32    1
## 1796            696.35    1
## 1797            696.72    1
## 1798               697    1
## 1799            697.26    1
## 1800             697.6    1
## 1801            697.68    1
## 1802               698    1
## 1803            698.35    1
## 1804            699.93    1
## 1805                 7    1
## 1806              70.5    1
## 1807             700.7    1
## 1808            701.44    1
## 1809               702    1
## 1810            703.15    1
## 1811            703.23    1
## 1812               704    1
## 1813            704.83    1
## 1814             705.2    1
## 1815            705.33    1
## 1816            705.96    1
## 1817               706    1
## 1818               707    1
## 1819            707.12    1
## 1820            707.84    1
## 1821               708    1
## 1822             708.8    1
## 1823             709.2    1
## 1824             709.4    1
## 1825              71.7    1
## 1826            710.23    1
## 1827             710.5    1
## 1828             711.6    1
## 1829             711.7    1
## 1830            712.46    1
## 1831            713.25    1
## 1832            713.28    1
## 1833             714.4    1
## 1834            715.04    1
## 1835            715.25    1
## 1836            715.96    1
## 1837               717    1
## 1838            717.15    1
## 1839               719    1
## 1840            720.64    1
## 1841             720.8    1
## 1842            722.76    1
## 1843            723.24    1
## 1844            723.31    1
## 1845            727.95    1
## 1846               728    1
## 1847            728.03    1
## 1848            728.06    1
## 1849             728.8    1
## 1850            729.52    1
## 1851               732    1
## 1852             732.8    1
## 1853               733    1
## 1854             734.4    1
## 1855            734.55    1
## 1856            735.39    1
## 1857               736    1
## 1858            736.48    1
## 1859               737    1
## 1860               738    1
## 1861            738.82    1
## 1862            739.54    1
## 1863            740.15    1
## 1864             740.8    1
## 1865               741    1
## 1866            741.14    1
## 1867             741.2    1
## 1868            741.75    1
## 1869            743.52    1
## 1870               744    1
## 1871            744.12    1
## 1872            744.33    1
## 1873             744.8    1
## 1874            745.75    1
## 1875            746.08    1
## 1876            746.74    1
## 1877            746.93    1
## 1878            747.66    1
## 1879            747.88    1
## 1880               748    1
## 1881            748.18    1
## 1882            750.38    1
## 1883            752.37    1
## 1884            752.75    1
## 1885            753.02    1
## 1886             755.2    1
## 1887            755.26    1
## 1888            756.21    1
## 1889            756.48    1
## 1890            756.75    1
## 1891               757    1
## 1892            759.17    1
## 1893             759.6    1
## 1894            760.32    1
## 1895             760.4    1
## 1896             760.9    1
## 1897            761.75    1
## 1898            761.86    1
## 1899            763.21    1
## 1900             764.4    1
## 1901            764.51    1
## 1902            764.55    1
## 1903            764.71    1
## 1904            765.27    1
## 1905            765.71    1
## 1906             766.8    1
## 1907               767    1
## 1908            769.23    1
## 1909            769.26    1
## 1910            769.44    1
## 1911             769.5    1
## 1912             771.2    1
## 1913               772    1
## 1914             772.2    1
## 1915            772.67    1
## 1916            772.73    1
## 1917             772.8    1
## 1918            773.48    1
## 1919            773.61    1
## 1920               775    1
## 1921            778.75    1
## 1922             779.6    1
## 1923               780    1
## 1924               782    1
## 1925            782.08    1
## 1926            782.91    1
## 1927               783    1
## 1928            783.33    1
## 1929             784.8    1
## 1930             785.6    1
## 1931               786    1
## 1932            787.77    1
## 1933               788    1
## 1934            788.46    1
## 1935            789.04    1
## 1936               790    1
## 1937             790.8    1
## 1938            792.29    1
## 1939               793    1
## 1940               794    1
## 1941            795.13    1
## 1942               796    1
## 1943               797    1
## 1944            797.96    1
## 1945            798.46    1
## 1946            798.49    1
## 1947            798.61    1
## 1948                 8    1
## 1949            801.17    1
## 1950               802    1
## 1951             802.8    1
## 1952               803    1
## 1953            803.36    1
## 1954             803.6    1
## 1955            803.84    1
## 1956               804    1
## 1957            805.07    1
## 1958            805.12    1
## 1959               806    1
## 1960               807    1
## 1961             807.6    1
## 1962            808.88    1
## 1963            809.25    1
## 1964            809.45    1
## 1965            809.98    1
## 1966                81    1
## 1967               810    1
## 1968             810.4    1
## 1969            811.59    1
## 1970            812.11    1
## 1971            812.35    1
## 1972            812.94    1
## 1973               813    1
## 1974             813.2    1
## 1975               814    1
## 1976            815.15    1
## 1977               817    1
## 1978            817.08    1
## 1979            817.15    1
## 1980            817.23    1
## 1981             817.3    1
## 1982               819    1
## 1983            819.23    1
## 1984             82.46    1
## 1985            820.18    1
## 1986            820.48    1
## 1987             822.4    1
## 1988           8220.92    1
## 1989            824.89    1
## 1990               827    1
## 1991            827.64    1
## 1992               829    1
## 1993               830    1
## 1994             831.2    1
## 1995               832    1
## 1996            832.09    1
## 1997            833.28    1
## 1998               834    1
## 1999             834.4    1
## 2000            834.96    1
## 2001             836.2    1
## 2002            836.32    1
## 2003            836.83    1
## 2004            837.44    1
## 2005             838.7    1
## 2006            839.86    1
## 2007               841    1
## 2008            842.27    1
## 2009            844.06    1
## 2010            844.69    1
## 2011               845    1
## 2012            846.48    1
## 2013            847.47    1
## 2014               848    1
## 2015             848.4    1
## 2016            850.29    1
## 2017            851.21    1
## 2018             851.4    1
## 2019               852    1
## 2020               853    1
## 2021               855    1
## 2022            856.04    1
## 2023            856.82    1
## 2024            858.44    1
## 2025            860.35    1
## 2026            860.63    1
## 2027            861.89    1
## 2028            862.87    1
## 2029             863.2    1
## 2030            863.49    1
## 2031            864.69    1
## 2032             865.2    1
## 2033            865.38    1
## 2034             865.6    1
## 2035            865.85    1
## 2036            866.04    1
## 2037            866.76    1
## 2038               867    1
## 2039            868.72    1
## 2040               869    1
## 2041              87.5    1
## 2042             87040    1
## 2043             871.8    1
## 2044             872.8    1
## 2045            873.85    1
## 2046             874.8    1
## 2047            876.33    1
## 2048            876.63    1
## 2049               882    1
## 2050             882.4    1
## 2051            883.36    1
## 2052            884.35    1
## 2053               885    1
## 2054             885.2    1
## 2055            885.48    1
## 2056               886    1
## 2057               887    1
## 2058               890    1
## 2059            891.01    1
## 2060            891.96    1
## 2061            892.32    1
## 2062             893.3    1
## 2063             895.6    1
## 2064             898.4    1
## 2065             900.9    1
## 2066               901    1
## 2067            901.04    1
## 2068               902    1
## 2069             902.3    1
## 2070             902.8    1
## 2071            905.29    1
## 2072             905.3    1
## 2073             906.4    1
## 2074               907    1
## 2075               909    1
## 2076               910    1
## 2077            910.07    1
## 2078               912    1
## 2079            913.44    1
## 2080            915.17    1
## 2081               916    1
## 2082            917.74    1
## 2083            919.24    1
## 2084            919.39    1
## 2085               920    1
## 2086            920.77    1
## 2087            922.88    1
## 2088               923    1
## 2089               924    1
## 2090             925.6    1
## 2091            926.37    1
## 2092            928.45    1
## 2093               929    1
## 2094            930.21    1
## 2095            931.35    1
## 2096               933    1
## 2097            935.94    1
## 2098            936.11    1
## 2099             936.8    1
## 2100               937    1
## 2101            939.13    1
## 2102            939.73    1
## 2103               940    1
## 2104             940.5    1
## 2105             940.8    1
## 2106             947.7    1
## 2107            948.43    1
## 2108            949.26    1
## 2109            952.97    1
## 2110            953.05    1
## 2111             953.6    1
## 2112               954    1
## 2113             956.4    1
## 2114             956.6    1
## 2115             956.8    1
## 2116               958    1
## 2117            958.41    1
## 2118               959    1
## 2119            959.93    1
## 2120               960    1
## 2121            960.25    1
## 2122               961    1
## 2123             961.5    1
## 2124            961.54    1
## 2125            962.13    1
## 2126            962.19    1
## 2127            963.42    1
## 2128             963.6    1
## 2129            968.48    1
## 2130               969    1
## 2131              97.5    1
## 2132            972.65    1
## 2133            972.83    1
## 2134               973    1
## 2135            973.56    1
## 2136            973.84    1
## 2137            974.81    1
## 2138            975.39    1
## 2139               976    1
## 2140            980.77    1
## 2141             981.6    1
## 2142            981.92    1
## 2143            982.02    1
## 2144               983    1
## 2145               984    1
## 2146            984.12    1
## 2147               985    1
## 2148             988.4    1
## 2149            988.59    1
## 2150                99    1
## 2151             990.4    1
## 2152            992.08    1
## 2153            992.31    1
## 2154               994    1
## 2155               997    1
## 2156            999.19    1
## 2157            999.43    1
count(dfmerge, ClaimantOpenedDate, sort=TRUE)
##      ClaimantOpenedDate  n
## 1            15/04/1996 16
## 2            11/01/2014 15
## 3            12/08/1999 15
## 4            22/06/2009 15
## 5            28/05/1996 15
## 6            30/03/1996 15
## 7            02/05/1996 13
## 8            06/03/2007 12
## 9            07/05/1996 12
## 10           12/06/1996 12
## 11           14/10/2013 12
## 12           18/02/2013 12
## 13           18/12/2012 12
## 14           19/02/2014 12
## 15           19/06/2009 12
## 16           22/05/1997 12
## 17           03/02/2003 11
## 18           03/04/2002 11
## 19           03/12/2001 11
## 20           13/08/1996 11
## 21           19/11/2003 11
## 22           21/10/2013 11
## 23           26/06/1996 11
## 24           04/04/2013 10
## 25           06/09/2013 10
## 26           07/03/2007 10
## 27           08/08/2000 10
## 28           09/08/2013 10
## 29           12/07/2011 10
## 30           12/09/1997 10
## 31           13/05/1996 10
## 32           15/05/1996 10
## 33           15/05/2012 10
## 34           18/12/1996 10
## 35           21/03/2000 10
## 36           23/04/1996 10
## 37           27/09/2005 10
## 38           28/03/2000 10
## 39           29/04/2002 10
## 40           29/06/2000 10
## 41           30/06/1998 10
## 42           01/09/2006  9
## 43           02/04/2004  9
## 44           05/03/2013  9
## 45           07/03/2000  9
## 46           07/05/2007  9
## 47           07/07/2000  9
## 48           08/05/1996  9
## 49           09/12/1998  9
## 50           10/06/2014  9
## 51           10/07/1997  9
## 52           10/07/2001  9
## 53           10/09/2004  9
## 54           11/09/2013  9
## 55           12/07/2013  9
## 56           13/09/2013  9
## 57           14/06/2006  9
## 58           16/03/2006  9
## 59           17/05/1996  9
## 60           19/04/1996  9
## 61           21/08/1996  9
## 62           23/05/1996  9
## 63           24/05/2007  9
## 64           24/09/2013  9
## 65           24/10/1997  9
## 66           25/05/2012  9
## 67           26/06/2014  9
## 68           27/02/2012  9
## 69           27/09/1996  9
## 70           27/10/2008  9
## 71           27/12/2012  9
## 72           28/10/2013  9
## 73           30/05/2008  9
## 74           30/12/2004  9
## 75           01/05/2014  8
## 76           01/06/2000  8
## 77           01/10/2013  8
## 78           03/06/1997  8
## 79           04/10/1996  8
## 80           04/11/2011  8
## 81           04/12/2012  8
## 82           05/01/2006  8
## 83           05/05/2000  8
## 84           05/10/2000  8
## 85           05/12/2013  8
## 86           07/12/1999  8
## 87           08/04/2014  8
## 88           09/04/1996  8
## 89           09/09/2003  8
## 90           10/03/1998  8
## 91           10/04/2006  8
## 92           10/04/2014  8
## 93           11/01/2006  8
## 94           11/01/2013  8
## 95           11/11/1998  8
## 96           12/04/1996  8
## 97           12/05/2010  8
## 98           12/06/2013  8
## 99           12/07/1999  8
## 100          12/09/2000  8
## 101          12/10/2006  8
## 102          13/03/2003  8
## 103          13/07/1998  8
## 104          13/08/2008  8
## 105          13/11/1997  8
## 106          14/03/2003  8
## 107          14/09/2012  8
## 108          15/02/1999  8
## 109          15/10/1996  8
## 110          17/05/2007  8
## 111          18/06/2014  8
## 112          18/10/2013  8
## 113          19/08/1998  8
## 114          20/02/2014  8
## 115          20/09/2013  8
## 116          21/03/2013  8
## 117          22/06/2000  8
## 118          23/04/2014  8
## 119          23/06/2009  8
## 120          24/11/2004  8
## 121          25/01/2011  8
## 122          25/04/2014  8
## 123          26/01/2001  8
## 124          26/03/2014  8
## 125          26/07/1996  8
## 126          26/10/2004  8
## 127          28/01/1998  8
## 128          29/07/2004  8
## 129          30/05/1996  8
## 130          30/07/2001  8
## 131          30/12/1999  8
## 132          31/05/2001  8
## 133          01/07/1997  7
## 134          02/01/2001  7
## 135          02/01/2002  7
## 136          02/02/2004  7
## 137          02/12/2009  7
## 138          03/06/2013  7
## 139          03/08/2005  7
## 140          03/11/2004  7
## 141          04/01/2013  7
## 142          04/06/2009  7
## 143          04/09/1997  7
## 144          05/02/1997  7
## 145          05/03/2004  7
## 146          05/09/1996  7
## 147          06/02/2006  7
## 148          06/07/1999  7
## 149          06/08/1998  7
## 150          06/08/2013  7
## 151          07/02/2013  7
## 152          07/03/2001  7
## 153          07/05/2008  7
## 154          07/06/2012  7
## 155          07/10/1996  7
## 156          08/01/2013  7
## 157          08/04/2003  7
## 158          08/04/2009  7
## 159          08/05/1998  7
## 160          08/05/2006  7
## 161          08/10/2002  7
## 162          08/11/2011  7
## 163          09/02/2006  7
## 164          09/02/2010  7
## 165          09/05/2014  7
## 166          09/06/2005  7
## 167          09/07/2009  7
## 168          09/09/2004  7
## 169          10/04/1997  7
## 170          10/07/2006  7
## 171          10/07/2007  7
## 172          11/04/2014  7
## 173          11/05/2000  7
## 174          12/02/1999  7
## 175          12/03/2004  7
## 176          13/09/2000  7
## 177          14/01/1999  7
## 178          14/02/2000  7
## 179          14/05/1996  7
## 180          14/07/1999  7
## 181          14/08/2013  7
## 182          14/09/2005  7
## 183          15/06/1999  7
## 184          15/06/2000  7
## 185          15/10/2003  7
## 186          15/11/2012  7
## 187          15/11/2013  7
## 188          16/04/1996  7
## 189          16/04/2012  7
## 190          16/04/2014  7
## 191          16/06/2014  7
## 192          17/03/2005  7
## 193          17/12/2002  7
## 194          18/02/2004  7
## 195          18/03/2004  7
## 196          18/06/2008  7
## 197          18/06/2009  7
## 198          18/07/1996  7
## 199          19/03/2013  7
## 200          19/03/2014  7
## 201          20/04/2005  7
## 202          20/05/1996  7
## 203          20/07/2000  7
## 204          20/08/2008  7
## 205          20/10/2000  7
## 206          21/01/2002  7
## 207          21/05/2004  7
## 208          22/01/2014  7
## 209          22/03/1999  7
## 210          22/05/1996  7
## 211          22/08/2007  7
## 212          22/12/2005  7
## 213          23/01/2001  7
## 214          23/03/2010  7
## 215          23/06/2006  7
## 216          23/07/2013  7
## 217          23/08/2007  7
## 218          23/08/2012  7
## 219          23/09/1996  7
## 220          23/10/2013  7
## 221          24/05/2004  7
## 222          24/07/2001  7
## 223          24/08/2000  7
## 224          24/08/2001  7
## 225          24/08/2007  7
## 226          24/09/1999  7
## 227          25/03/1997  7
## 228          25/03/2013  7
## 229          25/06/2013  7
## 230          25/07/2001  7
## 231          25/07/2011  7
## 232          25/09/2013  7
## 233          26/03/2001  7
## 234          26/04/1996  7
## 235          26/10/2000  7
## 236          27/03/2014  7
## 237          27/06/2002  7
## 238          27/11/1996  7
## 239          28/06/2001  7
## 240          28/07/1997  7
## 241          29/10/1997  7
## 242          29/11/2011  7
## 243          30/01/2014  7
## 244          30/07/2012  7
## 245          30/08/2011  7
## 246          31/01/2014  7
## 247          01/02/2000  6
## 248          01/04/2008  6
## 249          01/09/1999  6
## 250          01/11/2005  6
## 251          02/02/1999  6
## 252          02/04/2007  6
## 253          02/06/2014  6
## 254          02/10/2002  6
## 255          02/11/2000  6
## 256          02/12/2011  6
## 257          03/02/1997  6
## 258          03/03/1997  6
## 259          03/03/2006  6
## 260          03/04/2008  6
## 261          03/07/2001  6
## 262          03/07/2012  6
## 263          03/09/1999  6
## 264          03/11/2006  6
## 265          03/12/2002  6
## 266          04/02/2002  6
## 267          04/02/2014  6
## 268          04/04/2008  6
## 269          04/05/2005  6
## 270          04/06/2001  6
## 271          04/09/2013  6
## 272          04/10/2002  6
## 273          04/10/2006  6
## 274          04/12/2013  6
## 275          05/01/2005  6
## 276          05/02/1999  6
## 277          05/10/1999  6
## 278          06/01/2005  6
## 279          06/03/2012  6
## 280          06/03/2014  6
## 281          06/04/2005  6
## 282          06/09/2012  6
## 283          06/11/2000  6
## 284          07/02/2014  6
## 285          07/06/2007  6
## 286          07/08/2001  6
## 287          07/08/2006  6
## 288          07/09/2005  6
## 289          08/04/1997  6
## 290          08/05/2014  6
## 291          08/06/1999  6
## 292          08/09/2004  6
## 293          09/02/2000  6
## 294          09/02/2011  6
## 295          09/02/2012  6
## 296          09/03/2001  6
## 297          09/04/2013  6
## 298          09/06/2004  6
## 299          09/07/1999  6
## 300          09/11/2006  6
## 301          10/02/1997  6
## 302          10/04/1996  6
## 303          10/04/2012  6
## 304          10/09/1996  6
## 305          10/09/2013  6
## 306          10/11/2010  6
## 307          11/04/2007  6
## 308          11/04/2008  6
## 309          11/04/2012  6
## 310          11/05/1999  6
## 311          11/06/2013  6
## 312          11/07/2006  6
## 313          11/09/2002  6
## 314          11/10/2012  6
## 315          11/12/2001  6
## 316          12/01/2005  6
## 317          12/06/1997  6
## 318          12/06/2001  6
## 319          12/06/2014  6
## 320          12/07/1996  6
## 321          12/08/2008  6
## 322          12/10/1999  6
## 323          12/10/2001  6
## 324          12/11/2010  6
## 325          13/01/2014  6
## 326          13/02/2002  6
## 327          13/04/1996  6
## 328          13/05/2013  6
## 329          13/05/2014  6
## 330          13/10/2005  6
## 331          13/11/1996  6
## 332          13/12/2001  6
## 333          13/12/2012  6
## 334          14/02/2001  6
## 335          14/02/2003  6
## 336          14/06/2001  6
## 337          14/06/2002  6
## 338          14/09/2000  6
## 339          14/09/2011  6
## 340          14/12/2012  6
## 341          15/03/1999  6
## 342          15/08/1997  6
## 343          15/10/1997  6
## 344          16/02/1998  6
## 345          16/03/2012  6
## 346          16/05/1996  6
## 347          16/08/1996  6
## 348          16/09/2002  6
## 349          16/09/2003  6
## 350          16/10/2001  6
## 351          16/11/1998  6
## 352          17/01/2001  6
## 353          17/04/2008  6
## 354          17/05/2006  6
## 355          17/05/2013  6
## 356          17/08/2006  6
## 357          17/11/2005  6
## 358          18/07/2006  6
## 359          18/07/2013  6
## 360          18/08/1997  6
## 361          18/11/1996  6
## 362          18/11/2004  6
## 363          18/12/2002  6
## 364          19/07/2001  6
## 365          19/07/2013  6
## 366          19/10/2004  6
## 367          19/12/2013  6
## 368          20/03/2002  6
## 369          20/04/1996  6
## 370          20/05/2002  6
## 371          20/06/2001  6
## 372          20/06/2002  6
## 373          20/06/2007  6
## 374          20/07/2007  6
## 375          20/07/2011  6
## 376          20/08/1996  6
## 377          20/09/2001  6
## 378          20/09/2012  6
## 379          20/10/1999  6
## 380          20/11/1997  6
## 381          20/12/2010  6
## 382          20/12/2013  6
## 383          21/02/2013  6
## 384          21/05/1996  6
## 385          21/05/1998  6
## 386          21/05/2014  6
## 387          21/08/2000  6
## 388          21/09/2005  6
## 389          21/11/2006  6
## 390          22/01/2013  6
## 391          22/03/2000  6
## 392          22/03/2012  6
## 393          22/04/2003  6
## 394          22/05/2000  6
## 395          22/05/2007  6
## 396          22/05/2013  6
## 397          22/08/2002  6
## 398          22/09/1999  6
## 399          22/09/2008  6
## 400          22/10/2004  6
## 401          22/10/2013  6
## 402          22/11/2013  6
## 403          23/04/1997  6
## 404          23/05/2008  6
## 405          23/06/2000  6
## 406          23/07/2008  6
## 407          23/08/1996  6
## 408          23/08/2013  6
## 409          23/09/2013  6
## 410          24/01/1997  6
## 411          24/01/2014  6
## 412          24/02/1997  6
## 413          24/06/2002  6
## 414          24/06/2013  6
## 415          24/07/1997  6
## 416          24/07/2002  6
## 417          24/09/2008  6
## 418          25/01/2008  6
## 419          25/06/2001  6
## 420          25/06/2014  6
## 421          25/10/2002  6
## 422          26/02/2001  6
## 423          26/03/2012  6
## 424          27/01/1997  6
## 425          27/01/2014  6
## 426          27/03/2002  6
## 427          27/09/1999  6
## 428          27/11/2006  6
## 429          28/03/2001  6
## 430          28/03/2014  6
## 431          28/07/2000  6
## 432          28/10/1996  6
## 433          28/11/2000  6
## 434          29/05/2014  6
## 435          29/08/1996  6
## 436          29/10/2007  6
## 437          30/01/1997  6
## 438          30/06/2011  6
## 439          30/07/1996  6
## 440          31/03/2010  6
## 441          31/07/2001  6
## 442          31/07/2002  6
## 443          31/08/2006  6
## 444          01/02/2002  5
## 445          01/02/2012  5
## 446          01/03/1999  5
## 447          01/04/1997  5
## 448          01/08/2006  5
## 449          01/11/2007  5
## 450          01/11/2012  5
## 451          01/12/2004  5
## 452          01/12/2005  5
## 453          02/01/2009  5
## 454          02/03/2000  5
## 455          02/04/1997  5
## 456          02/05/2002  5
## 457          02/06/2000  5
## 458          02/06/2005  5
## 459          02/08/1996  5
## 460          02/08/2005  5
## 461          02/08/2007  5
## 462          02/08/2010  5
## 463          02/09/1998  5
## 464          02/10/1997  5
## 465          02/10/2013  5
## 466          02/11/2007  5
## 467          02/12/1996  5
## 468          03/01/2013  5
## 469          03/02/1999  5
## 470          03/03/2000  5
## 471          03/03/2011  5
## 472          03/04/2014  5
## 473          03/05/2012  5
## 474          03/06/2004  5
## 475          03/08/1999  5
## 476          03/10/2003  5
## 477          03/10/2012  5
## 478          04/02/1999  5
## 479          04/02/2008  5
## 480          04/03/2003  5
## 481          04/03/2009  5
## 482          04/04/2002  5
## 483          04/04/2006  5
## 484          04/04/2012  5
## 485          04/06/1997  5
## 486          04/06/1998  5
## 487          04/06/2013  5
## 488          04/09/2001  5
## 489          04/09/2002  5
## 490          04/09/2008  5
## 491          04/11/2004  5
## 492          05/01/2012  5
## 493          05/02/2013  5
## 494          05/03/1998  5
## 495          05/03/2008  5
## 496          05/04/2007  5
## 497          05/05/2009  5
## 498          05/06/2001  5
## 499          05/06/2009  5
## 500          05/08/1998  5
## 501          05/09/2006  5
## 502          05/11/2013  5
## 503          05/12/2008  5
## 504          06/01/2012  5
## 505          06/02/2009  5
## 506          06/04/2004  5
## 507          06/05/1996  5
## 508          06/05/2011  5
## 509          06/05/2014  5
## 510          06/06/2000  5
## 511          06/06/2007  5
## 512          06/06/2008  5
## 513          06/07/2005  5
## 514          06/10/2011  5
## 515          06/11/1998  5
## 516          06/12/1999  5
## 517          06/12/2000  5
## 518          07/01/1997  5
## 519          07/01/2010  5
## 520          07/04/2009  5
## 521          07/05/2012  5
## 522          07/06/2001  5
## 523          07/07/2003  5
## 524          07/09/2001  5
## 525          07/11/2013  5
## 526          07/12/2005  5
## 527          08/01/2004  5
## 528          08/01/2009  5
## 529          08/02/2002  5
## 530          08/02/2006  5
## 531          08/02/2010  5
## 532          08/03/2013  5
## 533          08/04/1998  5
## 534          08/04/2013  5
## 535          08/07/1999  5
## 536          08/10/1998  5
## 537          08/10/2003  5
## 538          08/10/2012  5
## 539          08/11/1996  5
## 540          08/11/2004  5
## 541          09/01/1998  5
## 542          09/01/2014  5
## 543          09/02/1998  5
## 544          09/03/1998  5
## 545          09/03/2011  5
## 546          09/04/2007  5
## 547          09/05/1996  5
## 548          09/07/2001  5
## 549          09/07/2010  5
## 550          09/07/2013  5
## 551          09/08/1999  5
## 552          09/08/2006  5
## 553          09/09/1997  5
## 554          09/09/1998  5
## 555          09/10/2000  5
## 556          09/11/2010  5
## 557          09/11/2012  5
## 558          09/12/2005  5
## 559          09/12/2011  5
## 560          10/02/2012  5
## 561          10/02/2014  5
## 562          10/03/2008  5
## 563          10/04/2013  5
## 564          11/01/2005  5
## 565          11/04/2013  5
## 566          11/05/2004  5
## 567          11/08/1998  5
## 568          11/09/1996  5
## 569          11/09/2000  5
## 570          11/11/1999  5
## 571          12/01/1998  5
## 572          12/04/2012  5
## 573          12/05/2014  5
## 574          12/06/2007  5
## 575          12/08/2002  5
## 576          12/09/2007  5
## 577          12/11/2001  5
## 578          12/11/2012  5
## 579          12/12/2000  5
## 580          12/12/2003  5
## 581          13/01/2000  5
## 582          13/01/2004  5
## 583          13/03/1997  5
## 584          13/03/2000  5
## 585          13/03/2007  5
## 586          13/05/2002  5
## 587          13/05/2005  5
## 588          13/06/2001  5
## 589          13/06/2006  5
## 590          13/06/2007  5
## 591          13/07/2000  5
## 592          13/07/2011  5
## 593          13/08/2001  5
## 594          13/08/2004  5
## 595          13/09/1996  5
## 596          13/09/2004  5
## 597          13/10/1997  5
## 598          14/02/2013  5
## 599          14/03/2001  5
## 600          14/03/2012  5
## 601          14/05/2001  5
## 602          14/06/1999  5
## 603          14/06/2005  5
## 604          14/07/2005  5
## 605          14/08/2012  5
## 606          14/09/2004  5
## 607          15/02/2013  5
## 608          15/03/2002  5
## 609          15/05/2002  5
## 610          15/05/2013  5
## 611          15/06/2007  5
## 612          15/09/2003  5
## 613          15/09/2004  5
## 614          16/01/2004  5
## 615          16/02/2004  5
## 616          16/04/1998  5
## 617          16/06/1999  5
## 618          16/07/2003  5
## 619          16/08/2000  5
## 620          16/08/2005  5
## 621          16/08/2012  5
## 622          16/09/2009  5
## 623          16/12/2011  5
## 624          17/01/2014  5
## 625          17/02/2011  5
## 626          17/02/2012  5
## 627          17/03/2009  5
## 628          17/03/2014  5
## 629          17/04/1997  5
## 630          17/04/1998  5
## 631          17/04/2001  5
## 632          17/04/2002  5
## 633          17/05/2000  5
## 634          17/06/1996  5
## 635          17/06/2009  5
## 636          17/07/2002  5
## 637          17/08/2005  5
## 638          17/09/1996  5
## 639          17/10/1996  5
## 640          18/01/2001  5
## 641          18/02/2003  5
## 642          18/03/2003  5
## 643          18/04/1996  5
## 644          18/07/2008  5
## 645          18/10/2000  5
## 646          18/10/2007  5
## 647          18/10/2010  5
## 648          18/11/2003  5
## 649          18/11/2010  5
## 650          18/12/2013  5
## 651          19/02/1997  5
## 652          19/03/1999  5
## 653          19/04/2013  5
## 654          19/05/1999  5
## 655          19/05/2000  5
## 656          19/07/1996  5
## 657          19/07/2000  5
## 658          19/08/2003  5
## 659          19/08/2005  5
## 660          19/08/2010  5
## 661          19/09/2000  5
## 662          19/12/2000  5
## 663          19/12/2001  5
## 664          19/12/2011  5
## 665          20/01/2012  5
## 666          20/03/1997  5
## 667          20/03/2000  5
## 668          20/03/2014  5
## 669          20/06/2013  5
## 670          20/07/2004  5
## 671          20/07/2006  5
## 672          20/08/1999  5
## 673          20/09/2004  5
## 674          20/11/2013  5
## 675          21/02/1997  5
## 676          21/02/2000  5
## 677          21/02/2012  5
## 678          21/04/1997  5
## 679          21/05/1997  5
## 680          21/05/2001  5
## 681          21/06/2002  5
## 682          21/06/2011  5
## 683          21/06/2012  5
## 684          21/07/2005  5
## 685          21/08/2007  5
## 686          21/08/2008  5
## 687          21/09/2006  5
## 688          21/10/2005  5
## 689          21/12/2005  5
## 690          22/02/2002  5
## 691          22/03/2011  5
## 692          22/04/2004  5
## 693          22/04/2014  5
## 694          22/05/2006  5
## 695          22/07/1996  5
## 696          22/07/1997  5
## 697          22/07/2004  5
## 698          22/11/2005  5
## 699          23/01/1997  5
## 700          23/01/2007  5
## 701          23/02/2006  5
## 702          23/03/2000  5
## 703          23/03/2012  5
## 704          23/04/2004  5
## 705          23/04/2008  5
## 706          23/05/2000  5
## 707          23/07/2007  5
## 708          23/10/1996  5
## 709          23/11/2010  5
## 710          24/01/2005  5
## 711          24/02/2012  5
## 712          24/03/1997  5
## 713          24/03/1999  5
## 714          24/03/2006  5
## 715          24/04/2003  5
## 716          24/06/1999  5
## 717          24/06/2009  5
## 718          24/06/2014  5
## 719          24/07/1996  5
## 720          24/08/1999  5
## 721          24/09/2002  5
## 722          24/09/2004  5
## 723          24/09/2010  5
## 724          24/10/2008  5
## 725          24/10/2012  5
## 726          25/02/1999  5
## 727          25/03/2004  5
## 728          25/06/1999  5
## 729          25/07/2000  5
## 730          25/07/2003  5
## 731          25/08/2000  5
## 732          25/08/2004  5
## 733          25/09/1997  5
## 734          25/10/2006  5
## 735          26/01/2012  5
## 736          26/02/2014  5
## 737          26/06/2000  5
## 738          26/06/2001  5
## 739          26/07/2000  5
## 740          26/07/2006  5
## 741          26/07/2013  5
## 742          26/08/2003  5
## 743          26/08/2005  5
## 744          26/08/2009  5
## 745          26/09/1996  5
## 746          26/09/2000  5
## 747          26/10/2011  5
## 748          27/02/2001  5
## 749          27/02/2014  5
## 750          27/03/2006  5
## 751          27/04/2000  5
## 752          27/04/2006  5
## 753          27/05/1997  5
## 754          27/05/2004  5
## 755          27/05/2014  5
## 756          27/06/2006  5
## 757          27/06/2007  5
## 758          27/06/2008  5
## 759          27/06/2013  5
## 760          27/07/1998  5
## 761          27/07/1999  5
## 762          27/11/2002  5
## 763          27/11/2007  5
## 764          28/02/2011  5
## 765          28/03/2008  5
## 766          28/04/1998  5
## 767          28/05/2008  5
## 768          28/05/2013  5
## 769          28/06/1999  5
## 770          28/07/2010  5
## 771          28/08/1996  5
## 772          28/08/2003  5
## 773          28/09/1999  5
## 774          28/09/2006  5
## 775          28/09/2010  5
## 776          29/01/1998  5
## 777          29/01/2002  5
## 778          29/01/2003  5
## 779          29/01/2004  5
## 780          29/01/2013  5
## 781          29/03/2013  5
## 782          29/05/2003  5
## 783          29/07/2002  5
## 784          29/07/2005  5
## 785          29/08/2000  5
## 786          29/10/1998  5
## 787          29/11/1999  5
## 788          29/12/2004  5
## 789          30/01/2001  5
## 790          30/01/2004  5
## 791          30/01/2008  5
## 792          30/03/2004  5
## 793          30/04/2008  5
## 794          30/04/2013  5
## 795          30/05/1997  5
## 796          30/05/2012  5
## 797          30/05/2014  5
## 798          30/08/2001  5
## 799          30/11/2004  5
## 800          31/03/1996  5
## 801          31/03/2003  5
## 802          31/05/2000  5
## 803          31/10/1996  5
## 804          31/10/2013  5
## 805          31/12/2013  5
## 806          01/03/2006  4
## 807          01/03/2011  4
## 808          01/04/1996  4
## 809          01/04/2003  4
## 810          01/04/2009  4
## 811          01/05/1996  4
## 812          01/05/2007  4
## 813          01/05/2009  4
## 814          01/07/1998  4
## 815          01/07/2013  4
## 816          01/09/2009  4
## 817          01/09/2010  4
## 818          01/10/1997  4
## 819          01/10/2002  4
## 820          01/10/2012  4
## 821          01/11/2013  4
## 822          01/12/2000  4
## 823          01/12/2010  4
## 824          02/03/2010  4
## 825          02/05/2000  4
## 826          02/05/2005  4
## 827          02/07/2003  4
## 828          02/07/2004  4
## 829          02/07/2007  4
## 830          02/07/2013  4
## 831          02/10/1996  4
## 832          02/10/2008  4
## 833          02/11/2001  4
## 834          02/11/2004  4
## 835          02/11/2011  4
## 836          02/12/1998  4
## 837          02/12/1999  4
## 838          03/02/2009  4
## 839          03/03/1999  4
## 840          03/03/2010  4
## 841          03/03/2014  4
## 842          03/05/2010  4
## 843          03/06/1996  4
## 844          03/07/2000  4
## 845          03/07/2013  4
## 846          03/08/2006  4
## 847          03/09/2013  4
## 848          03/10/2008  4
## 849          03/11/2003  4
## 850          03/12/1997  4
## 851          04/01/1999  4
## 852          04/01/2000  4
## 853          04/01/2005  4
## 854          04/02/2003  4
## 855          04/03/2004  4
## 856          04/03/2011  4
## 857          04/04/1996  4
## 858          04/05/2006  4
## 859          04/06/2002  4
## 860          04/06/2007  4
## 861          04/06/2012  4
## 862          04/08/1999  4
## 863          04/08/2000  4
## 864          04/08/2004  4
## 865          04/09/2012  4
## 866          04/10/1999  4
## 867          04/10/2007  4
## 868          04/10/2012  4
## 869          04/11/1997  4
## 870          04/12/2001  4
## 871          04/12/2008  4
## 872          05/03/2010  4
## 873          05/04/1999  4
## 874          05/04/2001  4
## 875          05/04/2005  4
## 876          05/04/2012  4
## 877          05/04/2013  4
## 878          05/05/2011  4
## 879          05/06/2000  4
## 880          05/06/2007  4
## 881          05/06/2013  4
## 882          05/07/2007  4
## 883          05/07/2012  4
## 884          05/08/1996  4
## 885          05/08/2009  4
## 886          05/09/2000  4
## 887          05/09/2002  4
## 888          05/09/2013  4
## 889          05/10/2001  4
## 890          05/10/2004  4
## 891          05/11/1997  4
## 892          05/11/2002  4
## 893          05/11/2003  4
## 894          06/01/2006  4
## 895          06/02/2001  4
## 896          06/03/2002  4
## 897          06/03/2008  4
## 898          06/04/1998  4
## 899          06/05/2003  4
## 900          06/06/1997  4
## 901          06/08/1996  4
## 902          06/08/2001  4
## 903          06/09/2000  4
## 904          06/09/2001  4
## 905          06/09/2002  4
## 906          06/09/2005  4
## 907          06/10/2003  4
## 908          06/10/2008  4
## 909          06/11/1996  4
## 910          06/11/2007  4
## 911          06/12/2013  4
## 912          07/02/2006  4
## 913          07/02/2012  4
## 914          07/03/2014  4
## 915          07/04/1999  4
## 916          07/04/2000  4
## 917          07/06/2013  4
## 918          07/07/1998  4
## 919          07/07/2008  4
## 920          07/07/2009  4
## 921          07/08/1996  4
## 922          07/08/2009  4
## 923          07/08/2012  4
## 924          07/08/2013  4
## 925          07/09/2011  4
## 926          07/11/2000  4
## 927          07/11/2008  4
## 928          07/12/2011  4
## 929          08/01/2002  4
## 930          08/02/2008  4
## 931          08/02/2013  4
## 932          08/03/2004  4
## 933          08/03/2012  4
## 934          08/04/2011  4
## 935          08/05/2009  4
## 936          08/06/2007  4
## 937          08/07/1996  4
## 938          08/07/2004  4
## 939          08/08/1997  4
## 940          08/08/2005  4
## 941          08/09/1997  4
## 942          08/09/2011  4
## 943          08/11/2013  4
## 944          08/12/2004  4
## 945          09/01/2002  4
## 946          09/01/2004  4
## 947          09/01/2008  4
## 948          09/02/1999  4
## 949          09/02/2004  4
## 950          09/03/1999  4
## 951          09/03/2005  4
## 952          09/04/2002  4
## 953          09/05/2000  4
## 954          09/07/2008  4
## 955          09/08/1996  4
## 956          09/09/2005  4
## 957          09/10/1997  4
## 958          09/10/2001  4
## 959          09/11/2009  4
## 960          09/11/2011  4
## 961          09/12/2003  4
## 962          09/12/2004  4
## 963          10/01/2001  4
## 964          10/01/2014  4
## 965          10/02/2005  4
## 966          10/02/2006  4
## 967          10/03/1997  4
## 968          10/04/2000  4
## 969          10/04/2001  4
## 970          10/05/1996  4
## 971          10/05/2004  4
## 972          10/06/2003  4
## 973          10/06/2008  4
## 974          10/07/2013  4
## 975          10/08/2012  4
## 976          10/10/2000  4
## 977          10/10/2003  4
## 978          11/01/2000  4
## 979          11/01/2008  4
## 980          11/02/1997  4
## 981          11/02/2000  4
## 982          11/02/2002  4
## 983          11/02/2004  4
## 984          11/02/2005  4
## 985          11/02/2010  4
## 986          11/02/2014  4
## 987          11/03/1999  4
## 988          11/03/2003  4
## 989          11/03/2004  4
## 990          11/04/1997  4
## 991          11/04/2002  4
## 992          11/04/2003  4
## 993          11/04/2005  4
## 994          11/04/2011  4
## 995          11/05/2006  4
## 996          11/06/2002  4
## 997          11/06/2010  4
## 998          11/07/1997  4
## 999          11/07/2001  4
## 1000         11/07/2013  4
## 1001         11/08/2005  4
## 1002         11/09/2008  4
## 1003         11/10/2013  4
## 1004         11/12/2012  4
## 1005         12/01/2006  4
## 1006         12/02/2002  4
## 1007         12/03/2012  4
## 1008         12/04/2001  4
## 1009         12/04/2010  4
## 1010         12/04/2013  4
## 1011         12/05/1997  4
## 1012         12/05/1998  4
## 1013         12/05/2005  4
## 1014         12/06/2006  4
## 1015         12/07/2006  4
## 1016         12/08/1996  4
## 1017         12/09/2013  4
## 1018         12/10/1998  4
## 1019         12/10/2004  4
## 1020         12/10/2005  4
## 1021         12/11/1999  4
## 1022         12/11/2008  4
## 1023         12/12/2013  4
## 1024         13/01/1997  4
## 1025         13/01/1999  4
## 1026         13/01/2006  4
## 1027         13/02/2008  4
## 1028         13/03/2001  4
## 1029         13/03/2008  4
## 1030         13/03/2012  4
## 1031         13/03/2014  4
## 1032         13/05/1999  4
## 1033         13/05/2004  4
## 1034         13/05/2009  4
## 1035         13/07/1999  4
## 1036         13/09/1999  4
## 1037         13/09/2001  4
## 1038         13/11/2000  4
## 1039         13/11/2012  4
## 1040         13/12/1999  4
## 1041         13/12/2000  4
## 1042         13/12/2005  4
## 1043         13/12/2006  4
## 1044         13/12/2010  4
## 1045         13/12/2013  4
## 1046         14/01/2010  4
## 1047         14/03/2000  4
## 1048         14/03/2013  4
## 1049         14/04/1996  4
## 1050         14/04/2008  4
## 1051         14/04/2011  4
## 1052         14/05/1999  4
## 1053         14/05/2002  4
## 1054         14/06/2013  4
## 1055         14/07/2000  4
## 1056         14/08/2000  4
## 1057         14/10/2003  4
## 1058         14/10/2011  4
## 1059         14/11/1996  4
## 1060         14/12/1998  4
## 1061         14/12/2000  4
## 1062         14/12/2007  4
## 1063         15/01/1999  4
## 1064         15/01/2001  4
## 1065         15/01/2009  4
## 1066         15/02/2006  4
## 1067         15/03/2005  4
## 1068         15/03/2006  4
## 1069         15/04/2004  4
## 1070         15/04/2010  4
## 1071         15/05/1997  4
## 1072         15/05/2000  4
## 1073         15/05/2007  4
## 1074         15/05/2008  4
## 1075         15/07/1997  4
## 1076         15/07/2004  4
## 1077         15/08/2006  4
## 1078         15/08/2013  4
## 1079         15/10/2002  4
## 1080         15/10/2009  4
## 1081         15/12/2011  4
## 1082         16/01/1997  4
## 1083         16/01/1998  4
## 1084         16/02/2001  4
## 1085         16/02/2006  4
## 1086         16/02/2007  4
## 1087         16/02/2009  4
## 1088         16/03/1999  4
## 1089         16/04/1997  4
## 1090         16/05/2013  4
## 1091         16/05/2014  4
## 1092         16/06/1997  4
## 1093         16/07/1999  4
## 1094         16/07/2007  4
## 1095         16/07/2012  4
## 1096         16/07/2013  4
## 1097         16/09/2004  4
## 1098         16/09/2010  4
## 1099         16/09/2013  4
## 1100         16/10/1996  4
## 1101         16/12/1997  4
## 1102         17/01/2002  4
## 1103         17/02/2000  4
## 1104         17/03/1999  4
## 1105         17/03/2003  4
## 1106         17/03/2008  4
## 1107         17/04/2006  4
## 1108         17/05/2004  4
## 1109         17/05/2012  4
## 1110         17/06/2010  4
## 1111         17/06/2014  4
## 1112         17/07/2012  4
## 1113         17/08/2010  4
## 1114         17/09/2001  4
## 1115         17/09/2009  4
## 1116         17/09/2012  4
## 1117         17/10/2000  4
## 1118         17/10/2005  4
## 1119         17/10/2013  4
## 1120         17/11/2011  4
## 1121         17/12/1996  4
## 1122         17/12/2010  4
## 1123         18/01/2011  4
## 1124         18/02/2000  4
## 1125         18/02/2002  4
## 1126         18/03/2005  4
## 1127         18/03/2014  4
## 1128         18/04/2000  4
## 1129         18/04/2002  4
## 1130         18/04/2006  4
## 1131         18/04/2007  4
## 1132         18/05/2000  4
## 1133         18/06/1996  4
## 1134         18/06/2004  4
## 1135         18/06/2010  4
## 1136         18/08/2000  4
## 1137         18/08/2003  4
## 1138         18/08/2006  4
## 1139         18/09/2001  4
## 1140         18/09/2002  4
## 1141         18/09/2012  4
## 1142         18/10/2005  4
## 1143         18/11/1998  4
## 1144         18/11/2013  4
## 1145         18/12/1998  4
## 1146         18/12/2000  4
## 1147         19/01/2011  4
## 1148         19/02/1999  4
## 1149         19/02/2010  4
## 1150         19/03/2003  4
## 1151         19/03/2004  4
## 1152         19/05/1997  4
## 1153         19/05/2003  4
## 1154         19/05/2006  4
## 1155         19/06/2001  4
## 1156         19/06/2006  4
## 1157         19/06/2013  4
## 1158         19/07/1999  4
## 1159         19/08/2013  4
## 1160         19/09/2003  4
## 1161         19/09/2011  4
## 1162         19/10/1998  4
## 1163         19/10/1999  4
## 1164         19/10/2005  4
## 1165         19/10/2012  4
## 1166         19/12/2007  4
## 1167         20/01/2010  4
## 1168         20/01/2011  4
## 1169         20/02/1997  4
## 1170         20/02/2001  4
## 1171         20/02/2006  4
## 1172         20/02/2012  4
## 1173         20/04/2012  4
## 1174         20/05/2013  4
## 1175         20/06/2005  4
## 1176         20/08/2004  4
## 1177         20/08/2012  4
## 1178         20/09/1999  4
## 1179         20/09/2005  4
## 1180         20/09/2007  4
## 1181         20/09/2010  4
## 1182         20/10/2004  4
## 1183         20/10/2009  4
## 1184         20/11/2008  4
## 1185         20/11/2009  4
## 1186         20/12/1996  4
## 1187         20/12/2000  4
## 1188         20/12/2007  4
## 1189         21/01/1998  4
## 1190         21/01/2010  4
## 1191         21/02/2014  4
## 1192         21/03/1997  4
## 1193         21/04/1999  4
## 1194         21/04/2011  4
## 1195         21/04/2014  4
## 1196         21/05/2013  4
## 1197         21/06/2001  4
## 1198         21/06/2004  4
## 1199         21/07/1997  4
## 1200         21/07/2006  4
## 1201         21/07/2008  4
## 1202         21/08/2001  4
## 1203         21/08/2006  4
## 1204         21/11/1996  4
## 1205         21/11/2007  4
## 1206         22/01/2001  4
## 1207         22/01/2003  4
## 1208         22/01/2004  4
## 1209         22/02/2005  4
## 1210         22/02/2006  4
## 1211         22/02/2012  4
## 1212         22/02/2013  4
## 1213         22/03/2004  4
## 1214         22/04/1997  4
## 1215         22/04/1999  4
## 1216         22/04/2009  4
## 1217         22/06/2001  4
## 1218         22/06/2010  4
## 1219         22/06/2012  4
## 1220         22/07/1999  4
## 1221         22/07/2008  4
## 1222         22/07/2010  4
## 1223         22/08/2000  4
## 1224         22/08/2001  4
## 1225         22/08/2011  4
## 1226         22/09/2000  4
## 1227         22/09/2009  4
## 1228         22/09/2010  4
## 1229         22/10/1996  4
## 1230         22/10/1998  4
## 1231         22/10/2003  4
## 1232         22/10/2012  4
## 1233         22/12/2003  4
## 1234         23/01/2003  4
## 1235         23/01/2004  4
## 1236         23/02/2001  4
## 1237         23/02/2012  4
## 1238         23/03/1998  4
## 1239         23/03/2001  4
## 1240         23/03/2006  4
## 1241         23/03/2009  4
## 1242         23/04/2001  4
## 1243         23/05/2001  4
## 1244         23/05/2002  4
## 1245         23/05/2007  4
## 1246         23/05/2014  4
## 1247         23/06/2004  4
## 1248         23/07/1998  4
## 1249         23/07/2001  4
## 1250         23/07/2002  4
## 1251         23/09/1997  4
## 1252         23/09/2005  4
## 1253         23/10/2012  4
## 1254         23/11/2005  4
## 1255         23/12/2009  4
## 1256         24/01/2006  4
## 1257         24/02/2000  4
## 1258         24/02/2003  4
## 1259         24/03/2014  4
## 1260         24/04/2000  4
## 1261         24/04/2008  4
## 1262         24/05/1999  4
## 1263         24/06/1996  4
## 1264         24/06/1997  4
## 1265         24/06/2011  4
## 1266         24/07/1998  4
## 1267         24/07/2006  4
## 1268         24/07/2012  4
## 1269         24/07/2013  4
## 1270         24/08/2005  4
## 1271         24/09/2003  4
## 1272         24/09/2012  4
## 1273         24/10/2001  4
## 1274         24/10/2013  4
## 1275         24/11/2009  4
## 1276         25/01/2002  4
## 1277         25/01/2010  4
## 1278         25/02/2000  4
## 1279         25/02/2002  4
## 1280         25/02/2013  4
## 1281         25/03/1998  4
## 1282         25/03/2011  4
## 1283         25/04/1996  4
## 1284         25/06/1996  4
## 1285         25/06/2002  4
## 1286         25/06/2003  4
## 1287         25/06/2007  4
## 1288         25/06/2008  4
## 1289         25/06/2012  4
## 1290         25/07/2006  4
## 1291         25/09/1996  4
## 1292         25/09/2000  4
## 1293         25/09/2008  4
## 1294         25/10/1996  4
## 1295         25/11/1998  4
## 1296         25/11/2003  4
## 1297         25/11/2013  4
## 1298         26/01/2005  4
## 1299         26/01/2007  4
## 1300         26/01/2009  4
## 1301         26/01/2011  4
## 1302         26/02/2010  4
## 1303         26/03/2004  4
## 1304         26/04/2000  4
## 1305         26/04/2002  4
## 1306         26/04/2006  4
## 1307         26/04/2007  4
## 1308         26/04/2013  4
## 1309         26/05/2010  4
## 1310         26/06/1998  4
## 1311         26/06/2006  4
## 1312         26/06/2012  4
## 1313         26/07/1999  4
## 1314         26/07/2007  4
## 1315         26/07/2011  4
## 1316         26/08/1996  4
## 1317         26/08/1997  4
## 1318         26/08/2013  4
## 1319         26/09/2012  4
## 1320         26/10/2007  4
## 1321         26/10/2012  4
## 1322         27/02/2013  4
## 1323         27/04/1998  4
## 1324         27/05/2005  4
## 1325         27/06/1996  4
## 1326         27/06/2014  4
## 1327         27/07/2000  4
## 1328         27/07/2010  4
## 1329         27/08/2004  4
## 1330         27/08/2008  4
## 1331         27/09/2013  4
## 1332         27/12/2006  4
## 1333         28/01/2005  4
## 1334         28/01/2011  4
## 1335         28/01/2013  4
## 1336         28/02/2001  4
## 1337         28/02/2012  4
## 1338         28/02/2014  4
## 1339         28/03/2012  4
## 1340         28/04/1997  4
## 1341         28/04/2008  4
## 1342         28/05/1998  4
## 1343         28/06/2004  4
## 1344         28/07/2004  4
## 1345         28/08/2002  4
## 1346         28/09/2004  4
## 1347         28/10/2004  4
## 1348         28/11/2001  4
## 1349         29/01/1999  4
## 1350         29/02/2000  4
## 1351         29/03/2000  4
## 1352         29/03/2007  4
## 1353         29/04/1996  4
## 1354         29/04/2003  4
## 1355         29/04/2004  4
## 1356         29/06/1999  4
## 1357         29/06/2004  4
## 1358         29/06/2010  4
## 1359         29/06/2012  4
## 1360         29/07/2011  4
## 1361         29/08/2005  4
## 1362         29/09/2003  4
## 1363         29/09/2005  4
## 1364         30/01/2006  4
## 1365         30/03/2010  4
## 1366         30/04/2007  4
## 1367         30/05/2000  4
## 1368         30/05/2006  4
## 1369         30/05/2007  4
## 1370         30/05/2013  4
## 1371         30/06/1997  4
## 1372         30/06/2009  4
## 1373         30/07/2003  4
## 1374         30/07/2007  4
## 1375         30/08/2013  4
## 1376         30/10/2000  4
## 1377         31/01/1997  4
## 1378         31/03/1998  4
## 1379         31/05/2006  4
## 1380         31/07/2000  4
## 1381         31/07/2007  4
## 1382         31/07/2013  4
## 1383         31/08/2009  4
## 1384         31/12/2001  4
## 1385         31/12/2004  4
## 1386         01/02/2010  3
## 1387         01/02/2011  3
## 1388         01/03/2002  3
## 1389         01/03/2005  3
## 1390         01/03/2007  3
## 1391         01/03/2010  3
## 1392         01/04/2005  3
## 1393         01/05/1997  3
## 1394         01/05/2002  3
## 1395         01/05/2008  3
## 1396         01/05/2012  3
## 1397         01/06/2004  3
## 1398         01/06/2010  3
## 1399         01/07/2003  3
## 1400         01/08/1996  3
## 1401         01/08/2003  3
## 1402         01/10/2007  3
## 1403         01/11/1999  3
## 1404         01/12/1999  3
## 1405         01/12/2003  3
## 1406         01/12/2006  3
## 1407         01/12/2009  3
## 1408         02/01/2003  3
## 1409         02/02/2006  3
## 1410         02/02/2007  3
## 1411         02/02/2011  3
## 1412         02/03/1998  3
## 1413         02/03/2007  3
## 1414         02/04/2001  3
## 1415         02/04/2008  3
## 1416         02/04/2012  3
## 1417         02/04/2013  3
## 1418         02/04/2014  3
## 1419         02/05/1997  3
## 1420         02/05/2003  3
## 1421         02/05/2006  3
## 1422         02/05/2007  3
## 1423         02/06/1999  3
## 1424         02/06/2004  3
## 1425         02/06/2008  3
## 1426         02/06/2011  3
## 1427         02/07/2001  3
## 1428         02/08/2001  3
## 1429         02/08/2012  3
## 1430         02/08/2013  3
## 1431         02/09/2003  3
## 1432         02/11/1999  3
## 1433         02/11/2005  3
## 1434         02/11/2006  3
## 1435         02/12/2002  3
## 1436         02/12/2003  3
## 1437         02/12/2005  3
## 1438         03/01/2006  3
## 1439         03/01/2008  3
## 1440         03/01/2014  3
## 1441         03/02/2004  3
## 1442         03/02/2010  3
## 1443         03/03/2005  3
## 1444         03/04/1996  3
## 1445         03/04/1997  3
## 1446         03/04/2000  3
## 1447         03/04/2007  3
## 1448         03/05/1996  3
## 1449         03/05/2001  3
## 1450         03/05/2002  3
## 1451         03/05/2005  3
## 1452         03/05/2006  3
## 1453         03/06/1999  3
## 1454         03/06/2011  3
## 1455         03/06/2014  3
## 1456         03/07/1996  3
## 1457         03/07/1997  3
## 1458         03/08/2004  3
## 1459         03/08/2011  3
## 1460         03/08/2012  3
## 1461         03/09/1997  3
## 1462         03/09/1998  3
## 1463         03/09/2002  3
## 1464         03/09/2004  3
## 1465         03/10/1996  3
## 1466         03/10/2005  3
## 1467         03/10/2007  3
## 1468         03/10/2013  3
## 1469         03/11/1997  3
## 1470         03/11/1998  3
## 1471         03/11/2005  3
## 1472         03/11/2011  3
## 1473         03/12/1996  3
## 1474         03/12/1999  3
## 1475         03/12/2013  3
## 1476         04/02/2005  3
## 1477         04/02/2010  3
## 1478         04/03/2002  3
## 1479         04/03/2014  3
## 1480         04/04/2005  3
## 1481         04/04/2014  3
## 1482         04/06/1996  3
## 1483         04/06/2003  3
## 1484         04/06/2014  3
## 1485         04/08/1997  3
## 1486         04/08/2003  3
## 1487         04/08/2005  3
## 1488         04/09/2007  3
## 1489         04/10/2011  3
## 1490         04/11/2003  3
## 1491         04/11/2005  3
## 1492         04/11/2013  3
## 1493         04/12/2009  3
## 1494         05/01/2000  3
## 1495         05/01/2011  3
## 1496         05/02/2003  3
## 1497         05/02/2004  3
## 1498         05/02/2007  3
## 1499         05/02/2008  3
## 1500         05/02/2014  3
## 1501         05/04/2000  3
## 1502         05/04/2002  3
## 1503         05/04/2011  3
## 1504         05/05/1999  3
## 1505         05/06/2006  3
## 1506         05/08/2002  3
## 1507         05/08/2008  3
## 1508         05/08/2010  3
## 1509         05/08/2011  3
## 1510         05/09/2001  3
## 1511         05/09/2008  3
## 1512         05/10/1998  3
## 1513         05/10/2006  3
## 1514         05/10/2007  3
## 1515         05/10/2010  3
## 1516         05/10/2011  3
## 1517         05/11/1998  3
## 1518         05/11/2009  3
## 1519         05/12/2012  3
## 1520         06/01/1999  3
## 1521         06/02/2002  3
## 1522         06/02/2008  3
## 1523         06/02/2012  3
## 1524         06/02/2013  3
## 1525         06/02/2014  3
## 1526         06/03/1998  3
## 1527         06/03/2000  3
## 1528         06/03/2003  3
## 1529         06/03/2013  3
## 1530         06/04/1999  3
## 1531         06/04/2001  3
## 1532         06/04/2006  3
## 1533         06/05/2002  3
## 1534         06/05/2008  3
## 1535         06/05/2010  3
## 1536         06/06/2002  3
## 1537         06/06/2012  3
## 1538         06/07/2000  3
## 1539         06/08/2007  3
## 1540         06/09/2006  3
## 1541         06/09/2011  3
## 1542         06/10/1998  3
## 1543         06/10/2000  3
## 1544         06/10/2004  3
## 1545         06/10/2005  3
## 1546         06/11/1997  3
## 1547         06/11/2002  3
## 1548         06/11/2008  3
## 1549         06/11/2012  3
## 1550         06/12/2001  3
## 1551         07/01/2005  3
## 1552         07/02/2000  3
## 1553         07/02/2002  3
## 1554         07/02/2005  3
## 1555         07/03/1997  3
## 1556         07/03/2002  3
## 1557         07/03/2005  3
## 1558         07/03/2006  3
## 1559         07/03/2008  3
## 1560         07/03/2013  3
## 1561         07/04/2003  3
## 1562         07/04/2004  3
## 1563         07/04/2005  3
## 1564         07/05/2010  3
## 1565         07/05/2013  3
## 1566         07/05/2014  3
## 1567         07/06/2006  3
## 1568         07/06/2010  3
## 1569         07/07/1999  3
## 1570         07/07/2006  3
## 1571         07/08/2002  3
## 1572         07/08/2003  3
## 1573         07/09/2000  3
## 1574         07/09/2007  3
## 1575         07/10/2002  3
## 1576         07/10/2004  3
## 1577         07/10/2013  3
## 1578         07/12/2004  3
## 1579         07/12/2007  3
## 1580         07/12/2010  3
## 1581         08/01/2001  3
## 1582         08/01/2010  3
## 1583         08/02/2005  3
## 1584         08/03/2002  3
## 1585         08/03/2007  3
## 1586         08/04/1999  3
## 1587         08/05/1997  3
## 1588         08/05/2012  3
## 1589         08/06/1998  3
## 1590         08/06/2000  3
## 1591         08/06/2010  3
## 1592         08/07/2002  3
## 1593         08/07/2009  3
## 1594         08/08/2001  3
## 1595         08/08/2011  3
## 1596         08/08/2013  3
## 1597         08/10/1996  3
## 1598         08/10/1999  3
## 1599         08/10/2001  3
## 1600         08/10/2010  3
## 1601         08/10/2013  3
## 1602         08/11/2002  3
## 1603         08/11/2006  3
## 1604         08/11/2010  3
## 1605         08/12/2006  3
## 1606         09/02/2009  3
## 1607         09/03/2000  3
## 1608         09/03/2004  3
## 1609         09/03/2006  3
## 1610         09/03/2007  3
## 1611         09/04/2010  3
## 1612         09/05/1997  3
## 1613         09/05/2002  3
## 1614         09/05/2005  3
## 1615         09/05/2012  3
## 1616         09/05/2013  3
## 1617         09/06/1997  3
## 1618         09/06/2000  3
## 1619         09/06/2009  3
## 1620         09/08/2000  3
## 1621         09/08/2007  3
## 1622         09/09/1999  3
## 1623         09/09/2002  3
## 1624         09/09/2011  3
## 1625         09/09/2013  3
## 1626         09/10/2007  3
## 1627         10/01/2003  3
## 1628         10/01/2008  3
## 1629         10/01/2011  3
## 1630         10/01/2012  3
## 1631         10/02/1998  3
## 1632         10/02/2003  3
## 1633         10/02/2009  3
## 1634         10/02/2011  3
## 1635         10/03/2009  3
## 1636         10/04/2002  3
## 1637         10/04/2008  3
## 1638         10/05/2001  3
## 1639         10/05/2012  3
## 1640         10/06/1996  3
## 1641         10/06/1999  3
## 1642         10/06/2004  3
## 1643         10/06/2009  3
## 1644         10/06/2011  3
## 1645         10/07/2000  3
## 1646         10/07/2003  3
## 1647         10/08/2000  3
## 1648         10/08/2005  3
## 1649         10/08/2006  3
## 1650         10/08/2010  3
## 1651         10/08/2011  3
## 1652         10/09/1998  3
## 1653         10/09/2010  3
## 1654         10/10/2001  3
## 1655         10/10/2007  3
## 1656         10/10/2012  3
## 1657         10/11/2008  3
## 1658         10/11/2011  3
## 1659         10/12/1997  3
## 1660         10/12/2002  3
## 1661         10/12/2012  3
## 1662         11/01/2001  3
## 1663         11/02/2013  3
## 1664         11/03/2014  3
## 1665         11/05/2007  3
## 1666         11/06/1996  3
## 1667         11/06/1999  3
## 1668         11/06/2008  3
## 1669         11/07/1996  3
## 1670         11/07/2005  3
## 1671         11/08/2003  3
## 1672         11/08/2006  3
## 1673         11/08/2010  3
## 1674         11/09/2003  3
## 1675         11/09/2007  3
## 1676         11/10/1999  3
## 1677         11/10/2000  3
## 1678         11/10/2010  3
## 1679         11/11/2004  3
## 1680         11/12/2002  3
## 1681         11/12/2008  3
## 1682         12/01/2004  3
## 1683         12/01/2012  3
## 1684         12/03/2010  3
## 1685         12/03/2013  3
## 1686         12/04/2004  3
## 1687         12/04/2005  3
## 1688         12/05/1999  3
## 1689         12/05/2003  3
## 1690         12/05/2008  3
## 1691         12/07/2000  3
## 1692         12/07/2001  3
## 1693         12/07/2004  3
## 1694         12/07/2005  3
## 1695         12/07/2010  3
## 1696         12/07/2012  3
## 1697         12/08/2003  3
## 1698         12/08/2004  3
## 1699         12/09/2002  3
## 1700         12/10/2011  3
## 1701         12/10/2012  3
## 1702         12/11/1996  3
## 1703         12/11/2013  3
## 1704         12/12/2001  3
## 1705         12/12/2002  3
## 1706         12/12/2012  3
## 1707         13/02/2004  3
## 1708         13/02/2006  3
## 1709         13/02/2014  3
## 1710         13/03/2002  3
## 1711         13/04/1998  3
## 1712         13/04/2005  3
## 1713         13/04/2012  3
## 1714         13/05/1998  3
## 1715         13/05/2008  3
## 1716         13/05/2010  3
## 1717         13/05/2011  3
## 1718         13/06/1996  3
## 1719         13/06/2002  3
## 1720         13/06/2011  3
## 1721         13/07/2001  3
## 1722         13/07/2012  3
## 1723         13/08/1999  3
## 1724         13/08/2010  3
## 1725         13/09/2006  3
## 1726         13/09/2011  3
## 1727         13/09/2012  3
## 1728         13/10/1998  3
## 1729         13/10/2000  3
## 1730         13/10/2003  3
## 1731         13/10/2010  3
## 1732         13/10/2011  3
## 1733         13/11/2006  3
## 1734         13/11/2007  3
## 1735         13/11/2008  3
## 1736         13/12/2007  3
## 1737         14/01/2003  3
## 1738         14/02/2005  3
## 1739         14/02/2012  3
## 1740         14/03/2006  3
## 1741         14/04/2004  3
## 1742         14/06/2010  3
## 1743         14/07/1997  3
## 1744         14/07/2004  3
## 1745         14/07/2006  3
## 1746         14/08/1996  3
## 1747         14/08/1997  3
## 1748         14/08/2002  3
## 1749         14/08/2008  3
## 1750         14/09/1999  3
## 1751         14/11/1997  3
## 1752         14/11/2001  3
## 1753         14/11/2002  3
## 1754         14/11/2012  3
## 1755         14/11/2013  3
## 1756         14/12/2010  3
## 1757         15/01/2008  3
## 1758         15/01/2010  3
## 1759         15/01/2014  3
## 1760         15/02/2000  3
## 1761         15/02/2005  3
## 1762         15/03/2011  3
## 1763         15/04/1999  3
## 1764         15/04/2002  3
## 1765         15/04/2014  3
## 1766         15/05/2014  3
## 1767         15/06/2006  3
## 1768         15/06/2009  3
## 1769         15/06/2010  3
## 1770         15/06/2011  3
## 1771         15/06/2012  3
## 1772         15/07/1996  3
## 1773         15/07/2003  3
## 1774         15/07/2005  3
## 1775         15/07/2008  3
## 1776         15/08/2000  3
## 1777         15/08/2012  3
## 1778         15/09/1997  3
## 1779         15/09/2010  3
## 1780         15/09/2011  3
## 1781         15/10/1998  3
## 1782         15/10/2004  3
## 1783         15/10/2012  3
## 1784         15/10/2013  3
## 1785         15/11/2002  3
## 1786         15/11/2011  3
## 1787         15/12/1997  3
## 1788         15/12/2000  3
## 1789         15/12/2003  3
## 1790         15/12/2008  3
## 1791         16/01/2002  3
## 1792         16/01/2014  3
## 1793         16/02/2012  3
## 1794         16/03/1998  3
## 1795         16/03/2000  3
## 1796         16/03/2001  3
## 1797         16/03/2005  3
## 1798         16/03/2007  3
## 1799         16/05/2000  3
## 1800         16/05/2006  3
## 1801         16/06/2003  3
## 1802         16/06/2008  3
## 1803         16/07/1998  3
## 1804         16/07/2008  3
## 1805         16/07/2010  3
## 1806         16/08/2004  3
## 1807         16/08/2006  3
## 1808         16/08/2010  3
## 1809         16/08/2011  3
## 1810         16/09/1996  3
## 1811         16/09/2011  3
## 1812         16/10/2000  3
## 1813         16/10/2002  3
## 1814         16/10/2003  3
## 1815         16/10/2006  3
## 1816         16/11/2006  3
## 1817         16/12/1999  3
## 1818         16/12/2013  3
## 1819         17/01/2012  3
## 1820         17/02/1997  3
## 1821         17/02/1999  3
## 1822         17/02/2006  3
## 1823         17/02/2010  3
## 1824         17/02/2014  3
## 1825         17/03/2000  3
## 1826         17/03/2006  3
## 1827         17/03/2010  3
## 1828         17/04/2000  3
## 1829         17/04/2003  3
## 1830         17/04/2012  3
## 1831         17/05/2001  3
## 1832         17/05/2005  3
## 1833         17/05/2011  3
## 1834         17/06/2003  3
## 1835         17/07/2000  3
## 1836         17/07/2009  3
## 1837         17/08/1999  3
## 1838         17/08/2000  3
## 1839         17/08/2007  3
## 1840         17/08/2011  3
## 1841         17/08/2012  3
## 1842         17/09/2004  3
## 1843         17/09/2008  3
## 1844         17/10/2002  3
## 1845         17/10/2003  3
## 1846         17/11/1998  3
## 1847         17/11/2004  3
## 1848         17/11/2010  3
## 1849         17/12/2003  3
## 1850         18/01/1999  3
## 1851         18/01/2002  3
## 1852         18/01/2005  3
## 1853         18/01/2013  3
## 1854         18/02/1999  3
## 1855         18/02/2010  3
## 1856         18/04/2001  3
## 1857         18/05/2001  3
## 1858         18/05/2005  3
## 1859         18/05/2006  3
## 1860         18/05/2009  3
## 1861         18/05/2010  3
## 1862         18/06/1997  3
## 1863         18/06/2003  3
## 1864         18/06/2007  3
## 1865         18/06/2013  3
## 1866         18/07/1997  3
## 1867         18/07/2001  3
## 1868         18/07/2003  3
## 1869         18/08/2005  3
## 1870         18/08/2009  3
## 1871         18/09/1998  3
## 1872         18/09/2000  3
## 1873         18/09/2004  3
## 1874         18/09/2009  3
## 1875         18/10/1996  3
## 1876         18/10/2002  3
## 1877         18/11/1997  3
## 1878         18/11/2002  3
## 1879         18/11/2005  3
## 1880         18/11/2008  3
## 1881         18/11/2011  3
## 1882         18/12/1997  3
## 1883         18/12/2006  3
## 1884         18/12/2007  3
## 1885         19/02/2001  3
## 1886         19/02/2003  3
## 1887         19/02/2013  3
## 1888         19/03/2008  3
## 1889         19/04/2001  3
## 1890         19/05/2008  3
## 1891         19/05/2011  3
## 1892         19/06/2002  3
## 1893         19/06/2007  3
## 1894         19/06/2014  3
## 1895         19/07/2007  3
## 1896         19/08/2004  3
## 1897         19/09/2006  3
## 1898         19/09/2012  3
## 1899         19/11/2001  3
## 1900         19/11/2007  3
## 1901         19/11/2009  3
## 1902         19/12/1996  3
## 1903         19/12/2002  3
## 1904         20/01/2005  3
## 1905         20/02/2002  3
## 1906         20/02/2008  3
## 1907         20/02/2013  3
## 1908         20/03/2009  3
## 1909         20/04/1999  3
## 1910         20/05/2004  3
## 1911         20/05/2008  3
## 1912         20/05/2009  3
## 1913         20/06/1996  3
## 1914         20/06/2008  3
## 1915         20/06/2014  3
## 1916         20/07/1999  3
## 1917         20/08/2001  3
## 1918         20/08/2007  3
## 1919         20/09/2000  3
## 1920         20/09/2011  3
## 1921         20/11/1996  3
## 1922         20/11/2000  3
## 1923         20/11/2001  3
## 1924         20/11/2007  3
## 1925         20/12/2002  3
## 1926         20/12/2012  3
## 1927         21/01/1999  3
## 1928         21/01/2003  3
## 1929         21/01/2004  3
## 1930         21/01/2011  3
## 1931         21/02/2001  3
## 1932         21/02/2002  3
## 1933         21/02/2006  3
## 1934         21/03/2006  3
## 1935         21/03/2012  3
## 1936         21/03/2014  3
## 1937         21/04/2009  3
## 1938         21/05/1999  3
## 1939         21/05/2010  3
## 1940         21/06/2010  3
## 1941         21/07/1999  3
## 1942         21/07/2000  3
## 1943         21/07/2010  3
## 1944         21/08/2002  3
## 1945         21/08/2013  3
## 1946         21/09/1998  3
## 1947         21/09/2000  3
## 1948         21/10/1996  3
## 1949         21/10/1997  3
## 1950         21/10/2003  3
## 1951         21/10/2009  3
## 1952         21/10/2010  3
## 1953         21/11/2000  3
## 1954         21/11/2005  3
## 1955         21/12/1998  3
## 1956         21/12/2007  3
## 1957         21/12/2010  3
## 1958         21/12/2012  3
## 1959         22/01/1999  3
## 1960         22/01/2007  3
## 1961         22/01/2008  3
## 1962         22/01/2009  3
## 1963         22/02/2000  3
## 1964         22/03/2006  3
## 1965         22/04/1996  3
## 1966         22/04/2008  3
## 1967         22/04/2010  3
## 1968         22/05/2002  3
## 1969         22/05/2003  3
## 1970         22/05/2012  3
## 1971         22/05/2014  3
## 1972         22/06/1998  3
## 1973         22/06/1999  3
## 1974         22/06/2005  3
## 1975         22/06/2006  3
## 1976         22/07/1998  3
## 1977         22/08/1997  3
## 1978         22/08/2005  3
## 1979         22/08/2013  3
## 1980         22/09/1998  3
## 1981         22/09/2003  3
## 1982         22/09/2004  3
## 1983         22/10/1997  3
## 1984         22/10/2008  3
## 1985         22/11/2010  3
## 1986         22/11/2011  3
## 1987         22/12/2010  3
## 1988         23/01/2002  3
## 1989         23/01/2013  3
## 1990         23/02/2004  3
## 1991         23/02/2009  3
## 1992         23/03/2004  3
## 1993         23/03/2005  3
## 1994         23/03/2007  3
## 1995         23/04/1999  3
## 1996         23/04/2003  3
## 1997         23/04/2007  3
## 1998         23/04/2012  3
## 1999         23/05/1997  3
## 2000         23/05/2003  3
## 2001         23/05/2006  3
## 2002         23/06/1999  3
## 2003         23/07/1997  3
## 2004         23/08/2002  3
## 2005         23/08/2006  3
## 2006         23/08/2011  3
## 2007         23/09/1998  3
## 2008         23/09/2003  3
## 2009         23/09/2004  3
## 2010         23/09/2011  3
## 2011         23/10/2003  3
## 2012         23/10/2007  3
## 2013         24/01/2001  3
## 2014         24/01/2011  3
## 2015         24/03/1998  3
## 2016         24/03/2003  3
## 2017         24/04/2001  3
## 2018         24/04/2002  3
## 2019         24/04/2006  3
## 2020         24/04/2012  3
## 2021         24/04/2014  3
## 2022         24/05/1996  3
## 2023         24/05/2001  3
## 2024         24/05/2005  3
## 2025         24/05/2006  3
## 2026         24/05/2011  3
## 2027         24/06/2004  3
## 2028         24/06/2008  3
## 2029         24/07/2007  3
## 2030         24/07/2008  3
## 2031         24/08/2004  3
## 2032         24/08/2009  3
## 2033         24/09/1996  3
## 2034         24/09/2001  3
## 2035         24/09/2007  3
## 2036         24/11/1997  3
## 2037         24/11/1999  3
## 2038         24/11/2003  3
## 2039         24/11/2008  3
## 2040         24/11/2010  3
## 2041         25/01/1999  3
## 2042         25/01/2001  3
## 2043         25/01/2005  3
## 2044         25/01/2006  3
## 2045         25/01/2007  3
## 2046         25/02/1998  3
## 2047         25/02/2005  3
## 2048         25/02/2009  3
## 2049         25/02/2014  3
## 2050         25/03/2009  3
## 2051         25/03/2014  3
## 2052         25/04/2001  3
## 2053         25/04/2003  3
## 2054         25/04/2005  3
## 2055         25/05/1999  3
## 2056         25/05/2010  3
## 2057         25/05/2011  3
## 2058         25/06/1997  3
## 2059         25/07/1996  3
## 2060         25/07/1997  3
## 2061         25/07/2013  3
## 2062         25/08/2010  3
## 2063         25/09/1998  3
## 2064         25/09/2006  3
## 2065         25/10/2004  3
## 2066         25/11/1996  3
## 2067         26/01/1999  3
## 2068         26/01/2006  3
## 2069         26/01/2010  3
## 2070         26/02/2007  3
## 2071         26/02/2008  3
## 2072         26/03/2007  3
## 2073         26/04/2005  3
## 2074         26/06/2002  3
## 2075         26/06/2007  3
## 2076         26/06/2013  3
## 2077         26/07/2001  3
## 2078         26/08/2002  3
## 2079         26/08/2010  3
## 2080         26/08/2011  3
## 2081         26/09/2007  3
## 2082         26/09/2011  3
## 2083         26/10/1999  3
## 2084         26/10/2010  3
## 2085         26/12/2002  3
## 2086         27/01/1999  3
## 2087         27/01/2000  3
## 2088         27/02/1997  3
## 2089         27/02/2006  3
## 2090         27/03/1997  3
## 2091         27/03/2000  3
## 2092         27/03/2001  3
## 2093         27/03/2003  3
## 2094         27/04/1999  3
## 2095         27/04/2004  3
## 2096         27/05/1999  3
## 2097         27/06/2012  3
## 2098         27/07/2006  3
## 2099         27/08/1996  3
## 2100         27/08/1999  3
## 2101         27/08/2001  3
## 2102         27/08/2002  3
## 2103         27/08/2013  3
## 2104         27/09/2001  3
## 2105         27/10/1998  3
## 2106         27/10/1999  3
## 2107         27/10/2005  3
## 2108         27/11/2013  3
## 2109         27/12/1996  3
## 2110         27/12/2000  3
## 2111         28/01/1999  3
## 2112         28/01/2000  3
## 2113         28/01/2004  3
## 2114         28/01/2014  3
## 2115         28/02/2002  3
## 2116         28/02/2007  3
## 2117         28/03/2002  3
## 2118         28/03/2003  3
## 2119         28/03/2007  3
## 2120         28/03/2013  3
## 2121         28/04/2009  3
## 2122         28/05/2002  3
## 2123         28/05/2003  3
## 2124         28/05/2009  3
## 2125         28/05/2014  3
## 2126         28/06/2000  3
## 2127         28/06/2005  3
## 2128         28/06/2006  3
## 2129         28/06/2010  3
## 2130         28/06/2012  3
## 2131         28/07/2003  3
## 2132         28/07/2009  3
## 2133         28/08/2000  3
## 2134         28/08/2008  3
## 2135         28/09/1998  3
## 2136         28/09/2000  3
## 2137         28/10/2010  3
## 2138         28/10/2011  3
## 2139         28/11/2011  3
## 2140         29/02/2012  3
## 2141         29/03/2005  3
## 2142         29/03/2006  3
## 2143         29/04/1997  3
## 2144         29/04/2013  3
## 2145         29/04/2014  3
## 2146         29/05/1996  3
## 2147         29/05/2001  3
## 2148         29/05/2013  3
## 2149         29/07/1998  3
## 2150         29/07/1999  3
## 2151         29/08/1997  3
## 2152         29/08/2002  3
## 2153         29/08/2012  3
## 2154         29/08/2013  3
## 2155         29/09/2000  3
## 2156         29/09/2004  3
## 2157         29/09/2011  3
## 2158         29/10/2001  3
## 2159         29/10/2008  3
## 2160         29/10/2013  3
## 2161         29/11/2001  3
## 2162         29/12/1998  3
## 2163         29/12/1999  3
## 2164         30/01/2012  3
## 2165         30/01/2013  3
## 2166         30/03/2001  3
## 2167         30/03/2005  3
## 2168         30/03/2007  3
## 2169         30/03/2012  3
## 2170         30/04/2002  3
## 2171         30/04/2003  3
## 2172         30/05/2001  3
## 2173         30/06/2004  3
## 2174         30/06/2014  3
## 2175         30/07/1999  3
## 2176         30/07/2004  3
## 2177         30/08/1999  3
## 2178         30/08/2002  3
## 2179         30/09/1998  3
## 2180         30/09/2005  3
## 2181         30/09/2009  3
## 2182         30/10/1996  3
## 2183         30/10/2001  3
## 2184         30/10/2008  3
## 2185         30/10/2012  3
## 2186         30/11/2011  3
## 2187         30/11/2012  3
## 2188         30/12/1997  3
## 2189         30/12/2003  3
## 2190         31/01/2001  3
## 2191         31/01/2005  3
## 2192         31/01/2006  3
## 2193         31/03/1997  3
## 2194         31/03/1999  3
## 2195         31/03/2008  3
## 2196         31/05/1996  3
## 2197         31/05/2011  3
## 2198         31/08/1998  3
## 2199         31/08/1999  3
## 2200         31/08/2000  3
## 2201         31/08/2004  3
## 2202         31/08/2007  3
## 2203         31/10/2002  3
## 2204         31/10/2005  3
## 2205         31/10/2006  3
## 2206         31/10/2012  3
## 2207         31/12/1996  3
## 2208         31/12/1997  3
## 2209         31/12/2008  3
## 2210         01/02/1999  2
## 2211         01/02/2001  2
## 2212         01/02/2005  2
## 2213         01/02/2008  2
## 2214         01/02/2013  2
## 2215         01/03/2004  2
## 2216         01/03/2013  2
## 2217         01/04/2002  2
## 2218         01/04/2004  2
## 2219         01/04/2010  2
## 2220         01/04/2011  2
## 2221         01/04/2014  2
## 2222         01/05/2000  2
## 2223         01/05/2003  2
## 2224         01/06/2001  2
## 2225         01/06/2005  2
## 2226         01/06/2006  2
## 2227         01/06/2007  2
## 2228         01/06/2011  2
## 2229         01/07/1996  2
## 2230         01/07/2002  2
## 2231         01/07/2005  2
## 2232         01/07/2008  2
## 2233         01/07/2011  2
## 2234         01/08/2000  2
## 2235         01/08/2001  2
## 2236         01/08/2005  2
## 2237         01/08/2011  2
## 2238         01/08/2012  2
## 2239         01/08/2013  2
## 2240         01/09/2000  2
## 2241         01/10/1996  2
## 2242         01/10/1998  2
## 2243         01/10/1999  2
## 2244         01/10/2001  2
## 2245         01/10/2008  2
## 2246         01/11/1996  2
## 2247         01/11/2000  2
## 2248         01/11/2002  2
## 2249         01/11/2004  2
## 2250         01/11/2010  2
## 2251         01/12/1997  2
## 2252         01/12/2008  2
## 2253         01/12/2011  2
## 2254         02/01/2007  2
## 2255         02/01/2008  2
## 2256         02/01/2013  2
## 2257         02/02/1998  2
## 2258         02/02/2001  2
## 2259         02/02/2012  2
## 2260         02/03/1999  2
## 2261         02/03/2004  2
## 2262         02/03/2005  2
## 2263         02/03/2011  2
## 2264         02/05/2001  2
## 2265         02/05/2011  2
## 2266         02/05/2013  2
## 2267         02/05/2014  2
## 2268         02/06/1998  2
## 2269         02/07/1996  2
## 2270         02/07/2010  2
## 2271         02/08/2000  2
## 2272         02/08/2006  2
## 2273         02/08/2011  2
## 2274         02/09/2004  2
## 2275         02/09/2009  2
## 2276         02/10/2000  2
## 2277         02/10/2001  2
## 2278         02/10/2003  2
## 2279         02/10/2007  2
## 2280         02/10/2012  2
## 2281         02/11/1998  2
## 2282         02/11/2009  2
## 2283         02/11/2010  2
## 2284         02/11/2012  2
## 2285         02/12/2004  2
## 2286         02/12/2010  2
## 2287         03/01/1997  2
## 2288         03/01/2001  2
## 2289         03/01/2005  2
## 2290         03/01/2007  2
## 2291         03/01/2011  2
## 2292         03/01/2012  2
## 2293         03/02/2000  2
## 2294         03/02/2005  2
## 2295         03/02/2012  2
## 2296         03/03/2003  2
## 2297         03/04/1998  2
## 2298         03/04/2012  2
## 2299         03/05/1999  2
## 2300         03/05/2013  2
## 2301         03/06/1998  2
## 2302         03/06/2002  2
## 2303         03/06/2003  2
## 2304         03/07/2003  2
## 2305         03/07/2004  2
## 2306         03/08/2000  2
## 2307         03/08/2001  2
## 2308         03/08/2007  2
## 2309         03/09/1996  2
## 2310         03/09/2008  2
## 2311         03/09/2010  2
## 2312         03/10/2002  2
## 2313         03/10/2011  2
## 2314         03/11/1999  2
## 2315         03/11/2000  2
## 2316         03/11/2008  2
## 2317         03/11/2009  2
## 2318         03/12/2003  2
## 2319         03/12/2004  2
## 2320         03/12/2005  2
## 2321         03/12/2009  2
## 2322         03/12/2012  2
## 2323         04/01/2001  2
## 2324         04/01/2008  2
## 2325         04/02/1997  2
## 2326         04/02/2011  2
## 2327         04/03/1997  2
## 2328         04/03/2010  2
## 2329         04/03/2013  2
## 2330         04/04/1997  2
## 2331         04/04/2000  2
## 2332         04/04/2007  2
## 2333         04/05/1998  2
## 2334         04/05/2001  2
## 2335         04/05/2012  2
## 2336         04/06/2008  2
## 2337         04/06/2010  2
## 2338         04/07/2006  2
## 2339         04/08/2006  2
## 2340         04/08/2008  2
## 2341         04/08/2009  2
## 2342         04/08/2011  2
## 2343         04/09/1996  2
## 2344         04/09/2003  2
## 2345         04/09/2004  2
## 2346         04/10/2004  2
## 2347         04/10/2010  2
## 2348         04/11/1996  2
## 2349         04/11/1998  2
## 2350         04/11/2006  2
## 2351         04/11/2008  2
## 2352         04/12/1996  2
## 2353         04/12/1997  2
## 2354         04/12/1998  2
## 2355         05/01/2007  2
## 2356         05/01/2010  2
## 2357         05/02/2001  2
## 2358         05/02/2002  2
## 2359         05/03/1997  2
## 2360         05/03/1999  2
## 2361         05/03/2001  2
## 2362         05/03/2003  2
## 2363         05/03/2012  2
## 2364         05/04/2006  2
## 2365         05/05/1997  2
## 2366         05/05/1998  2
## 2367         05/05/2014  2
## 2368         05/06/1996  2
## 2369         05/06/2003  2
## 2370         05/06/2012  2
## 2371         05/06/2014  2
## 2372         05/07/1996  2
## 2373         05/07/2000  2
## 2374         05/07/2013  2
## 2375         05/08/1997  2
## 2376         05/08/1999  2
## 2377         05/09/1997  2
## 2378         05/09/2007  2
## 2379         05/09/2012  2
## 2380         05/10/2005  2
## 2381         05/11/1999  2
## 2382         05/11/2012  2
## 2383         05/12/1996  2
## 2384         05/12/1997  2
## 2385         05/12/2005  2
## 2386         06/01/2003  2
## 2387         06/01/2004  2
## 2388         06/01/2009  2
## 2389         06/01/2011  2
## 2390         06/02/1998  2
## 2391         06/03/2009  2
## 2392         06/04/2000  2
## 2393         06/04/2009  2
## 2394         06/04/2011  2
## 2395         06/05/2005  2
## 2396         06/05/2013  2
## 2397         06/06/2001  2
## 2398         06/06/2005  2
## 2399         06/06/2013  2
## 2400         06/06/2014  2
## 2401         06/07/2001  2
## 2402         06/07/2004  2
## 2403         06/07/2006  2
## 2404         06/07/2007  2
## 2405         06/07/2010  2
## 2406         06/08/1997  2
## 2407         06/08/2003  2
## 2408         06/08/2004  2
## 2409         06/08/2008  2
## 2410         06/08/2009  2
## 2411         06/08/2010  2
## 2412         06/08/2012  2
## 2413         06/09/2007  2
## 2414         06/11/2001  2
## 2415         06/11/2003  2
## 2416         06/11/2013  2
## 2417         06/12/2005  2
## 2418         06/12/2006  2
## 2419         06/12/2010  2
## 2420         06/12/2012  2
## 2421         07/01/2008  2
## 2422         07/01/2009  2
## 2423         07/01/2014  2
## 2424         07/02/1997  2
## 2425         07/02/2001  2
## 2426         07/02/2003  2
## 2427         07/02/2008  2
## 2428         07/02/2011  2
## 2429         07/03/2011  2
## 2430         07/03/2012  2
## 2431         07/04/1997  2
## 2432         07/04/2008  2
## 2433         07/04/2010  2
## 2434         07/05/1997  2
## 2435         07/05/2001  2
## 2436         07/05/2003  2
## 2437         07/05/2004  2
## 2438         07/06/2000  2
## 2439         07/06/2002  2
## 2440         07/06/2011  2
## 2441         07/07/2010  2
## 2442         07/07/2011  2
## 2443         07/08/1997  2
## 2444         07/08/2000  2
## 2445         07/08/2008  2
## 2446         07/09/2004  2
## 2447         07/09/2010  2
## 2448         07/10/2003  2
## 2449         07/10/2011  2
## 2450         07/11/1996  2
## 2451         07/11/2005  2
## 2452         07/11/2006  2
## 2453         07/11/2011  2
## 2454         07/11/2012  2
## 2455         07/12/1998  2
## 2456         07/12/2006  2
## 2457         07/12/2009  2
## 2458         08/01/1997  2
## 2459         08/01/2003  2
## 2460         08/01/2008  2
## 2461         08/02/1999  2
## 2462         08/02/2000  2
## 2463         08/02/2007  2
## 2464         08/02/2012  2
## 2465         08/03/1999  2
## 2466         08/03/2000  2
## 2467         08/03/2006  2
## 2468         08/03/2010  2
## 2469         08/03/2011  2
## 2470         08/04/1996  2
## 2471         08/04/2005  2
## 2472         08/05/2001  2
## 2473         08/05/2002  2
## 2474         08/06/2004  2
## 2475         08/06/2009  2
## 2476         08/06/2011  2
## 2477         08/06/2012  2
## 2478         08/07/1998  2
## 2479         08/07/2011  2
## 2480         08/08/1996  2
## 2481         08/08/2006  2
## 2482         08/08/2007  2
## 2483         08/08/2012  2
## 2484         08/09/2008  2
## 2485         08/09/2010  2
## 2486         08/10/2004  2
## 2487         08/10/2008  2
## 2488         08/10/2009  2
## 2489         08/12/1997  2
## 2490         08/12/2000  2
## 2491         08/12/2005  2
## 2492         08/12/2008  2
## 2493         08/12/2010  2
## 2494         08/12/2011  2
## 2495         09/01/2001  2
## 2496         09/01/2006  2
## 2497         09/01/2007  2
## 2498         09/01/2012  2
## 2499         09/02/2005  2
## 2500         09/03/2010  2
## 2501         09/03/2012  2
## 2502         09/04/1999  2
## 2503         09/04/2001  2
## 2504         09/04/2009  2
## 2505         09/05/2003  2
## 2506         09/05/2007  2
## 2507         09/06/1998  2
## 2508         09/06/2003  2
## 2509         09/06/2008  2
## 2510         09/06/2010  2
## 2511         09/06/2011  2
## 2512         09/06/2014  2
## 2513         09/07/1996  2
## 2514         09/07/1998  2
## 2515         09/07/2007  2
## 2516         09/07/2012  2
## 2517         09/08/2010  2
## 2518         09/08/2011  2
## 2519         09/08/2012  2
## 2520         09/09/1996  2
## 2521         09/09/2009  2
## 2522         09/10/2002  2
## 2523         09/10/2006  2
## 2524         09/10/2013  2
## 2525         09/11/2004  2
## 2526         09/12/1996  2
## 2527         09/12/1999  2
## 2528         09/12/2002  2
## 2529         09/12/2010  2
## 2530         09/12/2013  2
## 2531         10/01/1997  2
## 2532         10/01/2000  2
## 2533         10/01/2002  2
## 2534         10/01/2006  2
## 2535         10/01/2013  2
## 2536         10/02/2004  2
## 2537         10/03/2000  2
## 2538         10/03/2004  2
## 2539         10/03/2011  2
## 2540         10/05/2005  2
## 2541         10/05/2011  2
## 2542         10/06/1997  2
## 2543         10/06/2002  2
## 2544         10/06/2005  2
## 2545         10/06/2010  2
## 2546         10/06/2013  2
## 2547         10/07/1996  2
## 2548         10/07/2008  2
## 2549         10/07/2009  2
## 2550         10/07/2012  2
## 2551         10/08/1999  2
## 2552         10/08/2001  2
## 2553         10/08/2009  2
## 2554         10/09/1997  2
## 2555         10/09/2001  2
## 2556         10/09/2003  2
## 2557         10/09/2009  2
## 2558         10/09/2012  2
## 2559         10/10/1996  2
## 2560         10/10/2002  2
## 2561         10/10/2005  2
## 2562         10/10/2006  2
## 2563         10/10/2011  2
## 2564         10/10/2013  2
## 2565         10/11/1997  2
## 2566         10/11/2000  2
## 2567         10/11/2003  2
## 2568         10/11/2004  2
## 2569         10/12/1996  2
## 2570         10/12/2003  2
## 2571         10/12/2004  2
## 2572         10/12/2007  2
## 2573         10/12/2009  2
## 2574         10/12/2010  2
## 2575         10/12/2013  2
## 2576         11/01/2007  2
## 2577         11/01/2011  2
## 2578         11/01/2012  2
## 2579         11/02/2009  2
## 2580         11/02/2011  2
## 2581         11/03/2009  2
## 2582         11/03/2013  2
## 2583         11/04/1996  2
## 2584         11/04/2001  2
## 2585         11/06/1997  2
## 2586         11/06/1998  2
## 2587         11/06/2003  2
## 2588         11/06/2007  2
## 2589         11/06/2009  2
## 2590         11/07/2007  2
## 2591         11/07/2012  2
## 2592         11/08/1997  2
## 2593         11/08/2004  2
## 2594         11/08/2008  2
## 2595         11/08/2009  2
## 2596         11/09/2009  2
## 2597         11/09/2012  2
## 2598         11/10/2001  2
## 2599         11/10/2002  2
## 2600         11/10/2004  2
## 2601         11/10/2006  2
## 2602         11/10/2011  2
## 2603         11/11/2002  2
## 2604         11/11/2003  2
## 2605         11/12/1996  2
## 2606         11/12/1998  2
## 2607         12/01/2001  2
## 2608         12/01/2009  2
## 2609         12/01/2010  2
## 2610         12/02/1997  2
## 2611         12/02/2003  2
## 2612         12/02/2004  2
## 2613         12/02/2007  2
## 2614         12/02/2008  2
## 2615         12/02/2009  2
## 2616         12/03/2003  2
## 2617         12/03/2014  2
## 2618         12/04/2002  2
## 2619         12/04/2006  2
## 2620         12/04/2011  2
## 2621         12/05/2004  2
## 2622         12/05/2006  2
## 2623         12/05/2009  2
## 2624         12/06/1998  2
## 2625         12/06/2000  2
## 2626         12/06/2012  2
## 2627         12/07/2007  2
## 2628         12/08/1998  2
## 2629         12/08/2010  2
## 2630         12/09/2001  2
## 2631         12/09/2005  2
## 2632         12/09/2006  2
## 2633         12/09/2011  2
## 2634         12/10/2007  2
## 2635         12/10/2010  2
## 2636         12/11/2003  2
## 2637         12/11/2004  2
## 2638         12/11/2007  2
## 2639         12/12/2007  2
## 2640         12/12/2011  2
## 2641         13/01/1998  2
## 2642         13/01/2009  2
## 2643         13/01/2011  2
## 2644         13/01/2012  2
## 2645         13/02/2001  2
## 2646         13/03/2006  2
## 2647         13/04/1999  2
## 2648         13/04/2006  2
## 2649         13/04/2010  2
## 2650         13/04/2011  2
## 2651         13/05/1997  2
## 2652         13/05/2003  2
## 2653         13/06/2008  2
## 2654         13/06/2012  2
## 2655         13/06/2014  2
## 2656         13/07/2004  2
## 2657         13/07/2006  2
## 2658         13/08/1998  2
## 2659         13/08/2007  2
## 2660         13/08/2013  2
## 2661         13/09/2002  2
## 2662         13/09/2007  2
## 2663         13/10/2006  2
## 2664         13/10/2008  2
## 2665         13/10/2009  2
## 2666         13/11/1998  2
## 2667         13/11/2002  2
## 2668         13/11/2003  2
## 2669         13/12/2004  2
## 2670         13/12/2011  2
## 2671         14/01/1997  2
## 2672         14/01/1998  2
## 2673         14/01/2000  2
## 2674         14/01/2005  2
## 2675         14/02/2008  2
## 2676         14/03/1997  2
## 2677         14/03/2002  2
## 2678         14/03/2008  2
## 2679         14/04/1999  2
## 2680         14/04/2000  2
## 2681         14/04/2003  2
## 2682         14/04/2005  2
## 2683         14/05/2004  2
## 2684         14/05/2008  2
## 2685         14/05/2009  2
## 2686         14/06/1996  2
## 2687         14/06/2000  2
## 2688         14/06/2004  2
## 2689         14/06/2007  2
## 2690         14/06/2011  2
## 2691         14/06/2012  2
## 2692         14/07/1998  2
## 2693         14/07/2003  2
## 2694         14/07/2009  2
## 2695         14/07/2011  2
## 2696         14/08/2001  2
## 2697         14/08/2003  2
## 2698         14/08/2009  2
## 2699         14/09/2001  2
## 2700         14/09/2007  2
## 2701         14/09/2009  2
## 2702         14/10/1999  2
## 2703         14/10/2002  2
## 2704         14/11/2000  2
## 2705         14/11/2006  2
## 2706         14/11/2008  2
## 2707         14/11/2011  2
## 2708         14/12/1999  2
## 2709         14/12/2004  2
## 2710         14/12/2005  2
## 2711         14/12/2006  2
## 2712         14/12/2009  2
## 2713         15/01/2003  2
## 2714         15/01/2004  2
## 2715         15/01/2013  2
## 2716         15/02/2002  2
## 2717         15/02/2008  2
## 2718         15/02/2010  2
## 2719         15/02/2011  2
## 2720         15/03/2000  2
## 2721         15/03/2001  2
## 2722         15/03/2007  2
## 2723         15/03/2012  2
## 2724         15/04/1997  2
## 2725         15/04/2003  2
## 2726         15/04/2005  2
## 2727         15/04/2008  2
## 2728         15/04/2011  2
## 2729         15/04/2013  2
## 2730         15/05/2003  2
## 2731         15/06/2004  2
## 2732         15/06/2005  2
## 2733         15/07/2002  2
## 2734         15/07/2011  2
## 2735         15/08/2002  2
## 2736         15/08/2007  2
## 2737         15/08/2008  2
## 2738         15/11/1996  2
## 2739         15/11/2004  2
## 2740         15/11/2007  2
## 2741         15/12/1998  2
## 2742         15/12/1999  2
## 2743         15/12/2005  2
## 2744         15/12/2010  2
## 2745         16/01/2003  2
## 2746         16/01/2007  2
## 2747         16/01/2008  2
## 2748         16/01/2009  2
## 2749         16/02/1999  2
## 2750         16/02/2010  2
## 2751         16/03/2009  2
## 2752         16/03/2010  2
## 2753         16/04/2008  2
## 2754         16/04/2010  2
## 2755         16/04/2013  2
## 2756         16/05/2001  2
## 2757         16/05/2002  2
## 2758         16/05/2003  2
## 2759         16/05/2005  2
## 2760         16/05/2008  2
## 2761         16/05/2012  2
## 2762         16/06/1998  2
## 2763         16/06/2010  2
## 2764         16/07/1996  2
## 2765         16/07/1997  2
## 2766         16/07/2002  2
## 2767         16/07/2004  2
## 2768         16/07/2009  2
## 2769         16/08/2013  2
## 2770         16/09/1999  2
## 2771         16/09/2005  2
## 2772         16/10/1998  2
## 2773         16/10/2005  2
## 2774         16/10/2007  2
## 2775         16/10/2008  2
## 2776         16/10/2012  2
## 2777         16/11/1999  2
## 2778         16/11/2000  2
## 2779         16/11/2001  2
## 2780         16/11/2007  2
## 2781         16/11/2009  2
## 2782         16/11/2012  2
## 2783         16/12/1996  2
## 2784         16/12/2005  2
## 2785         16/12/2010  2
## 2786         17/01/1997  2
## 2787         17/01/2003  2
## 2788         17/01/2013  2
## 2789         17/02/1998  2
## 2790         17/02/2005  2
## 2791         17/03/1998  2
## 2792         17/03/2004  2
## 2793         17/04/1996  2
## 2794         17/04/2007  2
## 2795         17/04/2009  2
## 2796         17/05/1999  2
## 2797         17/06/2004  2
## 2798         17/06/2008  2
## 2799         17/06/2011  2
## 2800         17/06/2013  2
## 2801         17/07/1997  2
## 2802         17/07/1998  2
## 2803         17/07/2004  2
## 2804         17/07/2007  2
## 2805         17/08/1998  2
## 2806         17/08/2004  2
## 2807         17/08/2009  2
## 2808         17/09/2007  2
## 2809         17/10/1997  2
## 2810         17/10/2006  2
## 2811         17/10/2007  2
## 2812         17/10/2008  2
## 2813         17/10/2011  2
## 2814         17/10/2012  2
## 2815         17/11/1997  2
## 2816         17/11/2006  2
## 2817         17/11/2008  2
## 2818         17/11/2009  2
## 2819         17/12/1999  2
## 2820         17/12/2007  2
## 2821         17/12/2008  2
## 2822         17/12/2012  2
## 2823         18/01/2012  2
## 2824         18/02/2005  2
## 2825         18/03/1997  2
## 2826         18/03/1998  2
## 2827         18/03/1999  2
## 2828         18/03/2008  2
## 2829         18/03/2011  2
## 2830         18/03/2013  2
## 2831         18/04/2005  2
## 2832         18/04/2008  2
## 2833         18/04/2011  2
## 2834         18/05/2012  2
## 2835         18/06/1998  2
## 2836         18/06/2001  2
## 2837         18/06/2002  2
## 2838         18/07/2000  2
## 2839         18/07/2011  2
## 2840         18/07/2012  2
## 2841         18/08/1998  2
## 2842         18/08/2010  2
## 2843         18/08/2011  2
## 2844         18/09/1996  2
## 2845         18/09/1997  2
## 2846         18/09/2013  2
## 2847         18/10/1999  2
## 2848         18/10/2004  2
## 2849         18/10/2011  2
## 2850         18/12/2003  2
## 2851         19/01/1999  2
## 2852         19/01/2001  2
## 2853         19/01/2010  2
## 2854         19/01/2012  2
## 2855         19/02/1998  2
## 2856         19/02/2002  2
## 2857         19/02/2004  2
## 2858         19/02/2008  2
## 2859         19/03/1998  2
## 2860         19/03/2010  2
## 2861         19/03/2012  2
## 2862         19/04/1999  2
## 2863         19/04/2000  2
## 2864         19/04/2002  2
## 2865         19/04/2005  2
## 2866         19/04/2006  2
## 2867         19/04/2011  2
## 2868         19/04/2012  2
## 2869         19/05/1998  2
## 2870         19/05/2010  2
## 2871         19/06/1996  2
## 2872         19/06/2000  2
## 2873         19/06/2003  2
## 2874         19/06/2008  2
## 2875         19/07/2005  2
## 2876         19/07/2011  2
## 2877         19/08/1996  2
## 2878         19/08/1997  2
## 2879         19/08/2008  2
## 2880         19/08/2009  2
## 2881         19/08/2011  2
## 2882         19/09/2001  2
## 2883         19/09/2002  2
## 2884         19/09/2005  2
## 2885         19/09/2013  2
## 2886         19/10/2000  2
## 2887         19/10/2006  2
## 2888         19/10/2010  2
## 2889         19/11/1997  2
## 2890         19/11/1998  2
## 2891         19/11/1999  2
## 2892         19/11/2002  2
## 2893         19/11/2004  2
## 2894         19/11/2008  2
## 2895         19/12/2003  2
## 2896         19/12/2005  2
## 2897         19/12/2009  2
## 2898         19/12/2012  2
## 2899         20/01/2000  2
## 2900         20/01/2003  2
## 2901         20/01/2006  2
## 2902         20/03/2007  2
## 2903         20/03/2013  2
## 2904         20/04/2001  2
## 2905         20/04/2007  2
## 2906         20/05/1998  2
## 2907         20/05/2005  2
## 2908         20/05/2014  2
## 2909         20/06/1997  2
## 2910         20/06/2003  2
## 2911         20/06/2011  2
## 2912         20/06/2012  2
## 2913         20/07/2009  2
## 2914         20/08/1997  2
## 2915         20/08/2002  2
## 2916         20/08/2010  2
## 2917         20/08/2013  2
## 2918         20/10/2003  2
## 2919         20/10/2005  2
## 2920         20/10/2008  2
## 2921         20/10/2011  2
## 2922         20/11/1998  2
## 2923         20/11/2002  2
## 2924         20/11/2003  2
## 2925         20/11/2006  2
## 2926         20/11/2012  2
## 2927         20/12/1999  2
## 2928         20/12/2001  2
## 2929         21/01/2005  2
## 2930         21/02/2007  2
## 2931         21/02/2011  2
## 2932         21/03/2005  2
## 2933         21/03/2011  2
## 2934         21/04/1996  2
## 2935         21/04/2001  2
## 2936         21/04/2006  2
## 2937         21/05/2002  2
## 2938         21/05/2003  2
## 2939         21/05/2012  2
## 2940         21/06/1999  2
## 2941         21/06/2000  2
## 2942         21/06/2006  2
## 2943         21/07/2003  2
## 2944         21/07/2009  2
## 2945         21/08/1997  2
## 2946         21/08/1998  2
## 2947         21/09/1999  2
## 2948         21/10/1998  2
## 2949         21/10/1999  2
## 2950         21/10/2002  2
## 2951         21/10/2008  2
## 2952         21/10/2011  2
## 2953         21/11/2002  2
## 2954         21/11/2003  2
## 2955         21/11/2011  2
## 2956         21/12/2006  2
## 2957         21/12/2009  2
## 2958         22/02/2008  2
## 2959         22/02/2011  2
## 2960         22/03/2001  2
## 2961         22/03/2002  2
## 2962         22/03/2005  2
## 2963         22/03/2007  2
## 2964         22/03/2013  2
## 2965         22/04/1998  2
## 2966         22/04/2013  2
## 2967         22/05/2001  2
## 2968         22/06/2007  2
## 2969         22/06/2011  2
## 2970         22/07/2005  2
## 2971         22/07/2009  2
## 2972         22/08/2006  2
## 2973         22/08/2008  2
## 2974         22/09/2005  2
## 2975         22/09/2006  2
## 2976         22/09/2011  2
## 2977         22/10/2007  2
## 2978         22/11/1996  2
## 2979         22/11/2006  2
## 2980         22/12/1997  2
## 2981         22/12/1999  2
## 2982         22/12/2006  2
## 2983         23/01/2006  2
## 2984         23/01/2008  2
## 2985         23/01/2009  2
## 2986         23/01/2012  2
## 2987         23/02/2011  2
## 2988         23/03/2011  2
## 2989         23/04/1998  2
## 2990         23/05/2011  2
## 2991         23/06/1997  2
## 2992         23/06/1998  2
## 2993         23/06/2010  2
## 2994         23/06/2014  2
## 2995         23/07/2003  2
## 2996         23/07/2004  2
## 2997         23/08/2000  2
## 2998         23/09/1999  2
## 2999         23/09/2008  2
## 3000         23/09/2009  2
## 3001         23/10/2008  2
## 3002         23/10/2009  2
## 3003         23/11/1998  2
## 3004         23/11/2009  2
## 3005         23/12/1996  2
## 3006         23/12/2003  2
## 3007         24/01/2002  2
## 3008         24/01/2007  2
## 3009         24/01/2013  2
## 3010         24/02/1998  2
## 3011         24/02/2006  2
## 3012         24/02/2009  2
## 3013         24/02/2010  2
## 3014         24/02/2014  2
## 3015         24/03/2009  2
## 3016         24/03/2010  2
## 3017         24/04/1996  2
## 3018         24/04/2007  2
## 3019         24/04/2013  2
## 3020         24/05/2000  2
## 3021         24/05/2013  2
## 3022         24/06/2003  2
## 3023         24/06/2005  2
## 3024         24/07/2003  2
## 3025         24/07/2004  2
## 3026         24/07/2009  2
## 3027         24/08/1998  2
## 3028         24/09/1997  2
## 3029         24/09/2009  2
## 3030         24/10/2000  2
## 3031         24/10/2002  2
## 3032         24/11/1998  2
## 3033         25/01/2013  2
## 3034         25/02/1997  2
## 3035         25/02/2008  2
## 3036         25/03/2002  2
## 3037         25/03/2010  2
## 3038         25/04/2000  2
## 3039         25/04/2008  2
## 3040         25/04/2011  2
## 3041         25/04/2012  2
## 3042         25/04/2013  2
## 3043         25/05/2000  2
## 3044         25/05/2001  2
## 3045         25/05/2004  2
## 3046         25/06/2004  2
## 3047         25/06/2010  2
## 3048         25/07/2002  2
## 3049         25/07/2007  2
## 3050         25/08/1998  2
## 3051         25/08/2006  2
## 3052         25/08/2009  2
## 3053         25/09/2001  2
## 3054         25/09/2007  2
## 3055         25/09/2009  2
## 3056         25/09/2012  2
## 3057         25/10/1999  2
## 3058         25/10/2000  2
## 3059         25/10/2007  2
## 3060         25/10/2010  2
## 3061         25/10/2011  2
## 3062         25/10/2012  2
## 3063         25/10/2013  2
## 3064         25/11/2002  2
## 3065         26/01/2000  2
## 3066         26/02/1997  2
## 3067         26/02/1999  2
## 3068         26/02/2002  2
## 3069         26/02/2009  2
## 3070         26/02/2013  2
## 3071         26/03/1999  2
## 3072         26/03/2003  2
## 3073         26/03/2008  2
## 3074         26/03/2009  2
## 3075         26/03/2013  2
## 3076         26/04/2001  2
## 3077         26/05/1999  2
## 3078         26/05/2000  2
## 3079         26/05/2004  2
## 3080         26/05/2005  2
## 3081         26/05/2006  2
## 3082         26/05/2009  2
## 3083         26/05/2011  2
## 3084         26/06/2008  2
## 3085         26/07/2004  2
## 3086         26/07/2005  2
## 3087         26/07/2012  2
## 3088         26/08/1998  2
## 3089         26/08/2008  2
## 3090         26/09/2001  2
## 3091         26/09/2003  2
## 3092         26/09/2005  2
## 3093         26/09/2013  2
## 3094         26/10/1998  2
## 3095         26/10/2001  2
## 3096         26/10/2005  2
## 3097         26/11/1997  2
## 3098         26/11/2012  2
## 3099         27/01/2005  2
## 3100         27/01/2006  2
## 3101         27/01/2009  2
## 3102         27/01/2012  2
## 3103         27/02/2004  2
## 3104         27/02/2007  2
## 3105         27/03/2012  2
## 3106         27/03/2013  2
## 3107         27/04/2008  2
## 3108         27/04/2009  2
## 3109         27/05/1998  2
## 3110         27/05/2008  2
## 3111         27/05/2010  2
## 3112         27/05/2011  2
## 3113         27/06/2000  2
## 3114         27/06/2001  2
## 3115         27/06/2003  2
## 3116         27/06/2011  2
## 3117         27/07/2004  2
## 3118         27/07/2005  2
## 3119         27/07/2009  2
## 3120         27/08/2009  2
## 3121         27/09/2000  2
## 3122         27/09/2002  2
## 3123         27/09/2004  2
## 3124         27/09/2006  2
## 3125         27/09/2010  2
## 3126         27/09/2011  2
## 3127         27/09/2012  2
## 3128         27/10/1997  2
## 3129         27/10/2000  2
## 3130         27/10/2010  2
## 3131         27/11/2012  2
## 3132         27/12/2013  2
## 3133         28/01/2008  2
## 3134         28/02/2013  2
## 3135         28/03/1996  2
## 3136         28/03/2006  2
## 3137         28/04/1999  2
## 3138         28/04/2000  2
## 3139         28/04/2004  2
## 3140         28/04/2006  2
## 3141         28/04/2010  2
## 3142         28/04/2011  2
## 3143         28/05/1997  2
## 3144         28/05/1999  2
## 3145         28/06/1996  2
## 3146         28/06/2011  2
## 3147         28/06/2013  2
## 3148         28/07/1998  2
## 3149         28/07/1999  2
## 3150         28/07/2005  2
## 3151         28/07/2006  2
## 3152         28/07/2008  2
## 3153         28/08/1997  2
## 3154         28/08/2001  2
## 3155         28/08/2013  2
## 3156         28/09/2001  2
## 3157         28/09/2007  2
## 3158         28/09/2009  2
## 3159         28/09/2012  2
## 3160         28/10/1997  2
## 3161         28/10/1998  2
## 3162         28/10/2002  2
## 3163         28/10/2008  2
## 3164         28/11/2007  2
## 3165         28/11/2012  2
## 3166         28/12/1998  2
## 3167         28/12/1999  2
## 3168         28/12/2006  2
## 3169         28/12/2012  2
## 3170         29/01/2001  2
## 3171         29/01/2007  2
## 3172         29/01/2010  2
## 3173         29/02/2008  2
## 3174         29/03/1999  2
## 3175         29/03/2012  2
## 3176         29/04/1998  2
## 3177         29/04/2009  2
## 3178         29/05/2002  2
## 3179         29/05/2007  2
## 3180         29/05/2009  2
## 3181         29/05/2012  2
## 3182         29/06/2001  2
## 3183         29/06/2005  2
## 3184         29/06/2007  2
## 3185         29/06/2011  2
## 3186         29/07/1996  2
## 3187         29/07/1997  2
## 3188         29/07/2008  2
## 3189         29/07/2009  2
## 3190         29/07/2010  2
## 3191         29/08/2006  2
## 3192         29/08/2008  2
## 3193         29/09/1997  2
## 3194         29/09/2008  2
## 3195         29/09/2010  2
## 3196         29/10/1999  2
## 3197         29/11/2005  2
## 3198         29/11/2006  2
## 3199         29/11/2010  2
## 3200         29/12/2008  2
## 3201         29/12/2010  2
## 3202         29/12/2011  2
## 3203         30/01/2002  2
## 3204         30/01/2007  2
## 3205         30/01/2009  2
## 3206         30/03/1998  2
## 3207         30/03/2006  2
## 3208         30/03/2011  2
## 3209         30/04/1997  2
## 3210         30/04/2004  2
## 3211         30/04/2012  2
## 3212         30/05/2002  2
## 3213         30/05/2003  2
## 3214         30/06/2000  2
## 3215         30/06/2003  2
## 3216         30/06/2006  2
## 3217         30/06/2008  2
## 3218         30/07/1998  2
## 3219         30/07/2008  2
## 3220         30/07/2009  2
## 3221         30/07/2010  2
## 3222         30/08/1996  2
## 3223         30/08/2005  2
## 3224         30/08/2007  2
## 3225         30/08/2010  2
## 3226         30/08/2012  2
## 3227         30/09/1999  2
## 3228         30/09/2008  2
## 3229         30/09/2010  2
## 3230         30/10/2006  2
## 3231         30/10/2013  2
## 3232         30/11/1999  2
## 3233         30/11/2006  2
## 3234         30/12/2008  2
## 3235         30/12/2010  2
## 3236         30/12/2013  2
## 3237         31/01/2000  2
## 3238         31/01/2007  2
## 3239         31/01/2013  2
## 3240         31/03/2000  2
## 3241         31/03/2004  2
## 3242         31/03/2011  2
## 3243         31/03/2014  2
## 3244         31/05/2005  2
## 3245         31/05/2007  2
## 3246         31/07/1997  2
## 3247         31/07/1998  2
## 3248         31/07/2006  2
## 3249         31/07/2008  2
## 3250         31/07/2009  2
## 3251         31/08/2001  2
## 3252         31/08/2010  2
## 3253         31/08/2012  2
## 3254         31/10/2000  2
## 3255         31/10/2008  2
## 3256         31/12/2007  2
## 3257         01/03/2000  1
## 3258         01/03/2012  1
## 3259         01/04/1998  1
## 3260         01/04/1999  1
## 3261         01/05/1998  1
## 3262         01/05/2001  1
## 3263         01/05/2006  1
## 3264         01/05/2013  1
## 3265         01/06/1999  1
## 3266         01/06/2012  1
## 3267         01/07/1999  1
## 3268         01/07/2010  1
## 3269         01/08/1997  1
## 3270         01/08/2002  1
## 3271         01/08/2007  1
## 3272         01/08/2008  1
## 3273         01/09/2004  1
## 3274         01/09/2011  1
## 3275         01/10/2003  1
## 3276         01/10/2009  1
## 3277         01/10/2010  1
## 3278         01/11/2001  1
## 3279         01/11/2008  1
## 3280         01/11/2011  1
## 3281         01/12/1998  1
## 3282         02/01/1997  1
## 3283         02/01/1998  1
## 3284         02/01/2004  1
## 3285         02/01/2014  1
## 3286         02/02/2000  1
## 3287         02/02/2005  1
## 3288         02/02/2009  1
## 3289         02/02/2010  1
## 3290         02/03/2009  1
## 3291         02/03/2012  1
## 3292         02/04/1996  1
## 3293         02/04/1998  1
## 3294         02/04/2002  1
## 3295         02/04/2003  1
## 3296         02/04/2010  1
## 3297         02/05/2012  1
## 3298         02/06/1997  1
## 3299         02/06/2006  1
## 3300         02/06/2007  1
## 3301         02/06/2009  1
## 3302         02/07/2008  1
## 3303         02/07/2012  1
## 3304         02/08/1999  1
## 3305         02/08/2002  1
## 3306         02/09/1997  1
## 3307         02/09/1999  1
## 3308         02/09/2010  1
## 3309         02/09/2011  1
## 3310         02/10/1998  1
## 3311         02/10/2006  1
## 3312         02/10/2009  1
## 3313         02/12/2000  1
## 3314         02/12/2013  1
## 3315         03/01/2000  1
## 3316         03/02/2006  1
## 3317         03/02/2011  1
## 3318         03/03/1998  1
## 3319         03/03/2008  1
## 3320         03/04/2006  1
## 3321         03/04/2013  1
## 3322         03/05/2000  1
## 3323         03/05/2007  1
## 3324         03/06/2005  1
## 3325         03/06/2008  1
## 3326         03/07/2002  1
## 3327         03/07/2006  1
## 3328         03/07/2007  1
## 3329         03/08/2010  1
## 3330         03/09/1986  1
## 3331         03/09/2009  1
## 3332         03/10/1997  1
## 3333         03/10/2000  1
## 3334         03/10/2006  1
## 3335         03/11/2010  1
## 3336         03/12/2000  1
## 3337         03/12/2007  1
## 3338         03/12/2008  1
## 3339         04/01/2006  1
## 3340         04/01/2007  1
## 3341         04/01/2010  1
## 3342         04/01/2011  1
## 3343         04/01/2012  1
## 3344         04/02/1998  1
## 3345         04/02/2000  1
## 3346         04/02/2013  1
## 3347         04/03/2005  1
## 3348         04/03/2008  1
## 3349         04/04/2003  1
## 3350         04/04/2011  1
## 3351         04/05/2000  1
## 3352         04/05/2004  1
## 3353         04/05/2007  1
## 3354         04/05/2009  1
## 3355         04/05/2011  1
## 3356         04/06/1999  1
## 3357         04/06/2004  1
## 3358         04/08/1998  1
## 3359         04/08/2010  1
## 3360         04/09/1998  1
## 3361         04/09/2009  1
## 3362         04/10/2001  1
## 3363         04/10/2005  1
## 3364         04/10/2013  1
## 3365         04/11/1999  1
## 3366         04/11/2002  1
## 3367         04/11/2009  1
## 3368         04/11/2010  1
## 3369         04/12/2000  1
## 3370         04/12/2002  1
## 3371         05/01/1999  1
## 3372         05/01/2004  1
## 3373         05/01/2009  1
## 3374         05/02/1998  1
## 3375         05/03/2002  1
## 3376         05/03/2005  1
## 3377         05/03/2009  1
## 3378         05/04/2004  1
## 3379         05/04/2010  1
## 3380         05/05/2004  1
## 3381         05/05/2005  1
## 3382         05/05/2006  1
## 3383         05/06/1997  1
## 3384         05/06/2002  1
## 3385         05/06/2008  1
## 3386         05/07/2002  1
## 3387         05/07/2005  1
## 3388         05/07/2006  1
## 3389         05/07/2011  1
## 3390         05/08/2005  1
## 3391         05/08/2013  1
## 3392         05/09/2004  1
## 3393         05/09/2005  1
## 3394         05/10/2012  1
## 3395         05/11/1996  1
## 3396         05/11/2004  1
## 3397         05/11/2008  1
## 3398         05/12/2000  1
## 3399         05/12/2001  1
## 3400         05/12/2002  1
## 3401         05/12/2006  1
## 3402         05/12/2011  1
## 3403         06/01/2000  1
## 3404         06/01/2010  1
## 3405         06/01/2014  1
## 3406         06/02/1997  1
## 3407         06/02/2003  1
## 3408         06/02/2004  1
## 3409         06/03/1997  1
## 3410         06/03/2001  1
## 3411         06/03/2006  1
## 3412         06/05/1998  1
## 3413         06/05/1999  1
## 3414         06/05/2004  1
## 3415         06/06/1996  1
## 3416         06/06/2003  1
## 3417         06/06/2006  1
## 3418         06/06/2009  1
## 3419         06/06/2011  1
## 3420         06/07/1998  1
## 3421         06/07/2011  1
## 3422         06/07/2012  1
## 3423         06/08/1999  1
## 3424         06/08/2002  1
## 3425         06/10/2006  1
## 3426         06/10/2009  1
## 3427         06/10/2010  1
## 3428         06/11/2006  1
## 3429         06/11/2009  1
## 3430         06/12/1996  1
## 3431         06/12/2002  1
## 3432         06/12/2004  1
## 3433         06/12/2011  1
## 3434         07/01/1999  1
## 3435         07/01/2002  1
## 3436         07/01/2004  1
## 3437         07/01/2011  1
## 3438         07/01/2013  1
## 3439         07/04/1998  1
## 3440         07/04/2011  1
## 3441         07/05/2002  1
## 3442         07/05/2009  1
## 3443         07/06/2004  1
## 3444         07/06/2005  1
## 3445         07/06/2014  1
## 3446         07/07/1997  1
## 3447         07/07/2005  1
## 3448         07/08/2007  1
## 3449         07/09/2006  1
## 3450         07/09/2012  1
## 3451         07/10/1997  1
## 3452         07/10/1998  1
## 3453         07/10/2005  1
## 3454         07/10/2008  1
## 3455         07/10/2009  1
## 3456         07/10/2010  1
## 3457         07/11/1997  1
## 3458         07/11/2001  1
## 3459         07/11/2002  1
## 3460         07/12/2000  1
## 3461         07/12/2001  1
## 3462         07/12/2012  1
## 3463         08/01/2007  1
## 3464         08/01/2014  1
## 3465         08/02/2011  1
## 3466         08/03/2001  1
## 3467         08/03/2005  1
## 3468         08/04/2002  1
## 3469         08/04/2004  1
## 3470         08/04/2008  1
## 3471         08/04/2010  1
## 3472         08/05/2000  1
## 3473         08/05/2008  1
## 3474         08/06/2005  1
## 3475         08/06/2006  1
## 3476         08/07/2003  1
## 3477         08/07/2005  1
## 3478         08/07/2008  1
## 3479         08/07/2010  1
## 3480         08/07/2013  1
## 3481         08/08/2003  1
## 3482         08/09/1999  1
## 3483         08/09/2000  1
## 3484         08/09/2003  1
## 3485         08/09/2005  1
## 3486         08/09/2006  1
## 3487         08/10/2005  1
## 3488         08/11/1999  1
## 3489         08/11/2000  1
## 3490         08/11/2001  1
## 3491         08/11/2005  1
## 3492         08/11/2012  1
## 3493         08/12/1999  1
## 3494         08/12/2009  1
## 3495         09/01/1997  1
## 3496         09/01/2003  1
## 3497         09/01/2009  1
## 3498         09/01/2013  1
## 3499         09/02/2001  1
## 3500         09/02/2007  1
## 3501         09/03/2009  1
## 3502         09/04/1997  1
## 3503         09/04/1998  1
## 3504         09/04/2003  1
## 3505         09/04/2012  1
## 3506         09/04/2014  1
## 3507         09/05/2001  1
## 3508         09/05/2011  1
## 3509         09/06/1999  1
## 3510         09/06/2006  1
## 3511         09/07/1997  1
## 3512         09/07/2002  1
## 3513         09/07/2004  1
## 3514         09/08/2001  1
## 3515         09/08/2002  1
## 3516         09/08/2004  1
## 3517         09/08/2005  1
## 3518         09/09/2007  1
## 3519         09/09/2010  1
## 3520         09/10/1996  1
## 3521         09/10/1998  1
## 3522         09/10/2003  1
## 3523         09/10/2012  1
## 3524         09/11/1998  1
## 3525         09/11/2000  1
## 3526         09/11/2003  1
## 3527         09/11/2005  1
## 3528         09/11/2007  1
## 3529         09/12/1997  1
## 3530         09/12/2009  1
## 3531         10/01/2005  1
## 3532         10/02/2000  1
## 3533         10/03/2005  1
## 3534         10/03/2006  1
## 3535         10/03/2010  1
## 3536         10/04/2003  1
## 3537         10/04/2007  1
## 3538         10/05/2000  1
## 3539         10/05/2002  1
## 3540         10/05/2010  1
## 3541         10/06/2000  1
## 3542         10/06/2001  1
## 3543         10/07/1999  1
## 3544         10/07/2002  1
## 3545         10/07/2004  1
## 3546         10/08/2004  1
## 3547         10/09/1999  1
## 3548         10/09/2007  1
## 3549         10/09/2008  1
## 3550         10/10/1997  1
## 3551         10/10/2008  1
## 3552         10/11/1998  1
## 3553         10/11/1999  1
## 3554         10/11/2005  1
## 3555         10/12/1998  1
## 3556         10/12/2001  1
## 3557         10/12/2005  1
## 3558         10/12/2008  1
## 3559         11/01/1999  1
## 3560         11/01/2002  1
## 3561         11/01/2010  1
## 3562         11/02/2003  1
## 3563         11/03/1997  1
## 3564         11/03/2000  1
## 3565         11/03/2011  1
## 3566         11/04/2000  1
## 3567         11/05/2001  1
## 3568         11/05/2005  1
## 3569         11/05/2010  1
## 3570         11/05/2012  1
## 3571         11/06/2001  1
## 3572         11/06/2012  1
## 3573         11/06/2014  1
## 3574         11/07/2000  1
## 3575         11/07/2002  1
## 3576         11/07/2003  1
## 3577         11/07/2008  1
## 3578         11/07/2011  1
## 3579         11/08/2000  1
## 3580         11/09/1998  1
## 3581         11/09/2001  1
## 3582         11/10/2005  1
## 3583         11/10/2007  1
## 3584         11/10/2008  1
## 3585         11/11/1995  1
## 3586         11/11/1996  1
## 3587         11/11/1997  1
## 3588         11/11/2005  1
## 3589         11/11/2006  1
## 3590         11/11/2009  1
## 3591         11/11/2010  1
## 3592         11/11/2011  1
## 3593         11/11/2013  1
## 3594         11/12/2003  1
## 3595         11/12/2007  1
## 3596         11/12/2009  1
## 3597         12/01/2000  1
## 3598         12/01/2007  1
## 3599         12/02/1998  1
## 3600         12/02/2000  1
## 3601         12/02/2001  1
## 3602         12/02/2013  1
## 3603         12/02/2014  1
## 3604         12/03/1998  1
## 3605         12/03/1999  1
## 3606         12/03/2007  1
## 3607         12/03/2008  1
## 3608         12/05/1995  1
## 3609         12/05/2000  1
## 3610         12/05/2011  1
## 3611         12/06/2002  1
## 3612         12/06/2003  1
## 3613         12/07/2002  1
## 3614         12/08/2005  1
## 3615         12/08/2013  1
## 3616         12/09/2008  1
## 3617         12/09/2012  1
## 3618         12/10/2000  1
## 3619         12/11/2002  1
## 3620         12/12/1996  1
## 3621         12/12/2006  1
## 3622         13/01/1996  1
## 3623         13/01/2003  1
## 3624         13/01/2010  1
## 3625         13/02/2003  1
## 3626         13/02/2007  1
## 3627         13/02/2009  1
## 3628         13/02/2013  1
## 3629         13/03/2013  1
## 3630         13/04/2004  1
## 3631         13/04/2009  1
## 3632         13/06/1997  1
## 3633         13/06/2000  1
## 3634         13/06/2003  1
## 3635         13/06/2013  1
## 3636         13/07/2005  1
## 3637         13/07/2007  1
## 3638         13/07/2009  1
## 3639         13/08/2002  1
## 3640         13/08/2012  1
## 3641         13/09/2005  1
## 3642         13/09/2010  1
## 3643         13/10/1999  1
## 3644         13/10/2004  1
## 3645         13/11/2001  1
## 3646         13/11/2009  1
## 3647         13/11/2013  1
## 3648         13/12/2002  1
## 3649         14/01/2002  1
## 3650         14/01/2004  1
## 3651         14/01/2008  1
## 3652         14/01/2011  1
## 3653         14/01/2013  1
## 3654         14/02/2002  1
## 3655         14/02/2011  1
## 3656         14/02/2014  1
## 3657         14/03/2011  1
## 3658         14/03/2014  1
## 3659         14/04/2006  1
## 3660         14/04/2007  1
## 3661         14/04/2009  1
## 3662         14/04/2010  1
## 3663         14/04/2014  1
## 3664         14/05/1997  1
## 3665         14/05/1998  1
## 3666         14/05/2003  1
## 3667         14/05/2010  1
## 3668         14/05/2013  1
## 3669         14/07/2008  1
## 3670         14/07/2010  1
## 3671         14/08/2007  1
## 3672         14/09/2006  1
## 3673         14/09/2008  1
## 3674         14/09/2010  1
## 3675         14/10/1997  1
## 3676         14/10/1998  1
## 3677         14/10/2004  1
## 3678         14/10/2005  1
## 3679         14/10/2006  1
## 3680         14/10/2008  1
## 3681         14/10/2010  1
## 3682         14/11/2005  1
## 3683         14/12/2001  1
## 3684         15/01/1998  1
## 3685         15/01/2002  1
## 3686         15/01/2007  1
## 3687         15/02/2001  1
## 3688         15/02/2007  1
## 3689         15/02/2012  1
## 3690         15/02/2014  1
## 3691         15/03/2013  1
## 3692         15/04/2009  1
## 3693         15/05/2001  1
## 3694         15/05/2006  1
## 3695         15/05/2009  1
## 3696         15/06/1998  1
## 3697         15/06/2001  1
## 3698         15/07/2009  1
## 3699         15/07/2010  1
## 3700         15/07/2013  1
## 3701         15/08/1996  1
## 3702         15/08/2001  1
## 3703         15/08/2005  1
## 3704         15/09/1999  1
## 3705         15/09/2000  1
## 3706         15/09/2005  1
## 3707         15/09/2006  1
## 3708         15/09/2008  1
## 3709         15/09/2009  1
## 3710         15/10/2007  1
## 3711         15/10/2008  1
## 3712         15/10/2010  1
## 3713         15/11/1999  1
## 3714         15/11/2000  1
## 3715         15/11/2001  1
## 3716         15/11/2005  1
## 3717         15/11/2010  1
## 3718         15/12/2004  1
## 3719         15/12/2009  1
## 3720         16/02/2005  1
## 3721         16/03/2011  1
## 3722         16/04/1999  1
## 3723         16/04/2002  1
## 3724         16/04/2003  1
## 3725         16/04/2004  1
## 3726         16/04/2007  1
## 3727         16/05/1997  1
## 3728         16/05/2007  1
## 3729         16/05/2011  1
## 3730         16/06/2000  1
## 3731         16/06/2004  1
## 3732         16/06/2006  1
## 3733         16/06/2007  1
## 3734         16/06/2009  1
## 3735         16/06/2011  1
## 3736         16/07/2001  1
## 3737         16/08/1999  1
## 3738         16/08/2001  1
## 3739         16/08/2002  1
## 3740         16/08/2007  1
## 3741         16/09/2008  1
## 3742         16/10/1997  1
## 3743         16/10/2013  1
## 3744         16/11/2005  1
## 3745         16/11/2010  1
## 3746         16/12/1998  1
## 3747         16/12/2002  1
## 3748         16/12/2004  1
## 3749         16/12/2007  1
## 3750         16/12/2008  1
## 3751         16/12/2009  1
## 3752         17/01/2000  1
## 3753         17/01/2005  1
## 3754         17/01/2006  1
## 3755         17/01/2007  1
## 3756         17/02/2004  1
## 3757         17/03/2011  1
## 3758         17/03/2012  1
## 3759         17/04/2013  1
## 3760         17/04/2014  1
## 3761         17/06/2002  1
## 3762         17/06/2005  1
## 3763         17/07/1996  1
## 3764         17/07/2006  1
## 3765         17/07/2008  1
## 3766         17/07/2013  1
## 3767         17/09/1997  1
## 3768         17/09/2002  1
## 3769         17/09/2003  1
## 3770         17/09/2010  1
## 3771         17/09/2013  1
## 3772         17/11/2003  1
## 3773         17/12/1997  1
## 3774         17/12/2001  1
## 3775         17/12/2004  1
## 3776         17/12/2006  1
## 3777         17/12/2013  1
## 3778         18/01/2007  1
## 3779         18/02/2008  1
## 3780         18/02/2009  1
## 3781         18/02/2011  1
## 3782         18/02/2014  1
## 3783         18/03/2002  1
## 3784         18/03/2009  1
## 3785         18/04/1997  1
## 3786         18/04/2012  1
## 3787         18/04/2013  1
## 3788         18/05/1998  1
## 3789         18/05/2003  1
## 3790         18/05/2004  1
## 3791         18/05/2007  1
## 3792         18/05/2008  1
## 3793         18/05/2011  1
## 3794         18/06/1999  1
## 3795         18/06/2012  1
## 3796         18/07/2002  1
## 3797         18/07/2005  1
## 3798         18/07/2007  1
## 3799         18/08/2008  1
## 3800         18/09/2003  1
## 3801         18/09/2006  1
## 3802         18/09/2007  1
## 3803         18/09/2008  1
## 3804         18/09/2010  1
## 3805         18/10/2001  1
## 3806         18/10/2006  1
## 3807         18/10/2012  1
## 3808         18/11/1999  1
## 3809         18/11/2009  1
## 3810         18/12/2001  1
## 3811         18/12/2008  1
## 3812         18/12/2009  1
## 3813         19/01/1998  1
## 3814         19/01/2004  1
## 3815         19/01/2006  1
## 3816         19/01/2009  1
## 3817         19/02/2007  1
## 3818         19/02/2009  1
## 3819         19/03/1997  1
## 3820         19/03/2001  1
## 3821         19/03/2002  1
## 3822         19/03/2006  1
## 3823         19/03/2009  1
## 3824         19/04/2010  1
## 3825         19/04/2014  1
## 3826         19/05/2004  1
## 3827         19/05/2014  1
## 3828         19/06/2012  1
## 3829         19/07/2002  1
## 3830         19/07/2004  1
## 3831         19/07/2006  1
## 3832         19/07/2012  1
## 3833         19/08/1999  1
## 3834         19/08/2000  1
## 3835         19/08/2002  1
## 3836         19/09/1997  1
## 3837         19/09/2007  1
## 3838         19/10/2001  1
## 3839         19/10/2002  1
## 3840         19/10/2009  1
## 3841         19/10/2011  1
## 3842         19/11/2010  1
## 3843         19/11/2012  1
## 3844         19/12/2006  1
## 3845         19/12/2008  1
## 3846         20/01/1997  1
## 3847         20/01/1999  1
## 3848         20/01/2001  1
## 3849         20/02/1998  1
## 3850         20/02/2003  1
## 3851         20/03/1998  1
## 3852         20/03/2003  1
## 3853         20/03/2004  1
## 3854         20/03/2006  1
## 3855         20/03/2008  1
## 3856         20/03/2012  1
## 3857         20/04/2000  1
## 3858         20/04/2004  1
## 3859         20/04/2006  1
## 3860         20/05/1994  1
## 3861         20/05/2003  1
## 3862         20/05/2010  1
## 3863         20/06/2000  1
## 3864         20/06/2006  1
## 3865         20/07/1998  1
## 3866         20/07/2001  1
## 3867         20/07/2010  1
## 3868         20/07/2012  1
## 3869         20/08/2003  1
## 3870         20/09/1996  1
## 3871         20/09/2002  1
## 3872         20/09/2006  1
## 3873         20/10/1997  1
## 3874         20/10/2006  1
## 3875         20/10/2010  1
## 3876         20/11/2010  1
## 3877         20/12/2004  1
## 3878         20/12/2005  1
## 3879         20/12/2006  1
## 3880         20/12/2011  1
## 3881         21/01/1997  1
## 3882         21/01/2009  1
## 3883         21/01/2014  1
## 3884         21/02/2003  1
## 3885         21/02/2005  1
## 3886         21/02/2008  1
## 3887         21/03/1994  1
## 3888         21/03/2003  1
## 3889         21/03/2007  1
## 3890         21/04/1998  1
## 3891         21/04/2003  1
## 3892         21/04/2005  1
## 3893         21/04/2008  1
## 3894         21/04/2010  1
## 3895         21/05/2007  1
## 3896         21/05/2008  1
## 3897         21/06/1996  1
## 3898         21/06/2005  1
## 3899         21/06/2007  1
## 3900         21/06/2013  1
## 3901         21/07/1998  1
## 3902         21/07/2004  1
## 3903         21/07/2011  1
## 3904         21/08/2003  1
## 3905         21/08/2012  1
## 3906         21/09/2001  1
## 3907         21/09/2010  1
## 3908         21/09/2011  1
## 3909         21/09/2012  1
## 3910         21/10/2004  1
## 3911         21/11/1997  1
## 3912         21/11/2001  1
## 3913         21/11/2008  1
## 3914         21/12/2004  1
## 3915         21/12/2011  1
## 3916         22/01/1997  1
## 3917         22/01/2000  1
## 3918         22/01/2002  1
## 3919         22/01/2010  1
## 3920         22/02/1999  1
## 3921         22/03/2010  1
## 3922         22/04/2002  1
## 3923         22/05/1998  1
## 3924         22/05/1999  1
## 3925         22/05/2008  1
## 3926         22/05/2009  1
## 3927         22/07/2002  1
## 3928         22/07/2003  1
## 3929         22/07/2011  1
## 3930         22/08/1996  1
## 3931         22/08/2012  1
## 3932         22/10/2001  1
## 3933         22/10/2005  1
## 3934         22/10/2009  1
## 3935         22/10/2010  1
## 3936         22/11/1999  1
## 3937         22/11/2000  1
## 3938         22/11/2004  1
## 3939         22/12/1998  1
## 3940         22/12/2004  1
## 3941         22/12/2009  1
## 3942         22/12/2011  1
## 3943         23/01/1998  1
## 3944         23/01/2000  1
## 3945         23/01/2014  1
## 3946         23/02/1998  1
## 3947         23/02/2000  1
## 3948         23/02/2005  1
## 3949         23/02/2007  1
## 3950         23/03/1999  1
## 3951         23/04/2002  1
## 3952         23/04/2009  1
## 3953         23/04/2010  1
## 3954         23/05/2005  1
## 3955         23/05/2012  1
## 3956         23/05/2013  1
## 3957         23/06/1994  1
## 3958         23/06/2005  1
## 3959         23/06/2008  1
## 3960         23/06/2011  1
## 3961         23/07/1999  1
## 3962         23/07/2009  1
## 3963         23/07/2010  1
## 3964         23/08/2001  1
## 3965         23/08/2004  1
## 3966         23/08/2010  1
## 3967         23/09/2002  1
## 3968         23/09/2010  1
## 3969         23/10/1997  1
## 3970         23/10/2000  1
## 3971         23/10/2002  1
## 3972         23/10/2006  1
## 3973         23/11/1999  1
## 3974         23/11/2004  1
## 3975         23/11/2011  1
## 3976         23/12/1998  1
## 3977         23/12/1999  1
## 3978         23/12/2002  1
## 3979         23/12/2011  1
## 3980         23/12/2013  1
## 3981         24/01/2000  1
## 3982         24/01/2003  1
## 3983         24/02/1999  1
## 3984         24/02/2004  1
## 3985         24/02/2005  1
## 3986         24/03/2000  1
## 3987         24/03/2001  1
## 3988         24/03/2004  1
## 3989         24/03/2008  1
## 3990         24/03/2011  1
## 3991         24/04/1997  1
## 3992         24/04/2009  1
## 3993         24/05/2002  1
## 3994         24/05/2010  1
## 3995         24/06/1989  1
## 3996         24/06/1998  1
## 3997         24/08/2006  1
## 3998         24/08/2010  1
## 3999         24/08/2011  1
## 4000         24/08/2012  1
## 4001         24/09/2005  1
## 4002         24/09/2011  1
## 4003         24/10/1996  1
## 4004         24/10/2003  1
## 4005         24/10/2005  1
## 4006         24/10/2011  1
## 4007         25/01/2012  1
## 4008         25/01/2014  1
## 4009         25/02/2003  1
## 4010         25/02/2004  1
## 4011         25/02/2011  1
## 4012         25/03/1999  1
## 4013         25/03/2008  1
## 4014         25/04/2002  1
## 4015         25/05/2007  1
## 4016         25/05/2008  1
## 4017         25/06/1998  1
## 4018         25/07/2005  1
## 4019         25/07/2008  1
## 4020         25/07/2012  1
## 4021         25/08/1997  1
## 4022         25/08/1999  1
## 4023         25/08/2001  1
## 4024         25/08/2005  1
## 4025         25/08/2008  1
## 4026         25/08/2011  1
## 4027         25/09/2003  1
## 4028         25/11/1997  1
## 4029         25/11/2008  1
## 4030         25/11/2009  1
## 4031         26/03/1997  1
## 4032         26/03/2002  1
## 4033         26/04/1999  1
## 4034         26/04/2012  1
## 4035         26/05/1998  1
## 4036         26/05/2014  1
## 4037         26/06/2004  1
## 4038         26/07/2002  1
## 4039         26/08/2004  1
## 4040         26/09/2002  1
## 4041         26/09/2006  1
## 4042         26/09/2008  1
## 4043         26/10/2009  1
## 4044         26/11/1996  1
## 4045         26/11/2001  1
## 4046         26/11/2002  1
## 4047         26/11/2007  1
## 4048         26/11/2013  1
## 4049         26/12/2001  1
## 4050         26/12/2003  1
## 4051         27/01/2003  1
## 4052         27/01/2004  1
## 4053         27/01/2011  1
## 4054         27/02/2002  1
## 4055         27/02/2008  1
## 4056         27/03/1998  1
## 4057         27/04/2007  1
## 4058         27/04/2010  1
## 4059         27/05/2003  1
## 4060         27/06/2005  1
## 4061         27/07/2007  1
## 4062         27/07/2011  1
## 4063         27/07/2012  1
## 4064         27/08/1997  1
## 4065         27/08/1998  1
## 4066         27/08/2010  1
## 4067         27/08/2012  1
## 4068         27/10/2003  1
## 4069         27/10/2004  1
## 4070         27/10/2006  1
## 4071         27/10/2011  1
## 4072         27/11/2000  1
## 4073         27/11/2001  1
## 4074         27/11/2004  1
## 4075         27/12/2001  1
## 4076         27/12/2002  1
## 4077         27/12/2005  1
## 4078         28/01/1997  1
## 4079         28/01/2002  1
## 4080         28/01/2003  1
## 4081         28/01/2009  1
## 4082         28/01/2010  1
## 4083         28/02/1997  1
## 4084         28/02/2000  1
## 4085         28/02/2006  1
## 4086         28/03/2011  1
## 4087         28/04/2003  1
## 4088         28/04/2005  1
## 4089         28/05/2010  1
## 4090         28/06/2002  1
## 4091         28/08/1998  1
## 4092         28/08/2006  1
## 4093         28/08/2007  1
## 4094         28/08/2009  1
## 4095         28/08/2012  1
## 4096         28/10/1999  1
## 4097         28/10/2005  1
## 4098         28/11/2005  1
## 4099         28/12/2004  1
## 4100         28/12/2005  1
## 4101         28/12/2007  1
## 4102         28/12/2009  1
## 4103         28/12/2011  1
## 4104         29/01/1997  1
## 4105         29/01/2009  1
## 4106         29/01/2014  1
## 4107         29/03/2001  1
## 4108         29/03/2004  1
## 4109         29/03/2010  1
## 4110         29/03/2011  1
## 4111         29/04/1999  1
## 4112         29/04/2005  1
## 4113         29/04/2008  1
## 4114         29/04/2010  1
## 4115         29/04/2011  1
## 4116         29/05/1997  1
## 4117         29/05/1998  1
## 4118         29/05/2008  1
## 4119         29/05/2010  1
## 4120         29/06/1998  1
## 4121         29/06/2006  1
## 4122         29/07/2003  1
## 4123         29/08/2001  1
## 4124         29/08/2011  1
## 4125         29/09/1998  1
## 4126         29/09/1999  1
## 4127         29/09/2007  1
## 4128         29/09/2009  1
## 4129         29/10/2002  1
## 4130         29/10/2004  1
## 4131         29/10/2010  1
## 4132         29/11/2000  1
## 4133         29/11/2007  1
## 4134         29/11/2012  1
## 4135         29/12/1997  1
## 4136         29/12/2000  1
## 4137         29/12/2005  1
## 4138         29/12/2006  1
## 4139         29/12/2009  1
## 4140         30/01/1998  1
## 4141         30/01/2003  1
## 4142         30/01/2010  1
## 4143         30/03/1999  1
## 4144         30/03/2009  1
## 4145         30/04/1996  1
## 4146         30/04/1998  1
## 4147         30/04/2001  1
## 4148         30/04/2009  1
## 4149         30/04/2014  1
## 4150         30/06/2005  1
## 4151         30/07/2002  1
## 4152         30/08/2000  1
## 4153         30/08/2004  1
## 4154         30/08/2006  1
## 4155         30/09/1996  1
## 4156         30/09/1997  1
## 4157         30/09/2002  1
## 4158         30/09/2004  1
## 4159         30/09/2011  1
## 4160         30/10/2002  1
## 4161         30/10/2003  1
## 4162         30/10/2004  1
## 4163         30/10/2007  1
## 4164         30/11/2000  1
## 4165         30/11/2007  1
## 4166         30/11/2009  1
## 4167         30/12/1996  1
## 4168         30/12/2005  1
## 4169         30/12/2009  1
## 4170         31/01/2004  1
## 4171         31/01/2011  1
## 4172         31/03/2005  1
## 4173         31/05/2012  1
## 4174         31/07/1996  1
## 4175         31/07/2012  1
## 4176         31/08/2005  1
## 4177         31/08/2011  1
## 4178         31/10/2001  1
## 4179         31/10/2007  1
## 4180         31/10/2011  1
## 4181         31/12/2002  1
## 4182         31/12/2003  1
count(dfmerge, ClaimantClosedDate, sort=TRUE)
##      ClaimantClosedDate    n
## 1            31/03/2005 4314
## 2            24/02/2009  514
## 3              #¡VALOR!  369
## 4            11/12/2008  170
## 5            25/04/2005  136
## 6            26/04/2005   78
## 7            25/11/2009   70
## 8            14/06/2004   68
## 9            19/02/2003   65
## 10           29/08/2000   45
## 11           10/07/2000   42
## 12           01/10/2011   39
## 13           31/10/2006   38
## 14           31/10/2007   32
## 15           10/09/2008   30
## 16           20/09/2010   29
## 17           31/12/2008   29
## 18           03/10/2011   28
## 19           30/06/2005   28
## 20           10/02/2009   27
## 21           31/03/2009   27
## 22           31/07/2007   27
## 23           27/02/2003   26
## 24           31/03/2006   25
## 25           13/07/2000   24
## 26           19/11/2008   24
## 27           30/06/2009   24
## 28           30/09/2007   24
## 29           31/01/2008   24
## 30           31/05/2007   24
## 31           31/08/2007   24
## 32           31/10/2008   24
## 33           31/12/2007   24
## 34           30/06/2006   23
## 35           31/01/2006   23
## 36           31/07/2008   23
## 37           08/09/2008   22
## 38           27/04/2005   22
## 39           27/06/2011   22
## 40           30/04/2008   22
## 41           30/06/2008   22
## 42           31/01/2007   22
## 43           31/08/2005   22
## 44           02/04/2003   21
## 45           30/04/2006   21
## 46           30/09/2008   21
## 47           30/11/2008   21
## 48           31/07/2006   21
## 49           04/06/2011   20
## 50           30/06/2007   20
## 51           31/05/2005   20
## 52           31/08/2008   20
## 53           31/10/2005   20
## 54           12/03/2011   19
## 55           21/12/2007   19
## 56           30/04/2009   19
## 57           31/05/2006   19
## 58           31/08/2006   19
## 59           29/02/2008   18
## 60           30/11/2005   18
## 61           30/11/2007   18
## 62           31/03/2008   18
## 63           31/05/2008   18
## 64           30/09/2006   17
## 65           31/12/2005   17
## 66           08/08/2008   16
## 67           28/02/2007   16
## 68           30/05/2014   16
## 69           30/11/2006   16
## 70           24/09/2013   15
## 71           30/04/2005   15
## 72           31/05/2009   15
## 73           31/07/2005   15
## 74           11/01/2014   14
## 75           25/04/2006   14
## 76           28/02/2006   14
## 77           28/02/2009   14
## 78           01/04/2003   13
## 79           11/06/2011   13
## 80           30/04/2007   13
## 81           31/01/2009   13
## 82           31/03/2007   13
## 83           02/06/2014   12
## 84           03/07/2011   12
## 85           06/01/2010   12
## 86           23/11/2005   12
## 87           25/06/2014   12
## 88           28/08/2000   12
## 89           15/06/2011   11
## 90           28/06/2011   11
## 91           01/03/2014   10
## 92           09/06/2014   10
## 93           13/06/2011   10
## 94           14/06/2011   10
## 95           25/09/2013   10
## 96           27/11/2013   10
## 97           30/09/2005   10
## 98           04/01/2012    9
## 99           06/05/2011    9
## 100          06/06/2014    9
## 101          14/02/2011    9
## 102          18/10/2007    9
## 103          21/10/2013    9
## 104          22/04/2014    9
## 105          24/04/2014    9
## 106          25/04/2014    9
## 107          27/12/2012    9
## 108          31/08/2011    9
## 109          04/04/2005    8
## 110          04/08/2006    8
## 111          07/05/2011    8
## 112          11/03/2011    8
## 113          13/01/2010    8
## 114          14/04/2013    8
## 115          15/05/2014    8
## 116          15/07/2008    8
## 117          17/01/2011    8
## 118          18/06/2014    8
## 119          20/06/2011    8
## 120          21/05/2012    8
## 121          22/06/2005    8
## 122          26/06/2006    8
## 123          26/11/2007    8
## 124          27/06/2014    8
## 125          27/08/2013    8
## 126          28/06/2013    8
## 127          29/05/2014    8
## 128          02/01/2009    7
## 129          02/02/2011    7
## 130          02/05/2011    7
## 131          02/11/2009    7
## 132          03/06/2013    7
## 133          03/12/2007    7
## 134          05/03/2014    7
## 135          06/11/2013    7
## 136          07/01/2013    7
## 137          07/05/2012    7
## 138          07/08/2012    7
## 139          07/10/2013    7
## 140          08/05/2008    7
## 141          09/06/2011    7
## 142          09/09/2013    7
## 143          10/04/2013    7
## 144          10/06/2011    7
## 145          10/07/2012    7
## 146          11/07/2011    7
## 147          12/05/2005    7
## 148          12/06/2006    7
## 149          14/03/2012    7
## 150          16/07/2012    7
## 151          16/08/2007    7
## 152          17/05/2013    7
## 153          18/03/2013    7
## 154          18/04/2014    7
## 155          18/06/2012    7
## 156          21/05/2004    7
## 157          21/06/2012    7
## 158          22/04/2013    7
## 159          22/06/2011    7
## 160          22/08/2005    7
## 161          24/05/2010    7
## 162          25/01/2012    7
## 163          25/03/2013    7
## 164          25/05/2011    7
## 165          25/11/2008    7
## 166          26/06/2013    7
## 167          28/01/2014    7
## 168          28/03/2014    7
## 169          29/01/2013    7
## 170          29/05/2008    7
## 171          29/06/2005    7
## 172          29/06/2011    7
## 173          30/04/2010    7
## 174          30/09/2013    7
## 175          31/10/2013    7
## 176          31/12/2006    7
## 177          01/03/2011    6
## 178          01/04/2008    6
## 179          01/05/2008    6
## 180          01/06/2010    6
## 181          02/01/2013    6
## 182          02/11/2005    6
## 183          03/03/2011    6
## 184          03/11/2009    6
## 185          04/04/2013    6
## 186          04/09/2013    6
## 187          05/04/2014    6
## 188          05/12/2013    6
## 189          06/06/2012    6
## 190          06/10/2008    6
## 191          07/03/2008    6
## 192          07/06/2006    6
## 193          07/08/2013    6
## 194          08/10/2013    6
## 195          08/11/2006    6
## 196          08/11/2010    6
## 197          08/12/2008    6
## 198          09/05/2007    6
## 199          09/05/2014    6
## 200          09/08/2012    6
## 201          10/08/2007    6
## 202          11/04/2008    6
## 203          11/07/2007    6
## 204          12/12/2013    6
## 205          13/01/2014    6
## 206          13/03/2013    6
## 207          13/10/2009    6
## 208          14/09/2011    6
## 209          14/10/2013    6
## 210          15/07/2010    6
## 211          15/11/2011    6
## 212          17/01/2012    6
## 213          17/05/2006    6
## 214          18/06/2010    6
## 215          18/07/2012    6
## 216          19/03/2013    6
## 217          19/06/2009    6
## 218          20/03/2013    6
## 219          20/12/2007    6
## 220          21/02/2014    6
## 221          21/06/2011    6
## 222          21/12/2006    6
## 223          22/01/2014    6
## 224          22/05/2013    6
## 225          22/10/2013    6
## 226          22/11/2010    6
## 227          23/04/2014    6
## 228          23/06/2014    6
## 229          23/08/2005    6
## 230          23/11/2013    6
## 231          24/04/2006    6
## 232          25/02/2014    6
## 233          25/03/2010    6
## 234          25/06/2011    6
## 235          26/03/2014    6
## 236          27/01/2014    6
## 237          27/02/2008    6
## 238          27/03/2014    6
## 239          27/04/2011    6
## 240          28/05/2013    6
## 241          28/10/2013    6
## 242          28/11/2012    6
## 243          29/04/2013    6
## 244          29/08/2008    6
## 245          29/09/2008    6
## 246          29/10/2007    6
## 247          31/08/2010    6
## 248          01/10/2013    5
## 249          01/11/2010    5
## 250          01/11/2012    5
## 251          01/12/2010    5
## 252          02/05/2005    5
## 253          02/05/2014    5
## 254          02/07/2012    5
## 255          02/10/2013    5
## 256          03/02/2010    5
## 257          03/03/2010    5
## 258          03/07/2012    5
## 259          04/12/2013    5
## 260          05/01/2006    5
## 261          05/01/2011    5
## 262          05/02/2008    5
## 263          05/06/2009    5
## 264          05/07/2006    5
## 265          05/09/2007    5
## 266          05/11/2013    5
## 267          06/05/2013    5
## 268          06/06/2008    5
## 269          06/06/2011    5
## 270          06/11/2008    5
## 271          06/12/2011    5
## 272          07/01/2009    5
## 273          07/06/2007    5
## 274          07/06/2010    5
## 275          07/06/2013    5
## 276          07/09/2011    5
## 277          08/01/2013    5
## 278          08/08/2012    5
## 279          08/08/2013    5
## 280          08/10/2007    5
## 281          10/02/2012    5
## 282          10/06/2014    5
## 283          10/07/2006    5
## 284          10/07/2007    5
## 285          10/09/2010    5
## 286          11/02/2014    5
## 287          11/03/2008    5
## 288          11/04/2012    5
## 289          11/06/2008    5
## 290          11/06/2014    5
## 291          12/03/2004    5
## 292          12/03/2007    5
## 293          12/03/2013    5
## 294          12/03/2014    5
## 295          12/05/2008    5
## 296          12/06/2013    5
## 297          12/06/2014    5
## 298          12/07/2000    5
## 299          12/09/2011    5
## 300          12/09/2013    5
## 301          12/11/2012    5
## 302          13/05/2008    5
## 303          13/06/2014    5
## 304          13/12/2007    5
## 305          14/01/2008    5
## 306          14/05/2012    5
## 307          14/10/2008    5
## 308          14/12/2010    5
## 309          15/06/2010    5
## 310          15/10/2008    5
## 311          16/05/2013    5
## 312          16/06/2010    5
## 313          16/06/2014    5
## 314          16/09/2010    5
## 315          17/03/2006    5
## 316          17/03/2014    5
## 317          17/05/2005    5
## 318          17/09/2012    5
## 319          17/09/2013    5
## 320          17/12/2009    5
## 321          17/12/2012    5
## 322          18/01/2010    5
## 323          18/02/2013    5
## 324          18/10/2013    5
## 325          18/11/2008    5
## 326          19/05/2008    5
## 327          19/08/2010    5
## 328          19/09/2007    5
## 329          19/10/2012    5
## 330          19/10/2013    5
## 331          19/11/2011    5
## 332          19/12/2005    5
## 333          20/05/2010    5
## 334          20/06/2012    5
## 335          20/06/2013    5
## 336          21/03/2013    5
## 337          21/07/2003    5
## 338          21/08/2013    5
## 339          21/09/2011    5
## 340          22/05/2006    5
## 341          22/05/2012    5
## 342          22/07/2012    5
## 343          22/07/2013    5
## 344          22/08/2006    5
## 345          23/04/2007    5
## 346          23/04/2010    5
## 347          23/05/2006    5
## 348          23/05/2012    5
## 349          23/05/2014    5
## 350          23/07/2008    5
## 351          23/08/2007    5
## 352          24/10/2006    5
## 353          25/05/2005    5
## 354          25/10/2011    5
## 355          25/10/2013    5
## 356          26/01/2010    5
## 357          26/04/2012    5
## 358          26/06/2011    5
## 359          26/09/2012    5
## 360          27/04/2007    5
## 361          27/05/2008    5
## 362          27/07/2011    5
## 363          27/08/2007    5
## 364          28/01/2008    5
## 365          28/02/2011    5
## 366          28/05/2012    5
## 367          28/10/2009    5
## 368          29/07/2005    5
## 369          30/12/2013    5
## 370          31/01/2011    5
## 371          31/05/2011    5
## 372          31/07/2013    5
## 373          31/10/2012    5
## 374          01/04/2013    4
## 375          01/05/2014    4
## 376          01/11/2013    4
## 377          02/02/2006    4
## 378          02/02/2013    4
## 379          02/05/2013    4
## 380          02/07/2011    4
## 381          02/07/2013    4
## 382          02/08/2007    4
## 383          02/11/2007    4
## 384          03/01/2014    4
## 385          03/04/2014    4
## 386          03/06/2005    4
## 387          03/06/2012    4
## 388          03/08/2007    4
## 389          03/08/2010    4
## 390          03/10/2006    4
## 391          03/12/2013    4
## 392          04/01/2008    4
## 393          04/02/2013    4
## 394          04/03/2013    4
## 395          04/03/2014    4
## 396          04/04/2012    4
## 397          04/11/2012    4
## 398          05/02/2013    4
## 399          05/04/2010    4
## 400          05/05/2014    4
## 401          05/06/2013    4
## 402          05/08/2011    4
## 403          05/09/2013    4
## 404          06/01/2012    4
## 405          06/01/2013    4
## 406          06/04/2011    4
## 407          06/08/2013    4
## 408          06/11/2009    4
## 409          07/05/2014    4
## 410          07/07/2011    4
## 411          07/12/2009    4
## 412          08/01/2009    4
## 413          08/04/2011    4
## 414          08/06/2010    4
## 415          08/08/2005    4
## 416          09/01/2013    4
## 417          09/04/2010    4
## 418          09/05/2006    4
## 419          09/09/2008    4
## 420          09/11/2009    4
## 421          10/02/2010    4
## 422          10/04/2012    4
## 423          10/10/2007    4
## 424          10/11/2008    4
## 425          10/11/2009    4
## 426          11/02/2013    4
## 427          11/04/2006    4
## 428          11/04/2011    4
## 429          11/04/2013    4
## 430          11/04/2014    4
## 431          11/05/2011    4
## 432          11/06/2012    4
## 433          11/09/2013    4
## 434          11/10/2011    4
## 435          11/10/2012    4
## 436          11/11/2010    4
## 437          12/04/2013    4
## 438          12/05/2014    4
## 439          12/07/2010    4
## 440          12/07/2012    4
## 441          12/10/2011    4
## 442          12/12/2007    4
## 443          12/12/2008    4
## 444          13/03/2007    4
## 445          13/06/2008    4
## 446          13/08/2008    4
## 447          13/09/2013    4
## 448          13/10/2011    4
## 449          13/11/2008    4
## 450          13/11/2013    4
## 451          13/12/2010    4
## 452          13/12/2011    4
## 453          13/12/2012    4
## 454          14/06/2013    4
## 455          14/09/2012    4
## 456          14/11/2013    4
## 457          15/02/2008    4
## 458          15/03/2007    4
## 459          15/04/2014    4
## 460          15/05/2012    4
## 461          15/07/2005    4
## 462          15/08/2007    4
## 463          15/11/2013    4
## 464          16/01/2013    4
## 465          16/03/2011    4
## 466          16/04/2014    4
## 467          16/05/2011    4
## 468          16/05/2012    4
## 469          16/06/2009    4
## 470          16/10/2007    4
## 471          16/10/2008    4
## 472          16/10/2012    4
## 473          16/12/2008    4
## 474          17/04/2014    4
## 475          17/07/2003    4
## 476          18/03/2014    4
## 477          18/04/2008    4
## 478          18/05/2007    4
## 479          18/08/2010    4
## 480          19/01/2007    4
## 481          19/02/2013    4
## 482          19/02/2014    4
## 483          19/03/2012    4
## 484          19/06/2008    4
## 485          19/06/2010    4
## 486          19/06/2012    4
## 487          19/06/2013    4
## 488          19/08/2013    4
## 489          19/09/2011    4
## 490          19/12/2010    4
## 491          19/12/2013    4
## 492          20/01/2012    4
## 493          20/03/2014    4
## 494          20/06/2005    4
## 495          20/08/2012    4
## 496          20/09/2007    4
## 497          20/09/2011    4
## 498          20/09/2013    4
## 499          21/01/2009    4
## 500          21/01/2012    4
## 501          21/03/2006    4
## 502          21/04/2010    4
## 503          21/04/2014    4
## 504          21/05/2013    4
## 505          21/09/2006    4
## 506          21/10/2008    4
## 507          22/02/2006    4
## 508          22/03/2011    4
## 509          22/04/2008    4
## 510          22/05/2007    4
## 511          22/06/2014    4
## 512          22/08/2012    4
## 513          22/10/2008    4
## 514          22/11/2011    4
## 515          22/12/2005    4
## 516          22/12/2009    4
## 517          22/12/2013    4
## 518          23/04/2013    4
## 519          23/06/2011    4
## 520          23/08/2013    4
## 521          23/09/2013    4
## 522          23/10/2007    4
## 523          23/10/2012    4
## 524          23/10/2013    4
## 525          24/03/2013    4
## 526          24/03/2014    4
## 527          24/06/2011    4
## 528          24/07/2013    4
## 529          24/09/2011    4
## 530          24/11/2010    4
## 531          25/01/2010    4
## 532          25/03/2012    4
## 533          25/06/2008    4
## 534          25/06/2010    4
## 535          26/02/2013    4
## 536          26/02/2014    4
## 537          26/03/2012    4
## 538          26/03/2013    4
## 539          26/04/2006    4
## 540          26/07/2012    4
## 541          26/09/2006    4
## 542          26/09/2008    4
## 543          27/01/2010    4
## 544          27/02/2009    4
## 545          27/06/2006    4
## 546          27/09/2012    4
## 547          27/09/2013    4
## 548          28/01/2013    4
## 549          28/02/2014    4
## 550          28/03/2006    4
## 551          28/03/2007    4
## 552          28/08/2013    4
## 553          28/09/2009    4
## 554          28/11/2006    4
## 555          29/04/2010    4
## 556          29/05/2012    4
## 557          29/06/2006    4
## 558          29/07/2013    4
## 559          29/10/2013    4
## 560          29/11/2011    4
## 561          30/10/2009    4
## 562          31/03/2010    4
## 563          31/03/2011    4
## 564          31/03/2013    4
## 565          31/12/2013    4
## 566          01/02/2006    3
## 567          01/07/2013    3
## 568          01/08/2005    3
## 569          01/09/2013    3
## 570          01/11/2006    3
## 571          01/11/2011    3
## 572          02/03/2011    3
## 573          02/04/2014    3
## 574          02/05/2006    3
## 575          02/06/2005    3
## 576          02/06/2010    3
## 577          02/06/2012    3
## 578          02/07/2007    3
## 579          02/07/2010    3
## 580          02/08/2006    3
## 581          02/10/2012    3
## 582          02/12/2008    3
## 583          02/12/2012    3
## 584          03/01/2012    3
## 585          03/02/2013    3
## 586          03/03/2004    3
## 587          03/03/2008    3
## 588          03/05/2010    3
## 589          03/06/2014    3
## 590          03/08/2005    3
## 591          03/09/2008    3
## 592          03/11/2013    3
## 593          03/12/2012    3
## 594          04/02/2012    3
## 595          04/02/2014    3
## 596          04/03/2008    3
## 597          04/05/2009    3
## 598          04/06/2012    3
## 599          04/06/2013    3
## 600          04/07/2011    3
## 601          04/08/2005    3
## 602          04/08/2008    3
## 603          04/08/2012    3
## 604          04/09/2011    3
## 605          04/10/2012    3
## 606          04/10/2013    3
## 607          04/11/2013    3
## 608          05/02/2010    3
## 609          05/05/2011    3
## 610          05/05/2012    3
## 611          05/09/2012    3
## 612          05/10/2011    3
## 613          05/11/2012    3
## 614          06/01/2009    3
## 615          06/02/2010    3
## 616          06/03/2008    3
## 617          06/04/2009    3
## 618          06/05/2010    3
## 619          06/08/2008    3
## 620          06/09/2006    3
## 621          06/09/2013    3
## 622          06/10/2012    3
## 623          06/12/2005    3
## 624          07/02/2008    3
## 625          07/04/2011    3
## 626          07/05/2013    3
## 627          07/06/2014    3
## 628          07/08/2008    3
## 629          07/12/2013    3
## 630          08/01/2010    3
## 631          08/02/2010    3
## 632          08/02/2011    3
## 633          08/03/2000    3
## 634          08/03/2012    3
## 635          08/05/2006    3
## 636          08/05/2014    3
## 637          08/06/2005    3
## 638          08/06/2014    3
## 639          08/10/2012    3
## 640          08/11/2007    3
## 641          09/03/2006    3
## 642          09/04/2013    3
## 643          09/09/2010    3
## 644          09/10/2008    3
## 645          09/10/2012    3
## 646          09/11/2007    3
## 647          09/11/2013    3
## 648          09/12/2008    3
## 649          10/01/2007    3
## 650          10/02/2003    3
## 651          10/02/2006    3
## 652          10/02/2014    3
## 653          10/04/2006    3
## 654          10/04/2007    3
## 655          10/04/2011    3
## 656          10/05/2006    3
## 657          10/06/2010    3
## 658          10/08/2011    3
## 659          10/10/2012    3
## 660          10/12/2007    3
## 661          10/12/2008    3
## 662          10/12/2011    3
## 663          11/01/2012    3
## 664          11/03/2012    3
## 665          11/05/2010    3
## 666          11/06/2013    3
## 667          11/07/2012    3
## 668          11/08/2006    3
## 669          11/09/2012    3
## 670          11/10/2005    3
## 671          11/11/2013    3
## 672          12/01/2011    3
## 673          12/05/2006    3
## 674          12/05/2011    3
## 675          12/05/2012    3
## 676          12/05/2013    3
## 677          12/07/2013    3
## 678          12/10/2005    3
## 679          12/11/2008    3
## 680          13/01/2013    3
## 681          13/02/2006    3
## 682          13/02/2013    3
## 683          13/03/2008    3
## 684          13/03/2011    3
## 685          13/03/2014    3
## 686          13/04/2007    3
## 687          13/05/2012    3
## 688          13/06/2012    3
## 689          13/07/2007    3
## 690          13/09/2012    3
## 691          13/11/2011    3
## 692          14/02/2006    3
## 693          14/03/2007    3
## 694          14/03/2011    3
## 695          14/04/2008    3
## 696          14/04/2011    3
## 697          14/05/2013    3
## 698          14/07/2006    3
## 699          14/07/2008    3
## 700          14/08/2013    3
## 701          14/09/2007    3
## 702          14/11/2007    3
## 703          15/01/2013    3
## 704          15/01/2014    3
## 705          15/05/2007    3
## 706          15/06/2005    3
## 707          15/06/2006    3
## 708          15/06/2007    3
## 709          15/06/2009    3
## 710          15/06/2012    3
## 711          15/09/2010    3
## 712          15/10/2009    3
## 713          15/10/2013    3
## 714          15/11/2010    3
## 715          15/11/2012    3
## 716          15/12/2012    3
## 717          16/01/2008    3
## 718          16/01/2011    3
## 719          16/01/2012    3
## 720          16/02/2010    3
## 721          16/03/2006    3
## 722          16/04/2008    3
## 723          16/05/2008    3
## 724          16/09/2008    3
## 725          16/11/2013    3
## 726          16/12/2010    3
## 727          17/03/2010    3
## 728          17/04/2006    3
## 729          17/04/2009    3
## 730          17/04/2013    3
## 731          17/06/2008    3
## 732          17/06/2012    3
## 733          17/06/2014    3
## 734          17/07/2007    3
## 735          17/07/2008    3
## 736          17/08/2007    3
## 737          17/09/2010    3
## 738          17/10/2008    3
## 739          17/11/2005    3
## 740          17/11/2013    3
## 741          17/12/2007    3
## 742          17/12/2011    3
## 743          18/01/2011    3
## 744          18/04/2007    3
## 745          18/04/2011    3
## 746          18/05/2006    3
## 747          18/05/2014    3
## 748          18/06/2008    3
## 749          18/06/2013    3
## 750          18/07/2007    3
## 751          18/07/2013    3
## 752          18/09/2007    3
## 753          18/09/2013    3
## 754          18/11/2011    3
## 755          18/11/2013    3
## 756          18/12/2012    3
## 757          18/12/2013    3
## 758          19/01/2014    3
## 759          19/02/2009    3
## 760          19/03/2014    3
## 761          19/04/2005    3
## 762          19/04/2010    3
## 763          19/05/2013    3
## 764          19/05/2014    3
## 765          19/06/2007    3
## 766          19/08/2011    3
## 767          19/09/2005    3
## 768          19/11/2013    3
## 769          19/12/2009    3
## 770          20/01/2010    3
## 771          20/01/2014    3
## 772          20/02/2007    3
## 773          20/02/2012    3
## 774          20/02/2014    3
## 775          20/05/2008    3
## 776          20/05/2009    3
## 777          20/05/2012    3
## 778          20/05/2013    3
## 779          20/05/2014    3
## 780          20/06/2008    3
## 781          20/08/2007    3
## 782          20/08/2008    3
## 783          20/08/2013    3
## 784          20/10/2006    3
## 785          20/10/2008    3
## 786          20/10/2013    3
## 787          20/12/2011    3
## 788          21/01/2010    3
## 789          21/03/2012    3
## 790          21/03/2014    3
## 791          21/05/2014    3
## 792          21/06/2007    3
## 793          21/06/2014    3
## 794          21/08/2012    3
## 795          21/10/2011    3
## 796          21/11/2005    3
## 797          21/11/2008    3
## 798          21/11/2012    3
## 799          21/12/2005    3
## 800          21/12/2009    3
## 801          21/12/2010    3
## 802          21/12/2012    3
## 803          21/12/2013    3
## 804          22/01/2013    3
## 805          22/02/2012    3
## 806          22/02/2013    3
## 807          22/03/2010    3
## 808          22/03/2014    3
## 809          22/04/2005    3
## 810          22/05/2014    3
## 811          22/12/2012    3
## 812          23/01/2010    3
## 813          23/02/2012    3
## 814          23/02/2013    3
## 815          23/03/2007    3
## 816          23/03/2009    3
## 817          23/05/2013    3
## 818          23/06/2006    3
## 819          23/07/2007    3
## 820          23/07/2013    3
## 821          23/09/2011    3
## 822          23/10/2008    3
## 823          24/01/2006    3
## 824          24/01/2014    3
## 825          24/02/2014    3
## 826          24/04/2007    3
## 827          24/04/2008    3
## 828          24/04/2013    3
## 829          24/06/2010    3
## 830          24/06/2014    3
## 831          24/07/2008    3
## 832          24/07/2012    3
## 833          24/08/2011    3
## 834          24/09/2012    3
## 835          24/10/2007    3
## 836          24/10/2011    3
## 837          24/10/2012    3
## 838          24/11/2008    3
## 839          25/01/2007    3
## 840          25/01/2011    3
## 841          25/01/2014    3
## 842          25/02/2008    3
## 843          25/02/2009    3
## 844          25/02/2013    3
## 845          25/03/2011    3
## 846          25/04/2011    3
## 847          25/05/2012    3
## 848          25/06/2013    3
## 849          25/09/2008    3
## 850          25/10/2005    3
## 851          25/10/2007    3
## 852          26/03/2009    3
## 853          26/04/2011    3
## 854          26/05/2014    3
## 855          26/06/2007    3
## 856          26/06/2014    3
## 857          26/07/2006    3
## 858          26/09/2007    3
## 859          26/09/2011    3
## 860          26/11/2012    3
## 861          26/12/2007    3
## 862          26/12/2008    3
## 863          27/03/2012    3
## 864          27/04/2006    3
## 865          27/04/2012    3
## 866          27/05/2010    3
## 867          27/05/2014    3
## 868          27/06/2008    3
## 869          27/08/2012    3
## 870          27/10/2011    3
## 871          27/11/2012    3
## 872          28/03/2013    3
## 873          28/04/2005    3
## 874          28/04/2008    3
## 875          28/04/2009    3
## 876          28/05/2011    3
## 877          28/05/2014    3
## 878          28/07/2009    3
## 879          28/08/2007    3
## 880          28/08/2008    3
## 881          28/08/2012    3
## 882          28/09/2006    3
## 883          28/10/2005    3
## 884          28/10/2008    3
## 885          28/10/2011    3
## 886          28/12/2013    3
## 887          29/01/2007    3
## 888          29/01/2010    3
## 889          29/03/2006    3
## 890          29/03/2010    3
## 891          29/03/2011    3
## 892          29/04/2014    3
## 893          29/05/2009    3
## 894          29/06/2012    3
## 895          29/10/2009    3
## 896          29/11/2010    3
## 897          29/12/2009    3
## 898          30/05/2012    3
## 899          30/06/2011    3
## 900          30/06/2014    3
## 901          30/08/2013    3
## 902          30/10/2012    3
## 903          30/12/2008    3
## 904          31/05/2012    3
## 905          31/07/2012    3
## 906          31/12/2012    3
## 907          01/01/2012    2
## 908          01/01/2014    2
## 909          01/02/2007    2
## 910          01/02/2010    2
## 911          01/03/2006    2
## 912          01/04/2010    2
## 913          01/04/2014    2
## 914          01/05/2009    2
## 915          01/05/2013    2
## 916          01/06/2006    2
## 917          01/06/2009    2
## 918          01/06/2012    2
## 919          01/07/2008    2
## 920          01/08/2013    2
## 921          01/09/2005    2
## 922          01/09/2012    2
## 923          01/10/2007    2
## 924          01/11/2007    2
## 925          01/12/2006    2
## 926          01/12/2012    2
## 927          02/01/2008    2
## 928          02/02/2010    2
## 929          02/03/2010    2
## 930          02/04/2008    2
## 931          02/04/2009    2
## 932          02/04/2012    2
## 933          02/05/2008    2
## 934          02/05/2012    2
## 935          02/06/2008    2
## 936          02/06/2009    2
## 937          02/06/2013    2
## 938          02/07/2008    2
## 939          02/08/2011    2
## 940          02/09/2008    2
## 941          02/12/2009    2
## 942          03/01/2006    2
## 943          03/01/2013    2
## 944          03/02/2009    2
## 945          03/03/2009    2
## 946          03/04/2006    2
## 947          03/04/2007    2
## 948          03/04/2013    2
## 949          03/05/2011    2
## 950          03/06/2008    2
## 951          03/06/2010    2
## 952          03/07/2006    2
## 953          03/07/2008    2
## 954          03/09/2013    2
## 955          03/10/2007    2
## 956          03/10/2008    2
## 957          03/11/2006    2
## 958          04/01/2010    2
## 959          04/01/2013    2
## 960          04/02/2008    2
## 961          04/03/2010    2
## 962          04/05/2010    2
## 963          04/05/2014    2
## 964          04/06/2008    2
## 965          04/06/2010    2
## 966          04/06/2014    2
## 967          04/07/2012    2
## 968          04/09/2007    2
## 969          04/10/2007    2
## 970          04/10/2011    2
## 971          04/11/2009    2
## 972          04/12/2011    2
## 973          05/01/2007    2
## 974          05/02/2014    2
## 975          05/03/2008    2
## 976          05/04/2011    2
## 977          05/04/2013    2
## 978          05/05/2005    2
## 979          05/05/2010    2
## 980          05/06/2007    2
## 981          05/07/2005    2
## 982          05/07/2012    2
## 983          05/07/2013    2
## 984          05/08/2005    2
## 985          05/08/2008    2
## 986          05/08/2013    2
## 987          05/10/2005    2
## 988          05/10/2006    2
## 989          05/10/2012    2
## 990          05/12/2012    2
## 991          06/01/2011    2
## 992          06/02/2007    2
## 993          06/02/2008    2
## 994          06/02/2009    2
## 995          06/02/2014    2
## 996          06/03/2013    2
## 997          06/03/2014    2
## 998          06/04/2010    2
## 999          06/04/2014    2
## 1000         06/05/2008    2
## 1001         06/06/2006    2
## 1002         06/07/2007    2
## 1003         06/07/2012    2
## 1004         06/07/2013    2
## 1005         06/08/2010    2
## 1006         06/08/2012    2
## 1007         06/09/2012    2
## 1008         06/10/2006    2
## 1009         06/10/2009    2
## 1010         06/11/2006    2
## 1011         06/11/2007    2
## 1012         06/12/2013    2
## 1013         07/01/2010    2
## 1014         07/01/2012    2
## 1015         07/02/2013    2
## 1016         07/03/2012    2
## 1017         07/03/2014    2
## 1018         07/04/2005    2
## 1019         07/04/2006    2
## 1020         07/04/2008    2
## 1021         07/04/2013    2
## 1022         07/04/2014    2
## 1023         07/05/2007    2
## 1024         07/05/2008    2
## 1025         07/08/2007    2
## 1026         07/09/2007    2
## 1027         07/10/2008    2
## 1028         07/10/2010    2
## 1029         07/11/2007    2
## 1030         07/11/2008    2
## 1031         07/11/2011    2
## 1032         07/11/2012    2
## 1033         07/12/2005    2
## 1034         08/01/2007    2
## 1035         08/01/2014    2
## 1036         08/02/2012    2
## 1037         08/02/2013    2
## 1038         08/03/2010    2
## 1039         08/04/2010    2
## 1040         08/04/2014    2
## 1041         08/07/2005    2
## 1042         08/07/2008    2
## 1043         08/07/2011    2
## 1044         08/07/2012    2
## 1045         08/08/2002    2
## 1046         08/09/2005    2
## 1047         08/09/2006    2
## 1048         08/09/2010    2
## 1049         08/10/2008    2
## 1050         08/11/2011    2
## 1051         08/11/2013    2
## 1052         09/01/2007    2
## 1053         09/01/2012    2
## 1054         09/02/2009    2
## 1055         09/02/2013    2
## 1056         09/02/2014    2
## 1057         09/03/2009    2
## 1058         09/03/2012    2
## 1059         09/04/2008    2
## 1060         09/04/2014    2
## 1061         09/06/2005    2
## 1062         09/06/2008    2
## 1063         09/06/2009    2
## 1064         09/06/2013    2
## 1065         09/07/2010    2
## 1066         09/07/2011    2
## 1067         09/07/2013    2
## 1068         09/08/2007    2
## 1069         09/08/2013    2
## 1070         09/09/2011    2
## 1071         09/10/2006    2
## 1072         09/10/2009    2
## 1073         09/10/2013    2
## 1074         09/11/2006    2
## 1075         09/11/2010    2
## 1076         09/11/2011    2
## 1077         09/12/2013    2
## 1078         10/01/2011    2
## 1079         10/01/2013    2
## 1080         10/03/2008    2
## 1081         10/03/2012    2
## 1082         10/03/2013    2
## 1083         10/03/2014    2
## 1084         10/04/2008    2
## 1085         10/05/2007    2
## 1086         10/05/2013    2
## 1087         10/06/2005    2
## 1088         10/06/2009    2
## 1089         10/07/2008    2
## 1090         10/07/2013    2
## 1091         10/08/2006    2
## 1092         10/08/2010    2
## 1093         10/10/2005    2
## 1094         10/10/2011    2
## 1095         10/12/2009    2
## 1096         10/12/2013    2
## 1097         11/02/2011    2
## 1098         11/03/2009    2
## 1099         11/03/2010    2
## 1100         11/03/2013    2
## 1101         11/03/2014    2
## 1102         11/04/2007    2
## 1103         11/05/2006    2
## 1104         11/05/2012    2
## 1105         11/06/2007    2
## 1106         11/06/2009    2
## 1107         11/06/2010    2
## 1108         11/09/2008    2
## 1109         11/10/2006    2
## 1110         11/11/2005    2
## 1111         11/12/2009    2
## 1112         11/12/2012    2
## 1113         11/12/2013    2
## 1114         12/01/2006    2
## 1115         12/01/2009    2
## 1116         12/01/2012    2
## 1117         12/02/2009    2
## 1118         12/02/2010    2
## 1119         12/03/2008    2
## 1120         12/04/2007    2
## 1121         12/04/2011    2
## 1122         12/04/2012    2
## 1123         12/06/2002    2
## 1124         12/06/2007    2
## 1125         12/08/2005    2
## 1126         12/09/2005    2
## 1127         12/09/2012    2
## 1128         12/10/2009    2
## 1129         12/11/2011    2
## 1130         12/11/2013    2
## 1131         12/12/2005    2
## 1132         12/12/2006    2
## 1133         12/12/2011    2
## 1134         13/01/2004    2
## 1135         13/01/2009    2
## 1136         13/02/2008    2
## 1137         13/02/2012    2
## 1138         13/03/2006    2
## 1139         13/04/2005    2
## 1140         13/04/2011    2
## 1141         13/04/2013    2
## 1142         13/06/2007    2
## 1143         13/07/2012    2
## 1144         13/08/2007    2
## 1145         13/08/2010    2
## 1146         13/09/2005    2
## 1147         13/09/2011    2
## 1148         13/10/2008    2
## 1149         14/01/2014    2
## 1150         14/02/2007    2
## 1151         14/02/2008    2
## 1152         14/03/2008    2
## 1153         14/03/2013    2
## 1154         14/03/2014    2
## 1155         14/04/2009    2
## 1156         14/04/2014    2
## 1157         14/05/2008    2
## 1158         14/05/2014    2
## 1159         14/06/2010    2
## 1160         14/06/2012    2
## 1161         14/09/2005    2
## 1162         14/09/2006    2
## 1163         14/10/2010    2
## 1164         14/11/2010    2
## 1165         14/12/2007    2
## 1166         14/12/2013    2
## 1167         15/01/2010    2
## 1168         15/01/2012    2
## 1169         15/02/2006    2
## 1170         15/02/2007    2
## 1171         15/02/2012    2
## 1172         15/04/2009    2
## 1173         15/04/2011    2
## 1174         15/05/2013    2
## 1175         15/08/2008    2
## 1176         15/08/2011    2
## 1177         15/08/2012    2
## 1178         15/08/2013    2
## 1179         15/09/2005    2
## 1180         15/09/2008    2
## 1181         15/11/2006    2
## 1182         15/11/2007    2
## 1183         15/12/2005    2
## 1184         16/01/2006    2
## 1185         16/02/2007    2
## 1186         16/02/2011    2
## 1187         16/02/2014    2
## 1188         16/03/2013    2
## 1189         16/04/2010    2
## 1190         16/05/2005    2
## 1191         16/05/2007    2
## 1192         16/05/2014    2
## 1193         16/06/2005    2
## 1194         16/06/2008    2
## 1195         16/07/2007    2
## 1196         16/07/2010    2
## 1197         16/08/2006    2
## 1198         16/09/2005    2
## 1199         16/09/2013    2
## 1200         16/10/2013    2
## 1201         16/11/2001    2
## 1202         16/11/2005    2
## 1203         16/12/2005    2
## 1204         16/12/2009    2
## 1205         16/12/2011    2
## 1206         16/12/2013    2
## 1207         17/02/2012    2
## 1208         17/02/2014    2
## 1209         17/03/2008    2
## 1210         17/03/2013    2
## 1211         17/04/2007    2
## 1212         17/05/2007    2
## 1213         17/05/2012    2
## 1214         17/06/2009    2
## 1215         17/06/2010    2
## 1216         17/06/2013    2
## 1217         17/07/2013    2
## 1218         17/08/2006    2
## 1219         17/08/2010    2
## 1220         17/08/2011    2
## 1221         17/08/2013    2
## 1222         17/10/2005    2
## 1223         17/10/2011    2
## 1224         17/11/2006    2
## 1225         17/11/2008    2
## 1226         17/11/2010    2
## 1227         17/12/2008    2
## 1228         17/12/2010    2
## 1229         17/12/2013    2
## 1230         18/01/2007    2
## 1231         18/01/2008    2
## 1232         18/01/2013    2
## 1233         18/01/2014    2
## 1234         18/02/2008    2
## 1235         18/02/2009    2
## 1236         18/04/2005    2
## 1237         18/05/2005    2
## 1238         18/05/2009    2
## 1239         18/05/2010    2
## 1240         18/06/2009    2
## 1241         18/07/2006    2
## 1242         18/07/2011    2
## 1243         18/08/2006    2
## 1244         18/09/2012    2
## 1245         18/10/2005    2
## 1246         18/10/2011    2
## 1247         18/12/2002    2
## 1248         18/12/2007    2
## 1249         18/12/2011    2
## 1250         19/01/2012    2
## 1251         19/01/2013    2
## 1252         19/02/2008    2
## 1253         19/02/2011    2
## 1254         19/03/2008    2
## 1255         19/03/2011    2
## 1256         19/04/2006    2
## 1257         19/04/2013    2
## 1258         19/05/2009    2
## 1259         19/05/2010    2
## 1260         19/06/2006    2
## 1261         19/07/2011    2
## 1262         19/08/2005    2
## 1263         19/08/2008    2
## 1264         19/08/2012    2
## 1265         19/09/2012    2
## 1266         19/09/2013    2
## 1267         19/11/2012    2
## 1268         19/12/2012    2
## 1269         20/01/2009    2
## 1270         20/02/2008    2
## 1271         20/02/2013    2
## 1272         20/03/2006    2
## 1273         20/03/2012    2
## 1274         20/04/2007    2
## 1275         20/04/2010    2
## 1276         20/05/2011    2
## 1277         20/06/2014    2
## 1278         20/07/2007    2
## 1279         20/08/2010    2
## 1280         20/09/2005    2
## 1281         20/09/2012    2
## 1282         20/10/2005    2
## 1283         20/10/2011    2
## 1284         20/11/2007    2
## 1285         20/11/2012    2
## 1286         20/11/2013    2
## 1287         20/12/2006    2
## 1288         21/01/2008    2
## 1289         21/02/2007    2
## 1290         21/02/2012    2
## 1291         21/02/2013    2
## 1292         21/04/2012    2
## 1293         21/06/2005    2
## 1294         21/07/2005    2
## 1295         21/07/2006    2
## 1296         21/07/2008    2
## 1297         21/09/2007    2
## 1298         21/09/2012    2
## 1299         21/09/2013    2
## 1300         21/11/2006    2
## 1301         21/11/2011    2
## 1302         21/12/2011    2
## 1303         22/01/2008    2
## 1304         22/01/2010    2
## 1305         22/02/2008    2
## 1306         22/02/2011    2
## 1307         22/03/2006    2
## 1308         22/03/2007    2
## 1309         22/03/2013    2
## 1310         22/05/2008    2
## 1311         22/05/2011    2
## 1312         22/06/2009    2
## 1313         22/06/2010    2
## 1314         22/06/2013    2
## 1315         22/07/2008    2
## 1316         22/07/2010    2
## 1317         22/07/2011    2
## 1318         22/08/2007    2
## 1319         22/08/2011    2
## 1320         22/08/2013    2
## 1321         22/09/2008    2
## 1322         22/09/2013    2
## 1323         22/10/2009    2
## 1324         22/10/2012    2
## 1325         22/12/2006    2
## 1326         22/12/2010    2
## 1327         23/01/2006    2
## 1328         23/01/2012    2
## 1329         23/02/2007    2
## 1330         23/02/2014    2
## 1331         23/03/2006    2
## 1332         23/03/2012    2
## 1333         23/03/2013    2
## 1334         23/04/2008    2
## 1335         23/04/2009    2
## 1336         23/06/2010    2
## 1337         23/07/2010    2
## 1338         23/08/2006    2
## 1339         23/08/2012    2
## 1340         23/09/2010    2
## 1341         23/10/2006    2
## 1342         23/11/2010    2
## 1343         23/11/2011    2
## 1344         23/12/2013    2
## 1345         24/01/2007    2
## 1346         24/01/2008    2
## 1347         24/01/2010    2
## 1348         24/02/2010    2
## 1349         24/03/2006    2
## 1350         24/03/2008    2
## 1351         24/03/2010    2
## 1352         24/04/2009    2
## 1353         24/04/2012    2
## 1354         24/05/2011    2
## 1355         24/05/2013    2
## 1356         24/06/2005    2
## 1357         24/06/2008    2
## 1358         24/07/2003    2
## 1359         24/07/2007    2
## 1360         24/09/2007    2
## 1361         24/09/2008    2
## 1362         24/09/2010    2
## 1363         24/10/2005    2
## 1364         24/10/2013    2
## 1365         24/11/2013    2
## 1366         25/01/2008    2
## 1367         25/03/2008    2
## 1368         25/04/2007    2
## 1369         25/04/2012    2
## 1370         25/07/2008    2
## 1371         25/07/2011    2
## 1372         25/08/2010    2
## 1373         25/08/2011    2
## 1374         25/08/2012    2
## 1375         25/09/2007    2
## 1376         25/09/2012    2
## 1377         25/11/2013    2
## 1378         25/12/2011    2
## 1379         26/01/2006    2
## 1380         26/02/2012    2
## 1381         26/03/2007    2
## 1382         26/04/2010    2
## 1383         26/05/2009    2
## 1384         26/05/2012    2
## 1385         26/06/2008    2
## 1386         26/07/2010    2
## 1387         26/08/2006    2
## 1388         26/08/2013    2
## 1389         26/10/2007    2
## 1390         26/10/2009    2
## 1391         26/10/2011    2
## 1392         26/10/2012    2
## 1393         26/10/2013    2
## 1394         26/12/2012    2
## 1395         26/12/2013    2
## 1396         27/01/2009    2
## 1397         27/02/2012    2
## 1398         27/02/2013    2
## 1399         27/03/2011    2
## 1400         27/04/2013    2
## 1401         27/05/2013    2
## 1402         27/06/2007    2
## 1403         27/06/2012    2
## 1404         27/06/2013    2
## 1405         27/08/2008    2
## 1406         27/09/2006    2
## 1407         27/09/2010    2
## 1408         27/09/2011    2
## 1409         27/10/2008    2
## 1410         27/10/2013    2
## 1411         27/11/2007    2
## 1412         27/11/2011    2
## 1413         28/01/2011    2
## 1414         28/04/2006    2
## 1415         28/04/2010    2
## 1416         28/05/2009    2
## 1417         28/06/2006    2
## 1418         28/06/2010    2
## 1419         28/06/2012    2
## 1420         28/06/2014    2
## 1421         28/07/2010    2
## 1422         28/09/2007    2
## 1423         28/09/2010    2
## 1424         28/09/2011    2
## 1425         28/11/2007    2
## 1426         28/11/2011    2
## 1427         28/12/2010    2
## 1428         29/01/2011    2
## 1429         29/03/2007    2
## 1430         29/04/2005    2
## 1431         29/04/2012    2
## 1432         29/05/2013    2
## 1433         29/06/2014    2
## 1434         29/07/2011    2
## 1435         29/07/2012    2
## 1436         29/09/2005    2
## 1437         29/09/2010    2
## 1438         29/09/2011    2
## 1439         29/11/2007    2
## 1440         30/01/2008    2
## 1441         30/01/2010    2
## 1442         30/01/2013    2
## 1443         30/03/2006    2
## 1444         30/03/2009    2
## 1445         30/03/2010    2
## 1446         30/04/2012    2
## 1447         30/04/2013    2
## 1448         30/04/2014    2
## 1449         30/05/2013    2
## 1450         30/07/2008    2
## 1451         30/07/2013    2
## 1452         30/08/2006    2
## 1453         30/08/2007    2
## 1454         30/08/2012    2
## 1455         30/10/2007    2
## 1456         30/10/2008    2
## 1457         30/11/2010    2
## 1458         30/11/2012    2
## 1459         30/12/2005    2
## 1460         31/03/2014    2
## 1461         31/05/2014    2
## 1462         31/08/2013    2
## 1463         01/01/2013    1
## 1464         01/02/2008    1
## 1465         01/02/2012    1
## 1466         01/02/2013    1
## 1467         01/02/2014    1
## 1468         01/03/2010    1
## 1469         01/03/2013    1
## 1470         01/04/2005    1
## 1471         01/04/2009    1
## 1472         01/04/2011    1
## 1473         01/05/2006    1
## 1474         01/06/2005    1
## 1475         01/06/2011    1
## 1476         01/06/2014    1
## 1477         01/07/2005    1
## 1478         01/07/2010    1
## 1479         01/08/2006    1
## 1480         01/08/2007    1
## 1481         01/08/2008    1
## 1482         01/08/2010    1
## 1483         01/08/2011    1
## 1484         01/08/2012    1
## 1485         01/09/2009    1
## 1486         01/09/2010    1
## 1487         01/10/2009    1
## 1488         01/10/2012    1
## 1489         01/12/2007    1
## 1490         01/12/2008    1
## 1491         01/12/2009    1
## 1492         02/01/2002    1
## 1493         02/02/2007    1
## 1494         02/02/2009    1
## 1495         02/02/2012    1
## 1496         02/02/2014    1
## 1497         02/03/2005    1
## 1498         02/03/2006    1
## 1499         02/03/2007    1
## 1500         02/03/2012    1
## 1501         02/03/2013    1
## 1502         02/04/2007    1
## 1503         02/04/2010    1
## 1504         02/04/2013    1
## 1505         02/05/2007    1
## 1506         02/08/2005    1
## 1507         02/08/2010    1
## 1508         02/09/2005    1
## 1509         02/09/2009    1
## 1510         02/09/2010    1
## 1511         02/09/2013    1
## 1512         02/10/2006    1
## 1513         02/10/2008    1
## 1514         02/10/2011    1
## 1515         02/11/2006    1
## 1516         02/11/2010    1
## 1517         02/11/2011    1
## 1518         02/11/2012    1
## 1519         02/12/2006    1
## 1520         02/12/2011    1
## 1521         03/01/2007    1
## 1522         03/01/2011    1
## 1523         03/02/2006    1
## 1524         03/02/2011    1
## 1525         03/03/2014    1
## 1526         03/04/2008    1
## 1527         03/04/2009    1
## 1528         03/05/2006    1
## 1529         03/05/2007    1
## 1530         03/05/2012    1
## 1531         03/05/2013    1
## 1532         03/06/2009    1
## 1533         03/06/2011    1
## 1534         03/07/2013    1
## 1535         03/08/2011    1
## 1536         03/09/2010    1
## 1537         03/10/2012    1
## 1538         03/10/2013    1
## 1539         03/11/2003    1
## 1540         03/11/2005    1
## 1541         03/11/2008    1
## 1542         03/11/2011    1
## 1543         03/12/2008    1
## 1544         03/12/2009    1
## 1545         03/12/2011    1
## 1546         04/01/2014    1
## 1547         04/02/2010    1
## 1548         04/03/2004    1
## 1549         04/03/2009    1
## 1550         04/03/2011    1
## 1551         04/04/2006    1
## 1552         04/04/2008    1
## 1553         04/04/2009    1
## 1554         04/04/2011    1
## 1555         04/04/2014    1
## 1556         04/05/2004    1
## 1557         04/05/2005    1
## 1558         04/05/2006    1
## 1559         04/05/2007    1
## 1560         04/05/2011    1
## 1561         04/05/2013    1
## 1562         04/06/2005    1
## 1563         04/06/2009    1
## 1564         04/08/2010    1
## 1565         04/08/2011    1
## 1566         04/08/2013    1
## 1567         04/09/2008    1
## 1568         04/09/2012    1
## 1569         04/10/2005    1
## 1570         04/10/2006    1
## 1571         04/11/2006    1
## 1572         04/11/2008    1
## 1573         04/11/2010    1
## 1574         04/12/2006    1
## 1575         04/12/2007    1
## 1576         04/12/2008    1
## 1577         04/12/2012    1
## 1578         05/01/2009    1
## 1579         05/01/2014    1
## 1580         05/02/2007    1
## 1581         05/02/2009    1
## 1582         05/03/2007    1
## 1583         05/03/2009    1
## 1584         05/03/2010    1
## 1585         05/03/2012    1
## 1586         05/03/2013    1
## 1587         05/04/2007    1
## 1588         05/04/2008    1
## 1589         05/05/2006    1
## 1590         05/05/2008    1
## 1591         05/06/2011    1
## 1592         05/06/2012    1
## 1593         05/07/2007    1
## 1594         05/07/2011    1
## 1595         05/09/2006    1
## 1596         05/09/2008    1
## 1597         05/10/2010    1
## 1598         05/11/2002    1
## 1599         05/11/2008    1
## 1600         05/11/2009    1
## 1601         05/12/2005    1
## 1602         05/12/2008    1
## 1603         06/01/2014    1
## 1604         06/02/2013    1
## 1605         06/03/2006    1
## 1606         06/03/2007    1
## 1607         06/03/2009    1
## 1608         06/03/2012    1
## 1609         06/04/2005    1
## 1610         06/04/2006    1
## 1611         06/04/2008    1
## 1612         06/04/2012    1
## 1613         06/04/2013    1
## 1614         06/05/2009    1
## 1615         06/05/2014    1
## 1616         06/06/2007    1
## 1617         06/06/2010    1
## 1618         06/06/2013    1
## 1619         06/07/2004    1
## 1620         06/07/2006    1
## 1621         06/07/2011    1
## 1622         06/08/2007    1
## 1623         06/09/2005    1
## 1624         06/09/2007    1
## 1625         06/09/2010    1
## 1626         06/10/2005    1
## 1627         06/10/2010    1
## 1628         06/10/2011    1
## 1629         06/11/2012    1
## 1630         06/12/2006    1
## 1631         06/12/2007    1
## 1632         06/12/2008    1
## 1633         07/01/2002    1
## 1634         07/01/2008    1
## 1635         07/01/2014    1
## 1636         07/02/2009    1
## 1637         07/02/2012    1
## 1638         07/03/2005    1
## 1639         07/03/2006    1
## 1640         07/03/2013    1
## 1641         07/05/2009    1
## 1642         07/06/2011    1
## 1643         07/06/2012    1
## 1644         07/07/2000    1
## 1645         07/07/2005    1
## 1646         07/07/2008    1
## 1647         07/07/2012    1
## 1648         07/07/2013    1
## 1649         07/09/2006    1
## 1650         07/09/2010    1
## 1651         07/09/2012    1
## 1652         07/09/2013    1
## 1653         07/10/2006    1
## 1654         07/10/2009    1
## 1655         07/10/2011    1
## 1656         07/10/2012    1
## 1657         07/12/2006    1
## 1658         07/12/2008    1
## 1659         07/12/2010    1
## 1660         07/12/2012    1
## 1661         08/01/2008    1
## 1662         08/02/2007    1
## 1663         08/02/2008    1
## 1664         08/03/2006    1
## 1665         08/03/2013    1
## 1666         08/04/2005    1
## 1667         08/04/2009    1
## 1668         08/05/2009    1
## 1669         08/05/2012    1
## 1670         08/06/2006    1
## 1671         08/06/2007    1
## 1672         08/08/2007    1
## 1673         08/09/2009    1
## 1674         08/09/2011    1
## 1675         08/09/2013    1
## 1676         08/10/2010    1
## 1677         08/10/2011    1
## 1678         08/11/2005    1
## 1679         08/11/2008    1
## 1680         08/12/2005    1
## 1681         08/12/2006    1
## 1682         08/12/2011    1
## 1683         09/01/2006    1
## 1684         09/01/2008    1
## 1685         09/02/2006    1
## 1686         09/02/2007    1
## 1687         09/02/2011    1
## 1688         09/03/2004    1
## 1689         09/03/2007    1
## 1690         09/03/2010    1
## 1691         09/03/2011    1
## 1692         09/04/2007    1
## 1693         09/04/2012    1
## 1694         09/05/2005    1
## 1695         09/05/2011    1
## 1696         09/05/2012    1
## 1697         09/06/2006    1
## 1698         09/06/2010    1
## 1699         09/07/2008    1
## 1700         09/08/2005    1
## 1701         09/08/2011    1
## 1702         09/09/2005    1
## 1703         09/10/2011    1
## 1704         09/11/2012    1
## 1705         09/12/2005    1
## 1706         09/12/2011    1
## 1707         09/12/2012    1
## 1708         10/01/2006    1
## 1709         10/01/2012    1
## 1710         10/02/2013    1
## 1711         10/03/2006    1
## 1712         10/05/2005    1
## 1713         10/05/2010    1
## 1714         10/05/2011    1
## 1715         10/06/2008    1
## 1716         10/07/2011    1
## 1717         10/08/2005    1
## 1718         10/09/2007    1
## 1719         10/09/2012    1
## 1720         10/09/2013    1
## 1721         10/10/2006    1
## 1722         10/10/2013    1
## 1723         10/11/2005    1
## 1724         10/11/2006    1
## 1725         10/11/2010    1
## 1726         10/11/2013    1
## 1727         10/12/2010    1
## 1728         11/01/2006    1
## 1729         11/01/2013    1
## 1730         11/02/2010    1
## 1731         11/02/2012    1
## 1732         11/03/2005    1
## 1733         11/04/2005    1
## 1734         11/05/2005    1
## 1735         11/05/2013    1
## 1736         11/05/2014    1
## 1737         11/07/2000    1
## 1738         11/07/2013    1
## 1739         11/08/2010    1
## 1740         11/08/2012    1
## 1741         11/08/2013    1
## 1742         11/09/2007    1
## 1743         11/10/2004    1
## 1744         11/10/2007    1
## 1745         11/10/2013    1
## 1746         11/11/2008    1
## 1747         11/11/2009    1
## 1748         11/12/2007    1
## 1749         12/01/2010    1
## 1750         12/01/2014    1
## 1751         12/02/2004    1
## 1752         12/02/2013    1
## 1753         12/02/2014    1
## 1754         12/03/2009    1
## 1755         12/04/2005    1
## 1756         12/04/2014    1
## 1757         12/05/2004    1
## 1758         12/05/2010    1
## 1759         12/06/2009    1
## 1760         12/06/2011    1
## 1761         12/06/2012    1
## 1762         12/07/2005    1
## 1763         12/07/2006    1
## 1764         12/07/2011    1
## 1765         12/08/2008    1
## 1766         12/08/2009    1
## 1767         12/08/2012    1
## 1768         12/08/2013    1
## 1769         12/09/2007    1
## 1770         12/09/2010    1
## 1771         12/10/2010    1
## 1772         12/10/2012    1
## 1773         12/10/2013    1
## 1774         12/11/2009    1
## 1775         12/12/2010    1
## 1776         13/01/2006    1
## 1777         13/01/2012    1
## 1778         13/02/2007    1
## 1779         13/02/2011    1
## 1780         13/02/2014    1
## 1781         13/03/2010    1
## 1782         13/03/2012    1
## 1783         13/04/2009    1
## 1784         13/04/2010    1
## 1785         13/04/2014    1
## 1786         13/05/2005    1
## 1787         13/05/2010    1
## 1788         13/05/2013    1
## 1789         13/05/2014    1
## 1790         13/06/2006    1
## 1791         13/07/2006    1
## 1792         13/07/2010    1
## 1793         13/08/2013    1
## 1794         13/09/2006    1
## 1795         13/09/2009    1
## 1796         13/09/2010    1
## 1797         13/10/2005    1
## 1798         13/10/2006    1
## 1799         13/10/2013    1
## 1800         13/11/2006    1
## 1801         13/11/2007    1
## 1802         13/11/2009    1
## 1803         13/11/2010    1
## 1804         13/12/2005    1
## 1805         13/12/2013    1
## 1806         14/01/2009    1
## 1807         14/01/2011    1
## 1808         14/01/2012    1
## 1809         14/02/2012    1
## 1810         14/03/2006    1
## 1811         14/05/2010    1
## 1812         14/05/2011    1
## 1813         14/06/2006    1
## 1814         14/06/2007    1
## 1815         14/06/2014    1
## 1816         14/07/2005    1
## 1817         14/07/2011    1
## 1818         14/08/2007    1
## 1819         14/08/2008    1
## 1820         14/08/2011    1
## 1821         14/08/2012    1
## 1822         14/10/2005    1
## 1823         14/10/2011    1
## 1824         14/11/2006    1
## 1825         14/11/2008    1
## 1826         14/11/2012    1
## 1827         14/12/2005    1
## 1828         15/01/2008    1
## 1829         15/02/2010    1
## 1830         15/03/2006    1
## 1831         15/03/2011    1
## 1832         15/03/2014    1
## 1833         15/04/2005    1
## 1834         15/06/2013    1
## 1835         15/06/2014    1
## 1836         15/07/2002    1
## 1837         15/07/2011    1
## 1838         15/08/2010    1
## 1839         15/09/2006    1
## 1840         15/09/2011    1
## 1841         15/09/2012    1
## 1842         15/09/2013    1
## 1843         15/10/2007    1
## 1844         15/10/2010    1
## 1845         15/11/2001    1
## 1846         15/11/2004    1
## 1847         15/11/2005    1
## 1848         15/12/2008    1
## 1849         15/12/2010    1
## 1850         15/12/2013    1
## 1851         16/01/2010    1
## 1852         16/01/2014    1
## 1853         16/02/2006    1
## 1854         16/02/2008    1
## 1855         16/02/2009    1
## 1856         16/02/2012    1
## 1857         16/02/2013    1
## 1858         16/03/2004    1
## 1859         16/03/2005    1
## 1860         16/03/2007    1
## 1861         16/03/2009    1
## 1862         16/03/2010    1
## 1863         16/03/2012    1
## 1864         16/04/2012    1
## 1865         16/04/2013    1
## 1866         16/05/2006    1
## 1867         16/06/2003    1
## 1868         16/06/2006    1
## 1869         16/06/2011    1
## 1870         16/06/2013    1
## 1871         16/07/2008    1
## 1872         16/07/2011    1
## 1873         16/07/2013    1
## 1874         16/08/2004    1
## 1875         16/08/2005    1
## 1876         16/08/2012    1
## 1877         16/09/2009    1
## 1878         16/09/2011    1
## 1879         16/10/2006    1
## 1880         16/10/2010    1
## 1881         16/11/2007    1
## 1882         16/11/2009    1
## 1883         16/11/2011    1
## 1884         16/11/2012    1
## 1885         17/01/2006    1
## 1886         17/01/2008    1
## 1887         17/02/2006    1
## 1888         17/02/2009    1
## 1889         17/02/2010    1
## 1890         17/02/2013    1
## 1891         17/03/2003    1
## 1892         17/03/2009    1
## 1893         17/03/2011    1
## 1894         17/03/2012    1
## 1895         17/04/2011    1
## 1896         17/05/2001    1
## 1897         17/05/2010    1
## 1898         17/05/2011    1
## 1899         17/06/2005    1
## 1900         17/06/2006    1
## 1901         17/07/2012    1
## 1902         17/08/2012    1
## 1903         17/09/2008    1
## 1904         17/10/2002    1
## 1905         17/10/2006    1
## 1906         17/10/2007    1
## 1907         17/10/2012    1
## 1908         17/11/2007    1
## 1909         17/11/2009    1
## 1910         17/11/2011    1
## 1911         17/11/2012    1
## 1912         18/01/2012    1
## 1913         18/02/2012    1
## 1914         18/02/2014    1
## 1915         18/03/2008    1
## 1916         18/03/2011    1
## 1917         18/04/2006    1
## 1918         18/04/2009    1
## 1919         18/04/2012    1
## 1920         18/04/2013    1
## 1921         18/05/2013    1
## 1922         18/06/2007    1
## 1923         18/07/2008    1
## 1924         18/08/2008    1
## 1925         18/09/2008    1
## 1926         18/09/2009    1
## 1927         18/10/2006    1
## 1928         18/10/2008    1
## 1929         18/10/2012    1
## 1930         18/11/2009    1
## 1931         18/11/2012    1
## 1932         18/12/2009    1
## 1933         19/01/2011    1
## 1934         19/02/2010    1
## 1935         19/02/2012    1
## 1936         19/03/2007    1
## 1937         19/03/2009    1
## 1938         19/04/2011    1
## 1939         19/04/2012    1
## 1940         19/04/2014    1
## 1941         19/05/2011    1
## 1942         19/05/2012    1
## 1943         19/07/2007    1
## 1944         19/07/2008    1
## 1945         19/07/2012    1
## 1946         19/07/2013    1
## 1947         19/09/2006    1
## 1948         19/09/2008    1
## 1949         19/10/2005    1
## 1950         19/10/2006    1
## 1951         19/10/2007    1
## 1952         19/10/2009    1
## 1953         19/10/2010    1
## 1954         19/11/2005    1
## 1955         19/12/2007    1
## 1956         19/12/2008    1
## 1957         19/12/2011    1
## 1958         20/01/2011    1
## 1959         20/02/2006    1
## 1960         20/02/2009    1
## 1961         20/02/2011    1
## 1962         20/03/2007    1
## 1963         20/03/2009    1
## 1964         20/04/2005    1
## 1965         20/04/2006    1
## 1966         20/04/2009    1
## 1967         20/04/2011    1
## 1968         20/04/2013    1
## 1969         20/06/2007    1
## 1970         20/07/2005    1
## 1971         20/07/2010    1
## 1972         20/08/2005    1
## 1973         20/09/2006    1
## 1974         20/10/2010    1
## 1975         20/11/2006    1
## 1976         20/11/2008    1
## 1977         20/11/2011    1
## 1978         20/12/2005    1
## 1979         21/01/2011    1
## 1980         21/01/2013    1
## 1981         21/01/2014    1
## 1982         21/02/2008    1
## 1983         21/02/2011    1
## 1984         21/03/2007    1
## 1985         21/04/2013    1
## 1986         21/05/2007    1
## 1987         21/05/2008    1
## 1988         21/06/2010    1
## 1989         21/07/2010    1
## 1990         21/07/2011    1
## 1991         21/08/2011    1
## 1992         21/10/2009    1
## 1993         21/10/2012    1
## 1994         22/01/2012    1
## 1995         22/02/2007    1
## 1996         22/02/2014    1
## 1997         22/03/2012    1
## 1998         22/04/2009    1
## 1999         22/04/2010    1
## 2000         22/05/2009    1
## 2001         22/06/2006    1
## 2002         22/06/2007    1
## 2003         22/07/2005    1
## 2004         22/09/2005    1
## 2005         22/09/2006    1
## 2006         22/09/2012    1
## 2007         22/11/2006    1
## 2008         22/12/2008    1
## 2009         22/12/2011    1
## 2010         23/01/2007    1
## 2011         23/01/2009    1
## 2012         23/01/2011    1
## 2013         23/02/2006    1
## 2014         23/02/2009    1
## 2015         23/02/2010    1
## 2016         23/02/2011    1
## 2017         23/04/2011    1
## 2018         23/04/2012    1
## 2019         23/05/2005    1
## 2020         23/05/2008    1
## 2021         23/05/2011    1
## 2022         23/06/2005    1
## 2023         23/06/2008    1
## 2024         23/06/2013    1
## 2025         23/07/2012    1
## 2026         23/09/2005    1
## 2027         23/09/2008    1
## 2028         23/09/2009    1
## 2029         23/10/2009    1
## 2030         23/10/2011    1
## 2031         23/11/2004    1
## 2032         23/11/2009    1
## 2033         23/12/2008    1
## 2034         23/12/2009    1
## 2035         23/12/2011    1
## 2036         23/12/2012    1
## 2037         24/01/2003    1
## 2038         24/01/2013    1
## 2039         24/02/2008    1
## 2040         24/02/2011    1
## 2041         24/03/2009    1
## 2042         24/03/2011    1
## 2043         24/03/2012    1
## 2044         24/05/2007    1
## 2045         24/05/2014    1
## 2046         24/06/2009    1
## 2047         24/06/2012    1
## 2048         24/06/2013    1
## 2049         24/07/2011    1
## 2050         24/09/2001    1
## 2051         24/09/2005    1
## 2052         24/09/2009    1
## 2053         24/10/2010    1
## 2054         24/11/2009    1
## 2055         24/12/2009    1
## 2056         24/12/2013    1
## 2057         25/01/2006    1
## 2058         25/02/2010    1
## 2059         25/02/2011    1
## 2060         25/03/2009    1
## 2061         25/03/2014    1
## 2062         25/04/2008    1
## 2063         25/04/2013    1
## 2064         25/05/2006    1
## 2065         25/05/2007    1
## 2066         25/05/2010    1
## 2067         25/05/2013    1
## 2068         25/06/2007    1
## 2069         25/06/2009    1
## 2070         25/07/2007    1
## 2071         25/07/2012    1
## 2072         25/07/2013    1
## 2073         25/08/2008    1
## 2074         25/08/2013    1
## 2075         25/09/2006    1
## 2076         25/09/2011    1
## 2077         25/10/2006    1
## 2078         25/10/2010    1
## 2079         25/10/2012    1
## 2080         25/11/2012    1
## 2081         25/12/2012    1
## 2082         25/12/2013    1
## 2083         26/01/2009    1
## 2084         26/01/2012    1
## 2085         26/01/2013    1
## 2086         26/02/2009    1
## 2087         26/02/2010    1
## 2088         26/03/2008    1
## 2089         26/03/2010    1
## 2090         26/04/2007    1
## 2091         26/04/2013    1
## 2092         26/05/2006    1
## 2093         26/05/2011    1
## 2094         26/05/2013    1
## 2095         26/06/2009    1
## 2096         26/07/2002    1
## 2097         26/07/2005    1
## 2098         26/07/2007    1
## 2099         26/07/2011    1
## 2100         26/08/2005    1
## 2101         26/08/2008    1
## 2102         26/08/2010    1
## 2103         26/08/2012    1
## 2104         26/09/2005    1
## 2105         26/09/2013    1
## 2106         26/10/2005    1
## 2107         26/10/2010    1
## 2108         26/11/2011    1
## 2109         27/01/2011    1
## 2110         27/01/2012    1
## 2111         27/02/2001    1
## 2112         27/02/2006    1
## 2113         27/02/2014    1
## 2114         27/03/2006    1
## 2115         27/03/2007    1
## 2116         27/03/2009    1
## 2117         27/04/2009    1
## 2118         27/04/2014    1
## 2119         27/05/2003    1
## 2120         27/05/2005    1
## 2121         27/05/2012    1
## 2122         27/06/2005    1
## 2123         27/07/2006    1
## 2124         27/07/2007    1
## 2125         27/07/2012    1
## 2126         27/09/2000    1
## 2127         27/09/2005    1
## 2128         27/10/2009    1
## 2129         27/11/2006    1
## 2130         27/11/2010    1
## 2131         27/12/2005    1
## 2132         27/12/2006    1
## 2133         27/12/2010    1
## 2134         27/12/2011    1
## 2135         27/12/2013    1
## 2136         28/01/2010    1
## 2137         28/01/2012    1
## 2138         28/02/2008    1
## 2139         28/03/2008    1
## 2140         28/03/2011    1
## 2141         28/03/2012    1
## 2142         28/04/2011    1
## 2143         28/04/2013    1
## 2144         28/04/2014    1
## 2145         28/05/2007    1
## 2146         28/05/2008    1
## 2147         28/06/2005    1
## 2148         28/07/2005    1
## 2149         28/07/2006    1
## 2150         28/07/2008    1
## 2151         28/07/2011    1
## 2152         28/07/2013    1
## 2153         28/08/2006    1
## 2154         28/08/2009    1
## 2155         28/10/2010    1
## 2156         28/11/2005    1
## 2157         28/11/2010    1
## 2158         28/12/2005    1
## 2159         28/12/2006    1
## 2160         28/12/2009    1
## 2161         29/01/2008    1
## 2162         29/02/2012    1
## 2163         29/03/2012    1
## 2164         29/03/2013    1
## 2165         29/03/2014    1
## 2166         29/05/2007    1
## 2167         29/07/2008    1
## 2168         29/08/2006    1
## 2169         29/08/2007    1
## 2170         29/08/2013    1
## 2171         29/09/2000    1
## 2172         29/09/2006    1
## 2173         29/09/2009    1
## 2174         29/09/2012    1
## 2175         29/10/2008    1
## 2176         29/10/2011    1
## 2177         29/10/2012    1
## 2178         29/11/2004    1
## 2179         29/11/2006    1
## 2180         29/12/2012    1
## 2181         30/01/2014    1
## 2182         30/03/2007    1
## 2183         30/03/2011    1
## 2184         30/03/2012    1
## 2185         30/03/2013    1
## 2186         30/05/2006    1
## 2187         30/05/2007    1
## 2188         30/05/2008    1
## 2189         30/06/2010    1
## 2190         30/07/2007    1
## 2191         30/07/2010    1
## 2192         30/07/2012    1
## 2193         30/08/2005    1
## 2194         30/08/2010    1
## 2195         30/08/2011    1
## 2196         30/10/2011    1
## 2197         30/10/2013    1
## 2198         30/11/2009    1
## 2199         30/11/2013    1
## 2200         30/12/2002    1
## 2201         30/12/2009    1
## 2202         30/12/2011    1
## 2203         31/01/2013    1
## 2204         31/05/2002    1
## 2205         31/05/2013    1
## 2206         31/07/2003    1
## 2207         31/07/2011    1
## 2208         31/08/2009    1
## 2209         31/08/2012    1
## 2210         31/10/2010    1
## 2211         31/10/2011    1
## 2212         31/12/2010    1
## 2213         31/12/2011    1
count(dfmerge, EmployerNotificationDate, sort=TRUE)
##      EmployerNotificationDate    n
## 1                    #¡VALOR! 1184
## 2                  21/10/2013   11
## 3                  05/08/2013   10
## 4                  18/02/2014   10
## 5                  24/06/2004   10
## 6                  16/04/1996    9
## 7                  23/09/2010    9
## 8                  30/10/2013    9
## 9                  01/04/1996    8
## 10                 02/05/1996    8
## 11                 03/02/2014    8
## 12                 11/06/2013    8
## 13                 13/06/1996    8
## 14                 14/05/1996    8
## 15                 15/04/1997    8
## 16                 17/05/1996    8
## 17                 20/05/1996    8
## 18                 21/08/2013    8
## 19                 25/03/2014    8
## 20                 27/08/2008    8
## 21                 28/01/2013    8
## 22                 28/02/2007    8
## 23                 01/04/2013    7
## 24                 01/08/2013    7
## 25                 01/10/2003    7
## 26                 02/01/1997    7
## 27                 02/04/1996    7
## 28                 03/08/2000    7
## 29                 03/11/2011    7
## 30                 04/06/2013    7
## 31                 05/02/2014    7
## 32                 05/05/2000    7
## 33                 05/11/2012    7
## 34                 06/06/2014    7
## 35                 06/11/1996    7
## 36                 08/10/2013    7
## 37                 08/11/2011    7
## 38                 08/11/2012    7
## 39                 09/05/1997    7
## 40                 09/09/2004    7
## 41                 10/09/2013    7
## 42                 11/04/1996    7
## 43                 12/12/2013    7
## 44                 13/02/2001    7
## 45                 13/12/2012    7
## 46                 14/05/2013    7
## 47                 15/10/2008    7
## 48                 16/04/2014    7
## 49                 16/05/1996    7
## 50                 16/10/2013    7
## 51                 17/07/2000    7
## 52                 17/07/2013    7
## 53                 18/02/2013    7
## 54                 18/07/2000    7
## 55                 19/03/2013    7
## 56                 20/03/2012    7
## 57                 20/06/1996    7
## 58                 20/07/2000    7
## 59                 22/04/1996    7
## 60                 23/03/2012    7
## 61                 23/04/1996    7
## 62                 25/03/2008    7
## 63                 25/06/2013    7
## 64                 26/09/1996    7
## 65                 27/02/2007    7
## 66                 27/06/2012    7
## 67                 27/11/2013    7
## 68                 28/01/2004    7
## 69                 29/11/2010    7
## 70                 30/04/1996    7
## 71                 01/04/2008    6
## 72                 01/09/2004    6
## 73                 02/07/1996    6
## 74                 02/07/2012    6
## 75                 03/01/2005    6
## 76                 03/02/2006    6
## 77                 03/02/2012    6
## 78                 03/09/2013    6
## 79                 04/03/2014    6
## 80                 04/04/1996    6
## 81                 04/06/2007    6
## 82                 04/11/2010    6
## 83                 05/09/2013    6
## 84                 05/12/2013    6
## 85                 06/08/1999    6
## 86                 06/12/2011    6
## 87                 07/02/2014    6
## 88                 07/05/2012    6
## 89                 07/08/2000    6
## 90                 07/09/2000    6
## 91                 07/10/1997    6
## 92                 08/07/1996    6
## 93                 08/07/1999    6
## 94                 09/01/1998    6
## 95                 09/04/2014    6
## 96                 09/07/2013    6
## 97                 09/11/1998    6
## 98                 10/02/1997    6
## 99                 10/02/2000    6
## 100                10/06/1997    6
## 101                10/09/2004    6
## 102                10/12/2012    6
## 103                11/03/2014    6
## 104                11/04/2007    6
## 105                11/04/2014    6
## 106                11/08/2004    6
## 107                11/09/2008    6
## 108                11/10/1999    6
## 109                12/02/2013    6
## 110                12/03/2014    6
## 111                12/06/2000    6
## 112                12/07/2006    6
## 113                13/02/2002    6
## 114                14/02/2014    6
## 115                14/04/2014    6
## 116                14/06/2012    6
## 117                14/07/2004    6
## 118                15/02/2000    6
## 119                15/03/2012    6
## 120                15/05/1996    6
## 121                15/08/2005    6
## 122                16/05/2014    6
## 123                16/09/1996    6
## 124                16/11/2004    6
## 125                17/01/2014    6
## 126                17/03/2004    6
## 127                17/06/2000    6
## 128                17/09/1998    6
## 129                17/12/2012    6
## 130                18/07/1996    6
## 131                18/09/1996    6
## 132                18/12/2002    6
## 133                19/03/2014    6
## 134                19/07/2006    6
## 135                20/02/1998    6
## 136                20/04/1999    6
## 137                20/06/2000    6
## 138                20/06/2014    6
## 139                20/08/2001    6
## 140                21/02/2011    6
## 141                21/05/1996    6
## 142                21/06/2001    6
## 143                21/08/1996    6
## 144                21/09/2005    6
## 145                22/04/2009    6
## 146                22/05/2008    6
## 147                22/08/2002    6
## 148                22/10/1996    6
## 149                22/10/2007    6
## 150                23/03/2000    6
## 151                23/04/2013    6
## 152                23/09/1996    6
## 153                23/10/2013    6
## 154                24/01/2000    6
## 155                24/02/2012    6
## 156                24/05/2005    6
## 157                25/04/1996    6
## 158                25/04/2000    6
## 159                25/10/2005    6
## 160                26/02/2009    6
## 161                26/03/2013    6
## 162                27/03/1996    6
## 163                27/10/1997    6
## 164                27/10/2008    6
## 165                28/03/2012    6
## 166                28/04/2011    6
## 167                28/04/2014    6
## 168                28/05/2014    6
## 169                29/10/1996    6
## 170                30/08/1999    6
## 171                30/09/2005    6
## 172                30/09/2008    6
## 173                30/09/2013    6
## 174                31/05/2007    6
## 175                31/07/2000    6
## 176                01/02/2013    5
## 177                01/04/2004    5
## 178                01/08/2001    5
## 179                01/10/1996    5
## 180                01/12/1997    5
## 181                01/12/2003    5
## 182                02/05/2007    5
## 183                02/06/1998    5
## 184                02/07/1997    5
## 185                02/08/1999    5
## 186                02/10/2001    5
## 187                02/11/2001    5
## 188                02/11/2010    5
## 189                03/01/2013    5
## 190                03/02/2010    5
## 191                03/06/1996    5
## 192                03/09/1996    5
## 193                03/10/1996    5
## 194                03/10/2012    5
## 195                03/10/2013    5
## 196                03/11/1998    5
## 197                04/01/2006    5
## 198                04/01/2011    5
## 199                04/02/1999    5
## 200                04/02/2003    5
## 201                04/03/2008    5
## 202                04/04/2013    5
## 203                04/11/2008    5
## 204                04/12/1998    5
## 205                04/12/2013    5
## 206                05/06/2014    5
## 207                05/09/1996    5
## 208                05/10/2000    5
## 209                05/12/2001    5
## 210                06/03/2013    5
## 211                06/06/2012    5
## 212                06/08/2008    5
## 213                06/11/2000    5
## 214                07/01/2009    5
## 215                07/02/2005    5
## 216                07/02/2006    5
## 217                07/03/2000    5
## 218                07/05/1996    5
## 219                07/07/1999    5
## 220                07/10/2010    5
## 221                08/01/2001    5
## 222                08/02/2000    5
## 223                08/04/2013    5
## 224                08/04/2014    5
## 225                08/06/1999    5
## 226                08/07/1998    5
## 227                08/08/2011    5
## 228                08/10/1996    5
## 229                08/10/2012    5
## 230                08/12/2005    5
## 231                09/01/2014    5
## 232                09/03/2001    5
## 233                09/03/2004    5
## 234                09/06/1998    5
## 235                09/08/2007    5
## 236                09/10/2013    5
## 237                09/12/2013    5
## 238                10/03/2003    5
## 239                10/03/2004    5
## 240                10/05/2010    5
## 241                10/06/1996    5
## 242                10/06/2013    5
## 243                10/07/2013    5
## 244                10/08/2012    5
## 245                10/10/1996    5
## 246                10/10/2013    5
## 247                10/12/1996    5
## 248                11/02/2013    5
## 249                11/03/2013    5
## 250                11/04/2005    5
## 251                11/06/2014    5
## 252                11/07/2002    5
## 253                11/07/2008    5
## 254                11/07/2013    5
## 255                12/04/1999    5
## 256                12/05/1997    5
## 257                12/05/2004    5
## 258                12/06/1998    5
## 259                12/06/2001    5
## 260                12/07/2007    5
## 261                12/08/1996    5
## 262                12/08/1997    5
## 263                12/08/2013    5
## 264                12/12/2012    5
## 265                13/01/1997    5
## 266                13/01/2006    5
## 267                13/01/2012    5
## 268                13/03/2006    5
## 269                13/05/2013    5
## 270                13/06/2003    5
## 271                13/06/2006    5
## 272                13/06/2011    5
## 273                13/07/1998    5
## 274                13/07/2000    5
## 275                13/07/2005    5
## 276                13/07/2006    5
## 277                13/11/2012    5
## 278                13/12/2011    5
## 279                14/03/2002    5
## 280                14/03/2013    5
## 281                14/03/2014    5
## 282                14/04/1997    5
## 283                14/07/1996    5
## 284                14/08/2013    5
## 285                14/09/2001    5
## 286                14/12/2005    5
## 287                15/03/2000    5
## 288                15/04/2008    5
## 289                15/08/2006    5
## 290                15/08/2013    5
## 291                15/09/2011    5
## 292                15/10/2004    5
## 293                15/10/2013    5
## 294                16/01/2001    5
## 295                16/02/2004    5
## 296                16/04/2012    5
## 297                16/05/2012    5
## 298                16/05/2013    5
## 299                16/06/2011    5
## 300                16/07/1996    5
## 301                16/07/2001    5
## 302                16/08/2001    5
## 303                16/11/2005    5
## 304                16/12/1996    5
## 305                16/12/2003    5
## 306                16/12/2004    5
## 307                17/01/2013    5
## 308                17/02/2006    5
## 309                17/02/2012    5
## 310                17/03/1998    5
## 311                17/03/2011    5
## 312                17/04/1998    5
## 313                17/04/2014    5
## 314                17/06/1999    5
## 315                17/07/2001    5
## 316                17/10/2003    5
## 317                17/12/2001    5
## 318                18/02/2004    5
## 319                18/04/2008    5
## 320                18/05/2005    5
## 321                18/05/2006    5
## 322                18/06/2001    5
## 323                18/08/2004    5
## 324                18/12/2012    5
## 325                18/12/2013    5
## 326                19/03/1997    5
## 327                19/04/1996    5
## 328                19/06/2001    5
## 329                19/06/2006    5
## 330                19/07/1996    5
## 331                19/07/2000    5
## 332                19/07/2011    5
## 333                19/07/2013    5
## 334                19/08/2013    5
## 335                19/09/2005    5
## 336                19/10/2005    5
## 337                19/10/2012    5
## 338                19/11/1996    5
## 339                20/01/2004    5
## 340                20/01/2011    5
## 341                20/02/2006    5
## 342                20/02/2012    5
## 343                20/03/2006    5
## 344                20/03/2014    5
## 345                20/08/2004    5
## 346                20/10/2010    5
## 347                20/12/2005    5
## 348                21/02/2001    5
## 349                21/03/2012    5
## 350                21/05/2008    5
## 351                21/06/2013    5
## 352                21/11/2013    5
## 353                21/12/2005    5
## 354                22/01/2008    5
## 355                22/01/2013    5
## 356                22/04/2014    5
## 357                22/05/2013    5
## 358                22/05/2014    5
## 359                22/06/2007    5
## 360                22/07/1996    5
## 361                22/08/2001    5
## 362                23/01/2004    5
## 363                23/01/2014    5
## 364                23/02/1998    5
## 365                23/05/2006    5
## 366                23/07/1997    5
## 367                23/07/2001    5
## 368                23/08/2013    5
## 369                23/09/2004    5
## 370                24/01/2002    5
## 371                24/02/2014    5
## 372                24/03/1997    5
## 373                24/06/2010    5
## 374                24/07/2002    5
## 375                24/08/1998    5
## 376                25/01/2005    5
## 377                25/01/2007    5
## 378                25/01/2012    5
## 379                25/01/2013    5
## 380                25/02/2013    5
## 381                25/06/1997    5
## 382                25/06/2007    5
## 383                25/06/2008    5
## 384                25/06/2014    5
## 385                25/07/2006    5
## 386                25/08/1997    5
## 387                25/08/2003    5
## 388                25/09/2002    5
## 389                25/11/1996    5
## 390                26/04/1996    5
## 391                26/06/1996    5
## 392                26/06/2014    5
## 393                26/07/2012    5
## 394                26/08/2005    5
## 395                26/08/2008    5
## 396                26/09/2008    5
## 397                26/10/1998    5
## 398                26/11/2012    5
## 399                26/11/2013    5
## 400                27/02/2012    5
## 401                27/03/2003    5
## 402                27/06/2013    5
## 403                27/09/1999    5
## 404                27/09/2006    5
## 405                28/01/2002    5
## 406                28/05/2008    5
## 407                28/07/1999    5
## 408                28/07/2008    5
## 409                28/08/1996    5
## 410                28/09/1998    5
## 411                28/09/2001    5
## 412                29/03/2000    5
## 413                29/03/2003    5
## 414                29/04/1996    5
## 415                29/04/2002    5
## 416                29/06/2001    5
## 417                29/07/1996    5
## 418                30/01/2002    5
## 419                30/01/2004    5
## 420                30/03/2000    5
## 421                30/03/2010    5
## 422                30/04/2003    5
## 423                30/04/2012    5
## 424                30/05/2013    5
## 425                30/09/1996    5
## 426                30/09/2002    5
## 427                30/11/1999    5
## 428                31/05/2013    5
## 429                31/07/1996    5
## 430                31/08/2011    5
## 431                01/02/1999    4
## 432                01/02/2000    4
## 433                01/02/2006    4
## 434                01/03/2000    4
## 435                01/03/2012    4
## 436                01/03/2013    4
## 437                01/05/1997    4
## 438                01/06/1999    4
## 439                01/06/2004    4
## 440                01/08/2008    4
## 441                01/10/2002    4
## 442                01/10/2007    4
## 443                01/11/2004    4
## 444                01/11/2011    4
## 445                01/12/2011    4
## 446                02/02/2004    4
## 447                02/02/2010    4
## 448                02/04/2001    4
## 449                02/04/2014    4
## 450                02/05/2000    4
## 451                02/05/2012    4
## 452                02/06/1997    4
## 453                02/07/1999    4
## 454                02/07/2002    4
## 455                02/08/2013    4
## 456                02/10/1998    4
## 457                02/10/2012    4
## 458                02/10/2013    4
## 459                02/11/1998    4
## 460                02/11/2012    4
## 461                03/01/2012    4
## 462                03/02/1997    4
## 463                03/03/2000    4
## 464                03/03/2006    4
## 465                03/03/2008    4
## 466                03/04/2000    4
## 467                03/06/1997    4
## 468                03/07/2000    4
## 469                03/08/2012    4
## 470                03/10/2005    4
## 471                03/11/1997    4
## 472                03/11/2003    4
## 473                03/12/2004    4
## 474                04/01/2005    4
## 475                04/01/2013    4
## 476                04/02/1997    4
## 477                04/03/1999    4
## 478                04/03/2005    4
## 479                04/03/2013    4
## 480                04/04/2001    4
## 481                04/09/2012    4
## 482                04/10/2004    4
## 483                04/10/2007    4
## 484                04/10/2012    4
## 485                04/11/2009    4
## 486                04/11/2013    4
## 487                04/12/2001    4
## 488                04/12/2002    4
## 489                05/02/2001    4
## 490                05/02/2008    4
## 491                05/04/1996    4
## 492                05/04/2002    4
## 493                05/04/2012    4
## 494                05/04/2013    4
## 495                05/05/2003    4
## 496                05/05/2005    4
## 497                05/06/1997    4
## 498                05/06/2007    4
## 499                05/07/2001    4
## 500                05/08/2005    4
## 501                05/08/2008    4
## 502                05/09/2012    4
## 503                05/10/1998    4
## 504                05/11/2013    4
## 505                05/12/2012    4
## 506                06/02/1997    4
## 507                06/03/2003    4
## 508                06/03/2012    4
## 509                06/04/1996    4
## 510                06/04/2005    4
## 511                06/04/2006    4
## 512                06/04/2013    4
## 513                06/05/2014    4
## 514                06/06/1996    4
## 515                06/06/2008    4
## 516                06/08/1996    4
## 517                06/08/1997    4
## 518                06/09/1996    4
## 519                06/09/2000    4
## 520                06/09/2011    4
## 521                06/09/2013    4
## 522                06/10/1997    4
## 523                06/10/2004    4
## 524                06/11/2003    4
## 525                06/12/2002    4
## 526                06/12/2006    4
## 527                07/01/1998    4
## 528                07/01/2001    4
## 529                07/01/2010    4
## 530                07/03/2013    4
## 531                07/04/2012    4
## 532                07/05/2004    4
## 533                07/05/2009    4
## 534                07/08/2006    4
## 535                07/08/2007    4
## 536                07/10/2013    4
## 537                07/11/2012    4
## 538                07/11/2013    4
## 539                08/01/2004    4
## 540                08/02/2012    4
## 541                08/03/1999    4
## 542                08/03/2000    4
## 543                08/03/2013    4
## 544                08/04/1996    4
## 545                08/05/2014    4
## 546                08/06/2007    4
## 547                08/06/2010    4
## 548                08/07/2009    4
## 549                08/07/2013    4
## 550                08/08/1996    4
## 551                08/08/2000    4
## 552                08/08/2013    4
## 553                08/09/2003    4
## 554                08/10/1997    4
## 555                08/10/1998    4
## 556                08/10/2007    4
## 557                08/12/2004    4
## 558                08/12/2011    4
## 559                09/01/1997    4
## 560                09/01/2002    4
## 561                09/01/2012    4
## 562                09/02/1999    4
## 563                09/03/2005    4
## 564                09/03/2006    4
## 565                09/04/1997    4
## 566                09/06/1999    4
## 567                09/06/2006    4
## 568                09/08/2004    4
## 569                09/08/2013    4
## 570                09/09/2002    4
## 571                09/09/2013    4
## 572                09/10/2001    4
## 573                09/10/2012    4
## 574                10/01/2000    4
## 575                10/01/2006    4
## 576                10/01/2012    4
## 577                10/03/1997    4
## 578                10/04/2006    4
## 579                10/04/2014    4
## 580                10/05/2000    4
## 581                10/05/2002    4
## 582                10/05/2007    4
## 583                10/05/2011    4
## 584                10/06/2014    4
## 585                10/08/2000    4
## 586                10/09/1997    4
## 587                10/09/2007    4
## 588                10/09/2012    4
## 589                10/10/2001    4
## 590                10/10/2002    4
## 591                10/11/2004    4
## 592                11/01/1999    4
## 593                11/02/1997    4
## 594                11/04/2006    4
## 595                11/04/2012    4
## 596                11/05/2000    4
## 597                11/06/1996    4
## 598                11/07/2012    4
## 599                11/08/2008    4
## 600                11/09/2000    4
## 601                11/09/2011    4
## 602                11/12/2000    4
## 603                11/12/2012    4
## 604                12/01/1997    4
## 605                12/01/1998    4
## 606                12/03/2012    4
## 607                12/04/1996    4
## 608                12/04/2011    4
## 609                12/05/2003    4
## 610                12/06/2003    4
## 611                12/06/2008    4
## 612                12/07/2000    4
## 613                12/07/2013    4
## 614                12/08/2008    4
## 615                12/08/2010    4
## 616                12/09/2000    4
## 617                12/09/2005    4
## 618                12/09/2011    4
## 619                12/11/1997    4
## 620                12/11/1998    4
## 621                12/11/2009    4
## 622                12/12/2000    4
## 623                12/12/2002    4
## 624                12/12/2007    4
## 625                13/02/2006    4
## 626                13/02/2009    4
## 627                13/02/2013    4
## 628                13/03/1997    4
## 629                13/03/2000    4
## 630                13/03/2013    4
## 631                13/04/2006    4
## 632                13/05/1996    4
## 633                13/05/1999    4
## 634                13/05/2008    4
## 635                13/05/2014    4
## 636                13/07/2010    4
## 637                13/08/1996    4
## 638                13/08/1997    4
## 639                13/08/2002    4
## 640                13/09/2012    4
## 641                13/09/2013    4
## 642                13/10/2004    4
## 643                13/11/1998    4
## 644                13/12/2005    4
## 645                13/12/2007    4
## 646                14/01/2004    4
## 647                14/02/2011    4
## 648                14/02/2012    4
## 649                14/03/2000    4
## 650                14/05/2002    4
## 651                14/05/2003    4
## 652                14/05/2007    4
## 653                14/05/2012    4
## 654                14/06/2006    4
## 655                14/08/2006    4
## 656                14/09/2011    4
## 657                14/12/2012    4
## 658                15/01/2003    4
## 659                15/01/2014    4
## 660                15/02/2013    4
## 661                15/03/2001    4
## 662                15/04/2003    4
## 663                15/04/2014    4
## 664                15/05/2013    4
## 665                15/07/2008    4
## 666                15/08/2000    4
## 667                15/08/2007    4
## 668                15/09/1999    4
## 669                15/11/2011    4
## 670                15/12/2003    4
## 671                16/01/2009    4
## 672                16/03/1999    4
## 673                16/04/1998    4
## 674                16/04/2001    4
## 675                16/04/2002    4
## 676                16/04/2008    4
## 677                16/04/2013    4
## 678                16/05/2000    4
## 679                16/06/1998    4
## 680                16/07/2004    4
## 681                16/08/2004    4
## 682                16/09/2004    4
## 683                16/10/2008    4
## 684                16/12/1997    4
## 685                16/12/2005    4
## 686                16/12/2010    4
## 687                16/12/2013    4
## 688                17/01/2002    4
## 689                17/02/2014    4
## 690                17/03/2008    4
## 691                17/03/2010    4
## 692                17/03/2014    4
## 693                17/04/1996    4
## 694                17/04/2012    4
## 695                17/05/2002    4
## 696                17/05/2013    4
## 697                17/06/1996    4
## 698                17/06/2003    4
## 699                17/06/2004    4
## 700                17/08/2000    4
## 701                17/10/1997    4
## 702                17/10/2012    4
## 703                17/11/2005    4
## 704                17/12/2003    4
## 705                18/02/2010    4
## 706                18/03/2004    4
## 707                18/04/1997    4
## 708                18/04/2007    4
## 709                18/04/2014    4
## 710                18/06/2013    4
## 711                18/07/2001    4
## 712                18/07/2013    4
## 713                18/08/1999    4
## 714                18/09/2003    4
## 715                18/09/2008    4
## 716                18/09/2012    4
## 717                18/11/1997    4
## 718                18/11/2005    4
## 719                18/11/2009    4
## 720                18/12/1997    4
## 721                19/01/2006    4
## 722                19/01/2010    4
## 723                19/02/1997    4
## 724                19/02/2007    4
## 725                19/03/2009    4
## 726                19/05/1997    4
## 727                19/05/2000    4
## 728                19/05/2014    4
## 729                19/06/1998    4
## 730                19/06/2013    4
## 731                19/07/2010    4
## 732                19/08/1999    4
## 733                19/08/2008    4
## 734                19/08/2012    4
## 735                19/09/2002    4
## 736                19/09/2012    4
## 737                19/11/2002    4
## 738                19/11/2012    4
## 739                20/01/2005    4
## 740                20/02/1997    4
## 741                20/02/2001    4
## 742                20/02/2014    4
## 743                20/03/2008    4
## 744                20/04/2000    4
## 745                20/04/2006    4
## 746                20/05/1997    4
## 747                20/05/2010    4
## 748                20/06/2001    4
## 749                20/06/2002    4
## 750                20/06/2012    4
## 751                20/07/1998    4
## 752                20/07/1999    4
## 753                20/09/2006    4
## 754                20/10/1997    4
## 755                20/10/2004    4
## 756                20/10/2011    4
## 757                20/11/2001    4
## 758                20/11/2013    4
## 759                20/12/1999    4
## 760                20/12/2007    4
## 761                21/02/2013    4
## 762                21/03/1997    4
## 763                21/03/2001    4
## 764                21/03/2006    4
## 765                21/03/2007    4
## 766                21/03/2014    4
## 767                21/05/1997    4
## 768                21/05/2012    4
## 769                21/07/2003    4
## 770                21/08/2001    4
## 771                21/08/2002    4
## 772                21/08/2006    4
## 773                21/08/2007    4
## 774                21/08/2012    4
## 775                21/09/2011    4
## 776                21/09/2012    4
## 777                21/11/2006    4
## 778                22/01/1997    4
## 779                22/01/2014    4
## 780                22/02/1999    4
## 781                22/02/2007    4
## 782                22/02/2012    4
## 783                22/03/1999    4
## 784                22/03/2004    4
## 785                22/03/2006    4
## 786                22/03/2007    4
## 787                22/03/2012    4
## 788                22/03/2013    4
## 789                22/04/2005    4
## 790                22/04/2010    4
## 791                22/05/1997    4
## 792                22/05/2012    4
## 793                22/06/1999    4
## 794                22/06/2012    4
## 795                22/07/2005    4
## 796                22/07/2011    4
## 797                22/08/2011    4
## 798                22/08/2013    4
## 799                22/09/2003    4
## 800                22/10/2004    4
## 801                23/01/2012    4
## 802                23/02/2012    4
## 803                23/03/2006    4
## 804                23/04/2003    4
## 805                23/04/2007    4
## 806                23/05/2007    4
## 807                23/05/2012    4
## 808                23/06/2003    4
## 809                23/06/2008    4
## 810                23/07/1998    4
## 811                23/08/2000    4
## 812                23/09/1997    4
## 813                23/09/2005    4
## 814                23/09/2013    4
## 815                23/10/2003    4
## 816                24/01/2007    4
## 817                24/03/1998    4
## 818                24/03/2004    4
## 819                24/03/2006    4
## 820                24/04/2002    4
## 821                24/04/2013    4
## 822                24/04/2014    4
## 823                24/05/1999    4
## 824                24/06/2009    4
## 825                24/08/2000    4
## 826                24/08/2006    4
## 827                24/10/2002    4
## 828                24/10/2003    4
## 829                24/11/1997    4
## 830                24/11/2009    4
## 831                25/01/2006    4
## 832                25/02/2014    4
## 833                25/03/1997    4
## 834                25/04/1997    4
## 835                25/05/2001    4
## 836                25/05/2012    4
## 837                25/06/2004    4
## 838                25/07/1996    4
## 839                25/07/2013    4
## 840                25/08/2004    4
## 841                25/09/2003    4
## 842                25/10/1998    4
## 843                25/10/2000    4
## 844                25/10/2011    4
## 845                26/01/2006    4
## 846                26/01/2011    4
## 847                26/02/1998    4
## 848                26/02/1999    4
## 849                26/02/2003    4
## 850                26/02/2010    4
## 851                26/02/2014    4
## 852                26/03/1998    4
## 853                26/03/2002    4
## 854                26/03/2008    4
## 855                26/03/2012    4
## 856                26/04/2002    4
## 857                26/04/2004    4
## 858                26/05/1999    4
## 859                26/06/2013    4
## 860                26/07/2004    4
## 861                26/08/2010    4
## 862                26/09/2003    4
## 863                26/09/2013    4
## 864                26/11/1996    4
## 865                27/01/1998    4
## 866                27/01/2010    4
## 867                27/01/2014    4
## 868                27/05/1998    4
## 869                27/06/1997    4
## 870                27/06/2011    4
## 871                27/07/2000    4
## 872                27/07/2012    4
## 873                27/08/1996    4
## 874                27/08/2003    4
## 875                27/08/2012    4
## 876                27/09/1996    4
## 877                28/01/1999    4
## 878                28/01/2000    4
## 879                28/01/2003    4
## 880                28/02/2011    4
## 881                28/03/2013    4
## 882                28/03/2014    4
## 883                28/05/1998    4
## 884                28/06/2004    4
## 885                28/06/2009    4
## 886                28/07/1998    4
## 887                28/07/2005    4
## 888                28/08/1998    4
## 889                28/08/2006    4
## 890                28/08/2013    4
## 891                28/09/2005    4
## 892                28/09/2006    4
## 893                28/11/2012    4
## 894                28/12/2004    4
## 895                29/01/1997    4
## 896                29/01/2014    4
## 897                29/02/2012    4
## 898                29/03/2013    4
## 899                29/04/2003    4
## 900                29/06/2004    4
## 901                29/06/2011    4
## 902                29/08/2000    4
## 903                29/08/2011    4
## 904                29/08/2013    4
## 905                29/09/2005    4
## 906                29/10/2001    4
## 907                29/11/2000    4
## 908                30/01/2014    4
## 909                30/03/2012    4
## 910                30/04/1997    4
## 911                30/04/2001    4
## 912                30/04/2014    4
## 913                30/05/2006    4
## 914                30/06/1997    4
## 915                30/07/2001    4
## 916                30/07/2002    4
## 917                30/07/2008    4
## 918                30/10/1996    4
## 919                31/01/1997    4
## 920                31/01/2008    4
## 921                31/03/2010    4
## 922                31/05/2001    4
## 923                31/05/2011    4
## 924                31/07/1998    4
## 925                31/08/2012    4
## 926                01/01/2011    3
## 927                01/02/2005    3
## 928                01/02/2010    3
## 929                01/02/2011    3
## 930                01/03/1999    3
## 931                01/03/2005    3
## 932                01/03/2006    3
## 933                01/03/2007    3
## 934                01/04/2005    3
## 935                01/04/2014    3
## 936                01/05/1996    3
## 937                01/05/2005    3
## 938                01/05/2013    3
## 939                01/06/2000    3
## 940                01/06/2001    3
## 941                01/06/2005    3
## 942                01/06/2011    3
## 943                01/06/2012    3
## 944                01/07/2004    3
## 945                01/08/1997    3
## 946                01/08/2003    3
## 947                01/08/2006    3
## 948                01/08/2007    3
## 949                01/10/1997    3
## 950                01/10/1999    3
## 951                01/10/2012    3
## 952                01/10/2013    3
## 953                01/11/1999    3
## 954                01/11/2001    3
## 955                01/11/2002    3
## 956                01/11/2005    3
## 957                01/11/2006    3
## 958                01/11/2013    3
## 959                01/12/2000    3
## 960                02/01/2009    3
## 961                02/02/1998    3
## 962                02/02/1999    3
## 963                02/02/2006    3
## 964                02/03/1998    3
## 965                02/03/2012    3
## 966                02/04/1998    3
## 967                02/04/2002    3
## 968                02/05/1997    3
## 969                02/05/2001    3
## 970                02/05/2006    3
## 971                02/05/2011    3
## 972                02/05/2014    3
## 973                02/06/2001    3
## 974                02/06/2008    3
## 975                02/07/1998    3
## 976                02/07/2003    3
## 977                02/07/2004    3
## 978                02/07/2013    3
## 979                02/08/1996    3
## 980                02/08/2002    3
## 981                02/08/2010    3
## 982                02/09/2008    3
## 983                02/09/2010    3
## 984                02/11/2004    3
## 985                02/12/1998    3
## 986                02/12/2011    3
## 987                02/12/2013    3
## 988                03/02/2003    3
## 989                03/02/2004    3
## 990                03/03/2011    3
## 991                03/03/2012    3
## 992                03/04/1998    3
## 993                03/04/2006    3
## 994                03/04/2009    3
## 995                03/05/1998    3
## 996                03/05/2006    3
## 997                03/05/2008    3
## 998                03/05/2011    3
## 999                03/05/2013    3
## 1000               03/06/2009    3
## 1001               03/06/2011    3
## 1002               03/07/1997    3
## 1003               03/07/2003    3
## 1004               03/07/2007    3
## 1005               03/08/2006    3
## 1006               03/08/2010    3
## 1007               03/09/1997    3
## 1008               03/09/2003    3
## 1009               03/09/2010    3
## 1010               03/10/2000    3
## 1011               03/10/2002    3
## 1012               03/10/2008    3
## 1013               03/11/2005    3
## 1014               03/11/2009    3
## 1015               03/12/1999    3
## 1016               04/01/2001    3
## 1017               04/01/2008    3
## 1018               04/01/2012    3
## 1019               04/02/2000    3
## 1020               04/02/2002    3
## 1021               04/03/2003    3
## 1022               04/03/2004    3
## 1023               04/03/2010    3
## 1024               04/03/2011    3
## 1025               04/04/2005    3
## 1026               04/05/2000    3
## 1027               04/05/2004    3
## 1028               04/05/2009    3
## 1029               04/06/2014    3
## 1030               04/08/2004    3
## 1031               04/08/2005    3
## 1032               04/08/2006    3
## 1033               04/08/2009    3
## 1034               04/08/2013    3
## 1035               04/09/2007    3
## 1036               04/09/2008    3
## 1037               04/09/2013    3
## 1038               04/10/2013    3
## 1039               04/11/2002    3
## 1040               04/11/2011    3
## 1041               04/12/2007    3
## 1042               04/12/2012    3
## 1043               05/01/2006    3
## 1044               05/01/2012    3
## 1045               05/02/1998    3
## 1046               05/02/2004    3
## 1047               05/02/2013    3
## 1048               05/03/2001    3
## 1049               05/03/2004    3
## 1050               05/03/2007    3
## 1051               05/03/2008    3
## 1052               05/03/2012    3
## 1053               05/04/2011    3
## 1054               05/05/1996    3
## 1055               05/05/2001    3
## 1056               05/05/2008    3
## 1057               05/05/2009    3
## 1058               05/05/2014    3
## 1059               05/06/2002    3
## 1060               05/06/2003    3
## 1061               05/06/2012    3
## 1062               05/07/1999    3
## 1063               05/08/1999    3
## 1064               05/08/2002    3
## 1065               05/08/2004    3
## 1066               05/08/2009    3
## 1067               05/09/2001    3
## 1068               05/09/2004    3
## 1069               05/10/2001    3
## 1070               05/10/2011    3
## 1071               05/11/2004    3
## 1072               05/11/2008    3
## 1073               06/01/2000    3
## 1074               06/01/2005    3
## 1075               06/01/2010    3
## 1076               06/02/1998    3
## 1077               06/02/2013    3
## 1078               06/03/2000    3
## 1079               06/03/2007    3
## 1080               06/03/2014    3
## 1081               06/04/1997    3
## 1082               06/04/2000    3
## 1083               06/05/1998    3
## 1084               06/05/1999    3
## 1085               06/05/2001    3
## 1086               06/05/2013    3
## 1087               06/06/2006    3
## 1088               06/06/2011    3
## 1089               06/06/2013    3
## 1090               06/07/2000    3
## 1091               06/07/2001    3
## 1092               06/07/2012    3
## 1093               06/09/2002    3
## 1094               06/09/2006    3
## 1095               06/09/2007    3
## 1096               06/10/2001    3
## 1097               06/10/2010    3
## 1098               06/10/2012    3
## 1099               06/11/2001    3
## 1100               06/11/2013    3
## 1101               06/12/1999    3
## 1102               06/12/2000    3
## 1103               06/12/2001    3
## 1104               06/12/2005    3
## 1105               06/12/2007    3
## 1106               07/01/2004    3
## 1107               07/01/2013    3
## 1108               07/02/2000    3
## 1109               07/02/2003    3
## 1110               07/02/2012    3
## 1111               07/03/2012    3
## 1112               07/04/2003    3
## 1113               07/04/2008    3
## 1114               07/04/2014    3
## 1115               07/05/2002    3
## 1116               07/05/2007    3
## 1117               07/06/2002    3
## 1118               07/06/2007    3
## 1119               07/06/2008    3
## 1120               07/06/2010    3
## 1121               07/07/1997    3
## 1122               07/07/2009    3
## 1123               07/07/2011    3
## 1124               07/08/2012    3
## 1125               07/09/2011    3
## 1126               07/09/2013    3
## 1127               07/10/1996    3
## 1128               07/12/1999    3
## 1129               08/01/1998    3
## 1130               08/01/2014    3
## 1131               08/02/2006    3
## 1132               08/02/2013    3
## 1133               08/03/2001    3
## 1134               08/03/2003    3
## 1135               08/04/1997    3
## 1136               08/04/1998    3
## 1137               08/05/1996    3
## 1138               08/05/1997    3
## 1139               08/05/2007    3
## 1140               08/06/2006    3
## 1141               08/07/2010    3
## 1142               08/07/2011    3
## 1143               08/08/2005    3
## 1144               08/08/2008    3
## 1145               08/09/1997    3
## 1146               08/09/1999    3
## 1147               08/09/2004    3
## 1148               08/09/2006    3
## 1149               08/09/2011    3
## 1150               08/10/2004    3
## 1151               08/10/2010    3
## 1152               08/11/2002    3
## 1153               08/11/2010    3
## 1154               08/11/2013    3
## 1155               08/12/1999    3
## 1156               08/12/2000    3
## 1157               09/01/2009    3
## 1158               09/02/2011    3
## 1159               09/04/2001    3
## 1160               09/04/2003    3
## 1161               09/04/2007    3
## 1162               09/04/2012    3
## 1163               09/05/2006    3
## 1164               09/05/2013    3
## 1165               09/05/2014    3
## 1166               09/06/2000    3
## 1167               09/06/2005    3
## 1168               09/06/2014    3
## 1169               09/07/1997    3
## 1170               09/07/1999    3
## 1171               09/08/1996    3
## 1172               09/08/2005    3
## 1173               09/09/1997    3
## 1174               09/09/2005    3
## 1175               09/09/2011    3
## 1176               09/10/1997    3
## 1177               09/10/2002    3
## 1178               09/10/2003    3
## 1179               09/10/2009    3
## 1180               09/11/1996    3
## 1181               09/12/2004    3
## 1182               10/01/2001    3
## 1183               10/01/2003    3
## 1184               10/01/2014    3
## 1185               10/02/2006    3
## 1186               10/02/2008    3
## 1187               10/02/2012    3
## 1188               10/03/2006    3
## 1189               10/03/2009    3
## 1190               10/03/2014    3
## 1191               10/04/1996    3
## 1192               10/04/2008    3
## 1193               10/04/2012    3
## 1194               10/05/1996    3
## 1195               10/05/2004    3
## 1196               10/05/2012    3
## 1197               10/06/1999    3
## 1198               10/06/2002    3
## 1199               10/06/2004    3
## 1200               10/07/1997    3
## 1201               10/07/2000    3
## 1202               10/08/1999    3
## 1203               10/08/2006    3
## 1204               10/09/1996    3
## 1205               10/09/2002    3
## 1206               10/09/2009    3
## 1207               10/10/2000    3
## 1208               10/10/2011    3
## 1209               10/12/2013    3
## 1210               11/02/1998    3
## 1211               11/02/2003    3
## 1212               11/02/2010    3
## 1213               11/03/1999    3
## 1214               11/04/1997    3
## 1215               11/04/2008    3
## 1216               11/05/1998    3
## 1217               11/05/2007    3
## 1218               11/06/1997    3
## 1219               11/06/1998    3
## 1220               11/06/2001    3
## 1221               11/06/2002    3
## 1222               11/07/1996    3
## 1223               11/07/1997    3
## 1224               11/07/2000    3
## 1225               11/07/2001    3
## 1226               11/07/2005    3
## 1227               11/07/2006    3
## 1228               11/08/1996    3
## 1229               11/08/1997    3
## 1230               11/09/1996    3
## 1231               11/09/1997    3
## 1232               11/09/2004    3
## 1233               11/09/2007    3
## 1234               11/10/2002    3
## 1235               11/10/2006    3
## 1236               11/11/2002    3
## 1237               11/11/2010    3
## 1238               11/12/2007    3
## 1239               11/12/2008    3
## 1240               12/01/2001    3
## 1241               12/01/2012    3
## 1242               12/02/2001    3
## 1243               12/02/2002    3
## 1244               12/02/2009    3
## 1245               12/03/2002    3
## 1246               12/03/2003    3
## 1247               12/03/2007    3
## 1248               12/04/2000    3
## 1249               12/04/2007    3
## 1250               12/05/1998    3
## 1251               12/05/2000    3
## 1252               12/05/2006    3
## 1253               12/05/2008    3
## 1254               12/05/2010    3
## 1255               12/05/2014    3
## 1256               12/06/2002    3
## 1257               12/06/2007    3
## 1258               12/06/2012    3
## 1259               12/06/2013    3
## 1260               12/06/2014    3
## 1261               12/07/2001    3
## 1262               12/07/2002    3
## 1263               12/07/2004    3
## 1264               12/08/2007    3
## 1265               12/08/2009    3
## 1266               12/09/1996    3
## 1267               12/09/2012    3
## 1268               12/10/2005    3
## 1269               12/11/2003    3
## 1270               12/11/2008    3
## 1271               12/11/2013    3
## 1272               13/01/2000    3
## 1273               13/02/1997    3
## 1274               13/02/2003    3
## 1275               13/02/2008    3
## 1276               13/03/2014    3
## 1277               13/04/1996    3
## 1278               13/05/1997    3
## 1279               13/05/2004    3
## 1280               13/05/2007    3
## 1281               13/06/2000    3
## 1282               13/06/2002    3
## 1283               13/06/2008    3
## 1284               13/08/2001    3
## 1285               13/10/2003    3
## 1286               13/10/2006    3
## 1287               13/11/1996    3
## 1288               13/11/1997    3
## 1289               13/11/2009    3
## 1290               13/11/2013    3
## 1291               13/12/1996    3
## 1292               14/01/2001    3
## 1293               14/01/2003    3
## 1294               14/02/2001    3
## 1295               14/02/2013    3
## 1296               14/03/1997    3
## 1297               14/03/2001    3
## 1298               14/03/2008    3
## 1299               14/03/2012    3
## 1300               14/04/1998    3
## 1301               14/04/2009    3
## 1302               14/05/2014    3
## 1303               14/06/2007    3
## 1304               14/06/2010    3
## 1305               14/06/2011    3
## 1306               14/07/1998    3
## 1307               14/07/1999    3
## 1308               14/08/1997    3
## 1309               14/08/2001    3
## 1310               14/08/2002    3
## 1311               14/08/2008    3
## 1312               14/09/1999    3
## 1313               14/09/2000    3
## 1314               14/09/2005    3
## 1315               14/10/2003    3
## 1316               14/10/2011    3
## 1317               14/10/2013    3
## 1318               14/11/1997    3
## 1319               14/11/2002    3
## 1320               14/11/2007    3
## 1321               14/12/2004    3
## 1322               14/12/2011    3
## 1323               15/01/1997    3
## 1324               15/01/2002    3
## 1325               15/01/2009    3
## 1326               15/01/2010    3
## 1327               15/01/2011    3
## 1328               15/01/2013    3
## 1329               15/02/2002    3
## 1330               15/03/2005    3
## 1331               15/03/2011    3
## 1332               15/03/2014    3
## 1333               15/04/1996    3
## 1334               15/04/2005    3
## 1335               15/04/2011    3
## 1336               15/05/1997    3
## 1337               15/05/2001    3
## 1338               15/06/2006    3
## 1339               15/06/2011    3
## 1340               15/06/2012    3
## 1341               15/07/1997    3
## 1342               15/07/2005    3
## 1343               15/07/2010    3
## 1344               15/08/1996    3
## 1345               15/08/2001    3
## 1346               15/08/2002    3
## 1347               15/08/2012    3
## 1348               15/09/2005    3
## 1349               15/09/2012    3
## 1350               15/10/1996    3
## 1351               15/10/2009    3
## 1352               15/11/2000    3
## 1353               15/12/2012    3
## 1354               16/01/1997    3
## 1355               16/02/2001    3
## 1356               16/02/2006    3
## 1357               16/02/2012    3
## 1358               16/03/2000    3
## 1359               16/03/2003    3
## 1360               16/04/1997    3
## 1361               16/04/2003    3
## 1362               16/05/1997    3
## 1363               16/05/2006    3
## 1364               16/05/2007    3
## 1365               16/06/2000    3
## 1366               16/06/2010    3
## 1367               16/06/2014    3
## 1368               16/07/1997    3
## 1369               16/07/2013    3
## 1370               16/08/2000    3
## 1371               16/08/2006    3
## 1372               16/08/2012    3
## 1373               16/08/2013    3
## 1374               16/09/2003    3
## 1375               16/10/1996    3
## 1376               16/10/2000    3
## 1377               16/10/2006    3
## 1378               16/11/2011    3
## 1379               17/01/1997    3
## 1380               17/02/1997    3
## 1381               17/02/2003    3
## 1382               17/03/1999    3
## 1383               17/03/2003    3
## 1384               17/04/2000    3
## 1385               17/06/1998    3
## 1386               17/06/2009    3
## 1387               17/06/2010    3
## 1388               17/07/1998    3
## 1389               17/07/2003    3
## 1390               17/07/2009    3
## 1391               17/08/2005    3
## 1392               17/09/2012    3
## 1393               17/10/2011    3
## 1394               17/11/2011    3
## 1395               18/01/2005    3
## 1396               18/02/2008    3
## 1397               18/03/1996    3
## 1398               18/03/1997    3
## 1399               18/03/1998    3
## 1400               18/03/2013    3
## 1401               18/04/1996    3
## 1402               18/05/2007    3
## 1403               18/05/2014    3
## 1404               18/06/2012    3
## 1405               18/06/2014    3
## 1406               18/07/2006    3
## 1407               18/07/2012    3
## 1408               18/08/1996    3
## 1409               18/08/2010    3
## 1410               18/09/2010    3
## 1411               18/09/2013    3
## 1412               18/10/1999    3
## 1413               18/10/2010    3
## 1414               18/11/2002    3
## 1415               18/11/2003    3
## 1416               18/11/2010    3
## 1417               18/12/2007    3
## 1418               19/01/1998    3
## 1419               19/01/1999    3
## 1420               19/01/2011    3
## 1421               19/01/2012    3
## 1422               19/02/2008    3
## 1423               19/03/1999    3
## 1424               19/03/2004    3
## 1425               19/03/2007    3
## 1426               19/04/2001    3
## 1427               19/04/2006    3
## 1428               19/05/2005    3
## 1429               19/06/1996    3
## 1430               19/06/2003    3
## 1431               19/06/2007    3
## 1432               19/06/2012    3
## 1433               19/06/2014    3
## 1434               19/07/2005    3
## 1435               19/08/1996    3
## 1436               19/08/1997    3
## 1437               19/08/1998    3
## 1438               19/08/2004    3
## 1439               19/08/2010    3
## 1440               19/09/1996    3
## 1441               19/09/2001    3
## 1442               19/09/2007    3
## 1443               19/10/1997    3
## 1444               19/10/2007    3
## 1445               19/10/2010    3
## 1446               19/11/2010    3
## 1447               19/12/2002    3
## 1448               20/01/1999    3
## 1449               20/01/2012    3
## 1450               20/02/1999    3
## 1451               20/02/2004    3
## 1452               20/02/2013    3
## 1453               20/03/1996    3
## 1454               20/03/2000    3
## 1455               20/03/2009    3
## 1456               20/04/2004    3
## 1457               20/04/2007    3
## 1458               20/04/2009    3
## 1459               20/07/2001    3
## 1460               20/07/2004    3
## 1461               20/08/1996    3
## 1462               20/08/1997    3
## 1463               20/08/1998    3
## 1464               20/08/2002    3
## 1465               20/08/2009    3
## 1466               20/08/2013    3
## 1467               20/09/1996    3
## 1468               20/09/2005    3
## 1469               20/10/2000    3
## 1470               20/10/2008    3
## 1471               20/11/2007    3
## 1472               20/11/2008    3
## 1473               20/11/2009    3
## 1474               20/12/2012    3
## 1475               21/01/1997    3
## 1476               21/01/1999    3
## 1477               21/01/2005    3
## 1478               21/02/2002    3
## 1479               21/02/2006    3
## 1480               21/02/2008    3
## 1481               21/03/2002    3
## 1482               21/03/2003    3
## 1483               21/03/2013    3
## 1484               21/04/2011    3
## 1485               21/05/1998    3
## 1486               21/05/2004    3
## 1487               21/05/2007    3
## 1488               21/05/2014    3
## 1489               21/06/2002    3
## 1490               21/06/2004    3
## 1491               21/06/2006    3
## 1492               21/06/2007    3
## 1493               21/06/2010    3
## 1494               21/06/2011    3
## 1495               21/07/2005    3
## 1496               21/07/2009    3
## 1497               21/07/2010    3
## 1498               21/08/1998    3
## 1499               21/08/2008    3
## 1500               21/09/2001    3
## 1501               21/09/2013    3
## 1502               21/10/1996    3
## 1503               21/10/2008    3
## 1504               21/12/1998    3
## 1505               21/12/2004    3
## 1506               21/12/2008    3
## 1507               21/12/2012    3
## 1508               22/02/2000    3
## 1509               22/02/2004    3
## 1510               22/03/2001    3
## 1511               22/05/2000    3
## 1512               22/05/2007    3
## 1513               22/06/1996    3
## 1514               22/06/2001    3
## 1515               22/07/1998    3
## 1516               22/07/1999    3
## 1517               22/07/2003    3
## 1518               22/07/2013    3
## 1519               22/09/2009    3
## 1520               22/09/2010    3
## 1521               22/11/1999    3
## 1522               22/11/2002    3
## 1523               22/11/2009    3
## 1524               22/11/2013    3
## 1525               22/12/2012    3
## 1526               23/01/1997    3
## 1527               23/01/2001    3
## 1528               23/01/2006    3
## 1529               23/02/2004    3
## 1530               23/02/2011    3
## 1531               23/03/1998    3
## 1532               23/03/1999    3
## 1533               23/04/2008    3
## 1534               23/04/2014    3
## 1535               23/05/1997    3
## 1536               23/05/2013    3
## 1537               23/06/1997    3
## 1538               23/06/1998    3
## 1539               23/07/1999    3
## 1540               23/08/1996    3
## 1541               23/08/2009    3
## 1542               23/08/2011    3
## 1543               23/10/1998    3
## 1544               23/11/1999    3
## 1545               23/11/2002    3
## 1546               23/11/2004    3
## 1547               23/11/2009    3
## 1548               24/01/2006    3
## 1549               24/01/2008    3
## 1550               24/02/1997    3
## 1551               24/02/1998    3
## 1552               24/02/2009    3
## 1553               24/02/2011    3
## 1554               24/03/2000    3
## 1555               24/03/2008    3
## 1556               24/04/2007    3
## 1557               24/05/1996    3
## 1558               24/05/2006    3
## 1559               24/06/1999    3
## 1560               24/07/1996    3
## 1561               24/07/2006    3
## 1562               24/08/2004    3
## 1563               24/08/2009    3
## 1564               24/09/2008    3
## 1565               24/09/2010    3
## 1566               24/10/2000    3
## 1567               24/10/2001    3
## 1568               24/10/2007    3
## 1569               24/10/2013    3
## 1570               24/11/2003    3
## 1571               25/01/1999    3
## 1572               25/01/2014    3
## 1573               25/02/1999    3
## 1574               25/02/2002    3
## 1575               25/02/2004    3
## 1576               25/03/2002    3
## 1577               25/03/2011    3
## 1578               25/04/2001    3
## 1579               25/04/2005    3
## 1580               25/04/2008    3
## 1581               25/05/2004    3
## 1582               25/05/2010    3
## 1583               25/06/1998    3
## 1584               25/06/1999    3
## 1585               25/06/2003    3
## 1586               25/07/2007    3
## 1587               25/09/1996    3
## 1588               25/09/2008    3
## 1589               25/09/2010    3
## 1590               25/09/2013    3
## 1591               25/10/1996    3
## 1592               25/10/2007    3
## 1593               25/10/2013    3
## 1594               25/12/2013    3
## 1595               26/01/2000    3
## 1596               26/01/2009    3
## 1597               26/02/2002    3
## 1598               26/03/1997    3
## 1599               26/03/2004    3
## 1600               26/03/2007    3
## 1601               26/04/2010    3
## 1602               26/05/1997    3
## 1603               26/05/1998    3
## 1604               26/05/2007    3
## 1605               26/05/2011    3
## 1606               26/06/1997    3
## 1607               26/07/2002    3
## 1608               26/08/1996    3
## 1609               26/08/1999    3
## 1610               26/08/2002    3
## 1611               26/09/2006    3
## 1612               26/09/2011    3
## 1613               26/10/1999    3
## 1614               26/10/2000    3
## 1615               26/10/2001    3
## 1616               26/10/2012    3
## 1617               26/11/2000    3
## 1618               27/01/2000    3
## 1619               27/01/2004    3
## 1620               27/02/1997    3
## 1621               27/02/2013    3
## 1622               27/03/2001    3
## 1623               27/03/2002    3
## 1624               27/06/2001    3
## 1625               27/06/2005    3
## 1626               27/07/2007    3
## 1627               27/08/1997    3
## 1628               27/08/1998    3
## 1629               27/08/2004    3
## 1630               27/09/2000    3
## 1631               27/09/2007    3
## 1632               27/10/1999    3
## 1633               27/11/2000    3
## 1634               27/11/2012    3
## 1635               28/01/1997    3
## 1636               28/01/2014    3
## 1637               28/02/2002    3
## 1638               28/03/1996    3
## 1639               28/03/2005    3
## 1640               28/03/2006    3
## 1641               28/03/2008    3
## 1642               28/03/2011    3
## 1643               28/04/2005    3
## 1644               28/04/2008    3
## 1645               28/06/2000    3
## 1646               28/06/2006    3
## 1647               28/06/2011    3
## 1648               28/07/1997    3
## 1649               28/07/2004    3
## 1650               28/07/2012    3
## 1651               28/08/1997    3
## 1652               28/08/2007    3
## 1653               28/08/2012    3
## 1654               28/09/2011    3
## 1655               28/10/1996    3
## 1656               28/10/1997    3
## 1657               28/10/2002    3
## 1658               28/10/2011    3
## 1659               28/10/2012    3
## 1660               28/11/1998    3
## 1661               28/11/2000    3
## 1662               28/11/2011    3
## 1663               28/12/2007    3
## 1664               29/01/2001    3
## 1665               29/01/2002    3
## 1666               29/01/2007    3
## 1667               29/01/2008    3
## 1668               29/01/2009    3
## 1669               29/03/2001    3
## 1670               29/03/2004    3
## 1671               29/03/2012    3
## 1672               29/04/2006    3
## 1673               29/04/2010    3
## 1674               29/05/1997    3
## 1675               29/05/1999    3
## 1676               29/05/2000    3
## 1677               29/05/2001    3
## 1678               29/05/2007    3
## 1679               29/05/2013    3
## 1680               29/05/2014    3
## 1681               29/06/1998    3
## 1682               29/06/1999    3
## 1683               29/06/2007    3
## 1684               29/06/2012    3
## 1685               29/07/1999    3
## 1686               29/07/2002    3
## 1687               29/07/2003    3
## 1688               29/08/2001    3
## 1689               29/08/2002    3
## 1690               29/08/2005    3
## 1691               29/09/2003    3
## 1692               29/09/2006    3
## 1693               29/09/2008    3
## 1694               29/09/2010    3
## 1695               29/10/2009    3
## 1696               29/10/2012    3
## 1697               29/11/2005    3
## 1698               29/11/2013    3
## 1699               29/12/2004    3
## 1700               29/12/2013    3
## 1701               30/01/1997    3
## 1702               30/01/2006    3
## 1703               30/03/1997    3
## 1704               30/03/2007    3
## 1705               30/04/1998    3
## 1706               30/04/2004    3
## 1707               30/04/2007    3
## 1708               30/05/1997    3
## 1709               30/05/2001    3
## 1710               30/05/2002    3
## 1711               30/05/2012    3
## 1712               30/06/2000    3
## 1713               30/07/2003    3
## 1714               30/07/2004    3
## 1715               30/07/2011    3
## 1716               30/07/2012    3
## 1717               30/07/2013    3
## 1718               30/08/2000    3
## 1719               30/08/2001    3
## 1720               30/08/2002    3
## 1721               30/08/2011    3
## 1722               30/09/1999    3
## 1723               30/09/2010    3
## 1724               30/09/2011    3
## 1725               30/10/2000    3
## 1726               30/11/2005    3
## 1727               30/11/2012    3
## 1728               31/01/2012    3
## 1729               31/01/2014    3
## 1730               31/03/1997    3
## 1731               31/03/2005    3
## 1732               31/03/2009    3
## 1733               31/03/2014    3
## 1734               31/07/2001    3
## 1735               31/07/2013    3
## 1736               31/08/2002    3
## 1737               31/08/2006    3
## 1738               31/10/2003    3
## 1739               31/10/2006    3
## 1740               31/10/2013    3
## 1741               01/01/2000    2
## 1742               01/01/2003    2
## 1743               01/02/2001    2
## 1744               01/02/2002    2
## 1745               01/02/2003    2
## 1746               01/02/2008    2
## 1747               01/02/2012    2
## 1748               01/03/2002    2
## 1749               01/04/2002    2
## 1750               01/05/1998    2
## 1751               01/05/2002    2
## 1752               01/05/2006    2
## 1753               01/05/2012    2
## 1754               01/06/2014    2
## 1755               01/07/1997    2
## 1756               01/07/2005    2
## 1757               01/07/2006    2
## 1758               01/07/2007    2
## 1759               01/07/2008    2
## 1760               01/07/2009    2
## 1761               01/07/2010    2
## 1762               01/08/1996    2
## 1763               01/08/2002    2
## 1764               01/08/2011    2
## 1765               01/08/2012    2
## 1766               01/09/1996    2
## 1767               01/09/1998    2
## 1768               01/09/2002    2
## 1769               01/09/2011    2
## 1770               01/10/2006    2
## 1771               01/10/2008    2
## 1772               01/11/1996    2
## 1773               01/11/2003    2
## 1774               01/11/2007    2
## 1775               01/12/2004    2
## 1776               01/12/2006    2
## 1777               01/12/2007    2
## 1778               02/01/2002    2
## 1779               02/01/2011    2
## 1780               02/01/2014    2
## 1781               02/02/2002    2
## 1782               02/02/2012    2
## 1783               02/03/2000    2
## 1784               02/03/2006    2
## 1785               02/03/2007    2
## 1786               02/03/2009    2
## 1787               02/04/1997    2
## 1788               02/04/2003    2
## 1789               02/04/2009    2
## 1790               02/04/2012    2
## 1791               02/05/2002    2
## 1792               02/05/2003    2
## 1793               02/06/1996    2
## 1794               02/06/1999    2
## 1795               02/06/2002    2
## 1796               02/06/2003    2
## 1797               02/06/2006    2
## 1798               02/06/2009    2
## 1799               02/06/2013    2
## 1800               02/06/2014    2
## 1801               02/07/2000    2
## 1802               02/07/2001    2
## 1803               02/07/2006    2
## 1804               02/07/2007    2
## 1805               02/07/2009    2
## 1806               02/08/1998    2
## 1807               02/08/2000    2
## 1808               02/08/2007    2
## 1809               02/09/2009    2
## 1810               02/09/2011    2
## 1811               02/10/1997    2
## 1812               02/10/2000    2
## 1813               02/10/2002    2
## 1814               02/10/2005    2
## 1815               02/10/2007    2
## 1816               02/11/1995    2
## 1817               02/11/2011    2
## 1818               02/12/1997    2
## 1819               02/12/1999    2
## 1820               02/12/2004    2
## 1821               02/12/2010    2
## 1822               03/01/1997    2
## 1823               03/01/2006    2
## 1824               03/01/2008    2
## 1825               03/01/2010    2
## 1826               03/01/2014    2
## 1827               03/02/1999    2
## 1828               03/02/2005    2
## 1829               03/02/2009    2
## 1830               03/02/2013    2
## 1831               03/03/1999    2
## 1832               03/03/2003    2
## 1833               03/03/2004    2
## 1834               03/04/1996    2
## 1835               03/04/1997    2
## 1836               03/04/1999    2
## 1837               03/04/2001    2
## 1838               03/04/2002    2
## 1839               03/04/2008    2
## 1840               03/04/2012    2
## 1841               03/04/2013    2
## 1842               03/05/1999    2
## 1843               03/05/2000    2
## 1844               03/05/2001    2
## 1845               03/05/2004    2
## 1846               03/05/2005    2
## 1847               03/05/2007    2
## 1848               03/05/2012    2
## 1849               03/05/2014    2
## 1850               03/06/1999    2
## 1851               03/06/2001    2
## 1852               03/06/2008    2
## 1853               03/06/2010    2
## 1854               03/06/2014    2
## 1855               03/07/1996    2
## 1856               03/07/1998    2
## 1857               03/07/2002    2
## 1858               03/07/2006    2
## 1859               03/07/2013    2
## 1860               03/08/1996    2
## 1861               03/08/2001    2
## 1862               03/08/2002    2
## 1863               03/08/2004    2
## 1864               03/08/2005    2
## 1865               03/08/2009    2
## 1866               03/08/2011    2
## 1867               03/09/2002    2
## 1868               03/10/2001    2
## 1869               03/10/2003    2
## 1870               03/10/2006    2
## 1871               03/10/2011    2
## 1872               03/11/1996    2
## 1873               03/11/2000    2
## 1874               03/11/2004    2
## 1875               03/11/2008    2
## 1876               03/11/2010    2
## 1877               03/11/2013    2
## 1878               03/12/1996    2
## 1879               03/12/1998    2
## 1880               03/12/2001    2
## 1881               03/12/2002    2
## 1882               03/12/2012    2
## 1883               03/12/2013    2
## 1884               04/01/2007    2
## 1885               04/02/2004    2
## 1886               04/02/2005    2
## 1887               04/02/2010    2
## 1888               04/02/2012    2
## 1889               04/02/2014    2
## 1890               04/03/1997    2
## 1891               04/03/1998    2
## 1892               04/03/2009    2
## 1893               04/04/1997    2
## 1894               04/04/2003    2
## 1895               04/04/2007    2
## 1896               04/04/2011    2
## 1897               04/04/2012    2
## 1898               04/04/2014    2
## 1899               04/05/1997    2
## 1900               04/05/2005    2
## 1901               04/05/2007    2
## 1902               04/05/2011    2
## 1903               04/06/1996    2
## 1904               04/06/2003    2
## 1905               04/06/2006    2
## 1906               04/06/2009    2
## 1907               04/07/1996    2
## 1908               04/07/2001    2
## 1909               04/07/2005    2
## 1910               04/07/2013    2
## 1911               04/08/1997    2
## 1912               04/08/1998    2
## 1913               04/08/2003    2
## 1914               04/08/2011    2
## 1915               04/10/1996    2
## 1916               04/10/1999    2
## 1917               04/10/2000    2
## 1918               04/10/2001    2
## 1919               04/10/2005    2
## 1920               04/10/2011    2
## 1921               04/11/1996    2
## 1922               04/11/1998    2
## 1923               04/11/2000    2
## 1924               04/11/2004    2
## 1925               04/11/2005    2
## 1926               04/11/2006    2
## 1927               04/12/1996    2
## 1928               04/12/2003    2
## 1929               04/12/2008    2
## 1930               04/12/2010    2
## 1931               05/01/1998    2
## 1932               05/01/2003    2
## 1933               05/01/2004    2
## 1934               05/01/2005    2
## 1935               05/01/2010    2
## 1936               05/01/2014    2
## 1937               05/02/2002    2
## 1938               05/02/2003    2
## 1939               05/02/2009    2
## 1940               05/03/1998    2
## 1941               05/03/2002    2
## 1942               05/03/2010    2
## 1943               05/04/1997    2
## 1944               05/04/2000    2
## 1945               05/04/2003    2
## 1946               05/04/2004    2
## 1947               05/04/2007    2
## 1948               05/05/2006    2
## 1949               05/05/2012    2
## 1950               05/06/1996    2
## 1951               05/06/2000    2
## 1952               05/06/2004    2
## 1953               05/06/2006    2
## 1954               05/06/2008    2
## 1955               05/07/1996    2
## 1956               05/07/2006    2
## 1957               05/07/2008    2
## 1958               05/07/2011    2
## 1959               05/07/2012    2
## 1960               05/07/2013    2
## 1961               05/08/1996    2
## 1962               05/08/2010    2
## 1963               05/08/2011    2
## 1964               05/09/2002    2
## 1965               05/09/2003    2
## 1966               05/09/2006    2
## 1967               05/09/2008    2
## 1968               05/10/1999    2
## 1969               05/10/2004    2
## 1970               05/10/2013    2
## 1971               05/11/1996    2
## 1972               05/11/2009    2
## 1973               05/12/1998    2
## 1974               05/12/2000    2
## 1975               05/12/2003    2
## 1976               05/12/2004    2
## 1977               05/12/2006    2
## 1978               06/01/1999    2
## 1979               06/01/2009    2
## 1980               06/02/1996    2
## 1981               06/02/2002    2
## 1982               06/02/2008    2
## 1983               06/02/2009    2
## 1984               06/03/1997    2
## 1985               06/03/2001    2
## 1986               06/03/2009    2
## 1987               06/04/2001    2
## 1988               06/04/2004    2
## 1989               06/04/2009    2
## 1990               06/05/2002    2
## 1991               06/05/2008    2
## 1992               06/05/2009    2
## 1993               06/06/1997    2
## 1994               06/06/2001    2
## 1995               06/06/2004    2
## 1996               06/07/1999    2
## 1997               06/07/2004    2
## 1998               06/07/2007    2
## 1999               06/07/2010    2
## 2000               06/08/2002    2
## 2001               06/08/2004    2
## 2002               06/08/2005    2
## 2003               06/08/2006    2
## 2004               06/08/2009    2
## 2005               06/09/1997    2
## 2006               06/10/1998    2
## 2007               06/10/2000    2
## 2008               06/10/2003    2
## 2009               06/10/2006    2
## 2010               06/10/2009    2
## 2011               06/10/2011    2
## 2012               06/11/1997    2
## 2013               06/11/1998    2
## 2014               06/11/2002    2
## 2015               06/11/2006    2
## 2016               06/11/2009    2
## 2017               06/12/2004    2
## 2018               06/12/2010    2
## 2019               07/01/1997    2
## 2020               07/01/1999    2
## 2021               07/01/2002    2
## 2022               07/01/2008    2
## 2023               07/01/2014    2
## 2024               07/02/2011    2
## 2025               07/03/1996    2
## 2026               07/03/2002    2
## 2027               07/03/2003    2
## 2028               07/03/2005    2
## 2029               07/04/1997    2
## 2030               07/04/2004    2
## 2031               07/04/2010    2
## 2032               07/04/2011    2
## 2033               07/05/1997    2
## 2034               07/05/1998    2
## 2035               07/05/2003    2
## 2036               07/05/2010    2
## 2037               07/05/2014    2
## 2038               07/06/1999    2
## 2039               07/06/2000    2
## 2040               07/06/2003    2
## 2041               07/06/2004    2
## 2042               07/06/2006    2
## 2043               07/07/1996    2
## 2044               07/07/1998    2
## 2045               07/07/2000    2
## 2046               07/07/2004    2
## 2047               07/07/2005    2
## 2048               07/07/2006    2
## 2049               07/07/2013    2
## 2050               07/08/1996    2
## 2051               07/08/2001    2
## 2052               07/08/2013    2
## 2053               07/09/1996    2
## 2054               07/09/2001    2
## 2055               07/09/2003    2
## 2056               07/09/2004    2
## 2057               07/09/2005    2
## 2058               07/09/2006    2
## 2059               07/09/2010    2
## 2060               07/10/2002    2
## 2061               07/10/2004    2
## 2062               07/10/2005    2
## 2063               07/10/2012    2
## 2064               07/11/1997    2
## 2065               07/11/2000    2
## 2066               07/11/2005    2
## 2067               07/11/2006    2
## 2068               07/11/2008    2
## 2069               07/11/2011    2
## 2070               07/12/1998    2
## 2071               07/12/2001    2
## 2072               07/12/2005    2
## 2073               07/12/2012    2
## 2074               08/01/1997    2
## 2075               08/01/1999    2
## 2076               08/01/2002    2
## 2077               08/01/2005    2
## 2078               08/01/2006    2
## 2079               08/01/2008    2
## 2080               08/01/2012    2
## 2081               08/02/1995    2
## 2082               08/02/1999    2
## 2083               08/02/2001    2
## 2084               08/03/2010    2
## 2085               08/03/2012    2
## 2086               08/04/1999    2
## 2087               08/04/2002    2
## 2088               08/04/2004    2
## 2089               08/05/2001    2
## 2090               08/05/2002    2
## 2091               08/05/2004    2
## 2092               08/05/2008    2
## 2093               08/05/2012    2
## 2094               08/05/2013    2
## 2095               08/06/2000    2
## 2096               08/06/2001    2
## 2097               08/06/2002    2
## 2098               08/06/2009    2
## 2099               08/06/2011    2
## 2100               08/06/2014    2
## 2101               08/07/2001    2
## 2102               08/08/1998    2
## 2103               08/08/2001    2
## 2104               08/08/2007    2
## 2105               08/09/1998    2
## 2106               08/09/2005    2
## 2107               08/09/2008    2
## 2108               08/09/2012    2
## 2109               08/10/1999    2
## 2110               08/10/2001    2
## 2111               08/10/2002    2
## 2112               08/10/2006    2
## 2113               08/11/1996    2
## 2114               08/11/2001    2
## 2115               08/11/2006    2
## 2116               08/11/2007    2
## 2117               08/12/2006    2
## 2118               09/01/2003    2
## 2119               09/02/1997    2
## 2120               09/02/2006    2
## 2121               09/02/2012    2
## 2122               09/03/2000    2
## 2123               09/03/2009    2
## 2124               09/03/2010    2
## 2125               09/03/2011    2
## 2126               09/03/2012    2
## 2127               09/03/2013    2
## 2128               09/04/1999    2
## 2129               09/04/2002    2
## 2130               09/05/1999    2
## 2131               09/05/2000    2
## 2132               09/05/2001    2
## 2133               09/05/2003    2
## 2134               09/05/2008    2
## 2135               09/05/2012    2
## 2136               09/06/1997    2
## 2137               09/06/2009    2
## 2138               09/07/1998    2
## 2139               09/07/2001    2
## 2140               09/07/2002    2
## 2141               09/07/2007    2
## 2142               09/07/2011    2
## 2143               09/08/2001    2
## 2144               09/08/2002    2
## 2145               09/08/2006    2
## 2146               09/08/2010    2
## 2147               09/09/1999    2
## 2148               09/09/2003    2
## 2149               09/09/2009    2
## 2150               09/10/2000    2
## 2151               09/10/2004    2
## 2152               09/11/1999    2
## 2153               09/11/2010    2
## 2154               09/11/2011    2
## 2155               09/12/1997    2
## 2156               09/12/2009    2
## 2157               09/12/2010    2
## 2158               10/01/1997    2
## 2159               10/01/2007    2
## 2160               10/01/2008    2
## 2161               10/02/1998    2
## 2162               10/02/2004    2
## 2163               10/02/2005    2
## 2164               10/02/2009    2
## 2165               10/02/2014    2
## 2166               10/03/2008    2
## 2167               10/03/2010    2
## 2168               10/03/2011    2
## 2169               10/03/2012    2
## 2170               10/03/2013    2
## 2171               10/04/1997    2
## 2172               10/05/2005    2
## 2173               10/05/2008    2
## 2174               10/06/2000    2
## 2175               10/06/2008    2
## 2176               10/06/2010    2
## 2177               10/07/1996    2
## 2178               10/07/1998    2
## 2179               10/07/2003    2
## 2180               10/07/2006    2
## 2181               10/07/2007    2
## 2182               10/07/2008    2
## 2183               10/07/2009    2
## 2184               10/07/2012    2
## 2185               10/08/1996    2
## 2186               10/08/2004    2
## 2187               10/08/2008    2
## 2188               10/09/2001    2
## 2189               10/09/2003    2
## 2190               10/09/2005    2
## 2191               10/10/1997    2
## 2192               10/10/2005    2
## 2193               10/10/2007    2
## 2194               10/11/1997    2
## 2195               10/11/1999    2
## 2196               10/11/2000    2
## 2197               10/11/2003    2
## 2198               10/11/2005    2
## 2199               10/11/2007    2
## 2200               10/12/1998    2
## 2201               10/12/1999    2
## 2202               10/12/2001    2
## 2203               10/12/2002    2
## 2204               10/12/2004    2
## 2205               10/12/2005    2
## 2206               10/12/2009    2
## 2207               10/12/2010    2
## 2208               11/01/2000    2
## 2209               11/01/2001    2
## 2210               11/01/2005    2
## 2211               11/01/2011    2
## 2212               11/01/2013    2
## 2213               11/02/2004    2
## 2214               11/03/2009    2
## 2215               11/03/2011    2
## 2216               11/03/2012    2
## 2217               11/04/2000    2
## 2218               11/04/2001    2
## 2219               11/04/2002    2
## 2220               11/04/2013    2
## 2221               11/05/1999    2
## 2222               11/05/2002    2
## 2223               11/05/2004    2
## 2224               11/05/2006    2
## 2225               11/05/2014    2
## 2226               11/06/2008    2
## 2227               11/06/2010    2
## 2228               11/07/1999    2
## 2229               11/07/2007    2
## 2230               11/08/2000    2
## 2231               11/08/2005    2
## 2232               11/08/2006    2
## 2233               11/08/2009    2
## 2234               11/08/2010    2
## 2235               11/09/2003    2
## 2236               11/09/2010    2
## 2237               11/09/2012    2
## 2238               11/09/2013    2
## 2239               11/10/1996    2
## 2240               11/10/2000    2
## 2241               11/10/2012    2
## 2242               11/11/1997    2
## 2243               11/11/1999    2
## 2244               11/11/2005    2
## 2245               11/11/2006    2
## 2246               11/11/2013    2
## 2247               11/12/1996    2
## 2248               11/12/1997    2
## 2249               11/12/2013    2
## 2250               12/01/1999    2
## 2251               12/01/2000    2
## 2252               12/01/2004    2
## 2253               12/01/2005    2
## 2254               12/01/2006    2
## 2255               12/01/2010    2
## 2256               12/01/2011    2
## 2257               12/02/2004    2
## 2258               12/02/2005    2
## 2259               12/02/2014    2
## 2260               12/03/1997    2
## 2261               12/03/1999    2
## 2262               12/03/2010    2
## 2263               12/03/2013    2
## 2264               12/04/2001    2
## 2265               12/04/2006    2
## 2266               12/04/2012    2
## 2267               12/04/2013    2
## 2268               12/05/1996    2
## 2269               12/05/2005    2
## 2270               12/05/2009    2
## 2271               12/06/1997    2
## 2272               12/06/2006    2
## 2273               12/06/2009    2
## 2274               12/06/2010    2
## 2275               12/07/2005    2
## 2276               12/07/2010    2
## 2277               12/07/2012    2
## 2278               12/08/1998    2
## 2279               12/08/1999    2
## 2280               12/08/2001    2
## 2281               12/08/2002    2
## 2282               12/08/2003    2
## 2283               12/08/2004    2
## 2284               12/08/2005    2
## 2285               12/09/1997    2
## 2286               12/09/2001    2
## 2287               12/09/2009    2
## 2288               12/09/2013    2
## 2289               12/10/1996    2
## 2290               12/10/1999    2
## 2291               12/10/2007    2
## 2292               12/10/2011    2
## 2293               12/11/1996    2
## 2294               12/11/2000    2
## 2295               12/11/2002    2
## 2296               12/12/2001    2
## 2297               12/12/2005    2
## 2298               12/12/2010    2
## 2299               13/01/1998    2
## 2300               13/01/1999    2
## 2301               13/01/2003    2
## 2302               13/01/2007    2
## 2303               13/01/2009    2
## 2304               13/01/2010    2
## 2305               13/01/2011    2
## 2306               13/02/2004    2
## 2307               13/02/2012    2
## 2308               13/02/2014    2
## 2309               13/03/1996    2
## 2310               13/03/1998    2
## 2311               13/03/2002    2
## 2312               13/03/2009    2
## 2313               13/04/2005    2
## 2314               13/04/2010    2
## 2315               13/04/2012    2
## 2316               13/05/1998    2
## 2317               13/05/2000    2
## 2318               13/06/2001    2
## 2319               13/06/2005    2
## 2320               13/06/2007    2
## 2321               13/06/2014    2
## 2322               13/07/1995    2
## 2323               13/07/2004    2
## 2324               13/07/2007    2
## 2325               13/07/2011    2
## 2326               13/07/2012    2
## 2327               13/08/1999    2
## 2328               13/08/2003    2
## 2329               13/08/2008    2
## 2330               13/08/2012    2
## 2331               13/09/1996    2
## 2332               13/09/2004    2
## 2333               13/09/2007    2
## 2334               13/09/2011    2
## 2335               13/10/2008    2
## 2336               13/10/2011    2
## 2337               13/10/2012    2
## 2338               13/11/2000    2
## 2339               13/11/2001    2
## 2340               13/11/2003    2
## 2341               13/12/2001    2
## 2342               13/12/2010    2
## 2343               14/01/1997    2
## 2344               14/01/2002    2
## 2345               14/01/2005    2
## 2346               14/01/2011    2
## 2347               14/01/2014    2
## 2348               14/02/1996    2
## 2349               14/02/2005    2
## 2350               14/02/2007    2
## 2351               14/03/1996    2
## 2352               14/03/1999    2
## 2353               14/03/2003    2
## 2354               14/03/2005    2
## 2355               14/04/1996    2
## 2356               14/04/2003    2
## 2357               14/04/2005    2
## 2358               14/05/1997    2
## 2359               14/05/1998    2
## 2360               14/05/2001    2
## 2361               14/05/2004    2
## 2362               14/05/2010    2
## 2363               14/06/1996    2
## 2364               14/06/2001    2
## 2365               14/06/2004    2
## 2366               14/06/2013    2
## 2367               14/07/2003    2
## 2368               14/07/2005    2
## 2369               14/07/2013    2
## 2370               14/08/2000    2
## 2371               14/08/2010    2
## 2372               14/08/2012    2
## 2373               14/09/1998    2
## 2374               14/09/2006    2
## 2375               14/09/2007    2
## 2376               14/09/2009    2
## 2377               14/09/2012    2
## 2378               14/10/1997    2
## 2379               14/10/1998    2
## 2380               14/10/1999    2
## 2381               14/10/2000    2
## 2382               14/10/2002    2
## 2383               14/11/2003    2
## 2384               14/11/2004    2
## 2385               14/11/2006    2
## 2386               14/11/2008    2
## 2387               14/11/2012    2
## 2388               14/12/1997    2
## 2389               14/12/1998    2
## 2390               15/01/1998    2
## 2391               15/01/2004    2
## 2392               15/01/2008    2
## 2393               15/02/1997    2
## 2394               15/02/2001    2
## 2395               15/02/2006    2
## 2396               15/02/2010    2
## 2397               15/02/2011    2
## 2398               15/03/1996    2
## 2399               15/03/1999    2
## 2400               15/03/2002    2
## 2401               15/03/2004    2
## 2402               15/03/2006    2
## 2403               15/03/2007    2
## 2404               15/03/2010    2
## 2405               15/03/2013    2
## 2406               15/04/1998    2
## 2407               15/04/2001    2
## 2408               15/04/2010    2
## 2409               15/05/1999    2
## 2410               15/05/2000    2
## 2411               15/05/2003    2
## 2412               15/05/2014    2
## 2413               15/06/2001    2
## 2414               15/06/2010    2
## 2415               15/06/2013    2
## 2416               15/06/2014    2
## 2417               15/07/2004    2
## 2418               15/07/2009    2
## 2419               15/07/2011    2
## 2420               15/07/2013    2
## 2421               15/08/2003    2
## 2422               15/08/2011    2
## 2423               15/09/1996    2
## 2424               15/09/1997    2
## 2425               15/09/2000    2
## 2426               15/09/2010    2
## 2427               15/10/1997    2
## 2428               15/10/1998    2
## 2429               15/10/2000    2
## 2430               15/10/2001    2
## 2431               15/10/2005    2
## 2432               15/10/2012    2
## 2433               15/11/2002    2
## 2434               15/11/2004    2
## 2435               15/11/2006    2
## 2436               15/11/2007    2
## 2437               15/11/2013    2
## 2438               15/12/1999    2
## 2439               15/12/2000    2
## 2440               15/12/2004    2
## 2441               15/12/2007    2
## 2442               15/12/2009    2
## 2443               15/12/2011    2
## 2444               16/01/1998    2
## 2445               16/01/2002    2
## 2446               16/01/2014    2
## 2447               16/02/1999    2
## 2448               16/02/2000    2
## 2449               16/02/2005    2
## 2450               16/02/2013    2
## 2451               16/03/2001    2
## 2452               16/03/2004    2
## 2453               16/03/2007    2
## 2454               16/03/2009    2
## 2455               16/03/2011    2
## 2456               16/05/2003    2
## 2457               16/05/2004    2
## 2458               16/05/2008    2
## 2459               16/05/2011    2
## 2460               16/06/1999    2
## 2461               16/06/2003    2
## 2462               16/06/2004    2
## 2463               16/06/2008    2
## 2464               16/06/2009    2
## 2465               16/07/2002    2
## 2466               16/07/2003    2
## 2467               16/07/2007    2
## 2468               16/08/2003    2
## 2469               16/08/2005    2
## 2470               16/08/2007    2
## 2471               16/08/2011    2
## 2472               16/09/1999    2
## 2473               16/09/2000    2
## 2474               16/09/2002    2
## 2475               16/09/2010    2
## 2476               16/09/2011    2
## 2477               16/09/2012    2
## 2478               16/09/2013    2
## 2479               16/10/2001    2
## 2480               16/10/2007    2
## 2481               16/10/2009    2
## 2482               16/10/2012    2
## 2483               16/11/2007    2
## 2484               16/11/2012    2
## 2485               16/11/2013    2
## 2486               16/12/2000    2
## 2487               16/12/2008    2
## 2488               16/12/2011    2
## 2489               17/02/2005    2
## 2490               17/02/2013    2
## 2491               17/03/2005    2
## 2492               17/04/1997    2
## 2493               17/04/2002    2
## 2494               17/04/2006    2
## 2495               17/04/2013    2
## 2496               17/05/1999    2
## 2497               17/05/2000    2
## 2498               17/05/2001    2
## 2499               17/05/2004    2
## 2500               17/05/2005    2
## 2501               17/05/2007    2
## 2502               17/05/2010    2
## 2503               17/06/1997    2
## 2504               17/06/2005    2
## 2505               17/06/2008    2
## 2506               17/06/2014    2
## 2507               17/07/1996    2
## 2508               17/08/1998    2
## 2509               17/08/2001    2
## 2510               17/08/2004    2
## 2511               17/08/2006    2
## 2512               17/08/2007    2
## 2513               17/08/2012    2
## 2514               17/09/1996    2
## 2515               17/09/1997    2
## 2516               17/09/1999    2
## 2517               17/09/2001    2
## 2518               17/09/2002    2
## 2519               17/09/2007    2
## 2520               17/09/2013    2
## 2521               17/10/2000    2
## 2522               17/10/2004    2
## 2523               17/10/2006    2
## 2524               17/10/2013    2
## 2525               17/11/2008    2
## 2526               17/11/2010    2
## 2527               17/12/1996    2
## 2528               17/12/2005    2
## 2529               17/12/2013    2
## 2530               18/01/1999    2
## 2531               18/01/2001    2
## 2532               18/01/2007    2
## 2533               18/01/2013    2
## 2534               18/02/1998    2
## 2535               18/02/2000    2
## 2536               18/02/2011    2
## 2537               18/03/1999    2
## 2538               18/03/2005    2
## 2539               18/03/2009    2
## 2540               18/03/2011    2
## 2541               18/03/2014    2
## 2542               18/04/2001    2
## 2543               18/04/2012    2
## 2544               18/04/2013    2
## 2545               18/05/1996    2
## 2546               18/05/2000    2
## 2547               18/05/2012    2
## 2548               18/06/1996    2
## 2549               18/06/1999    2
## 2550               18/06/2002    2
## 2551               18/06/2003    2
## 2552               18/06/2004    2
## 2553               18/06/2007    2
## 2554               18/06/2009    2
## 2555               18/07/1997    2
## 2556               18/07/2003    2
## 2557               18/07/2007    2
## 2558               18/07/2008    2
## 2559               18/08/1997    2
## 2560               18/08/2000    2
## 2561               18/08/2002    2
## 2562               18/08/2003    2
## 2563               18/08/2006    2
## 2564               18/08/2008    2
## 2565               18/08/2011    2
## 2566               18/08/2012    2
## 2567               18/08/2013    2
## 2568               18/09/1995    2
## 2569               18/09/2007    2
## 2570               18/10/1996    2
## 2571               18/10/2000    2
## 2572               18/10/2004    2
## 2573               18/10/2012    2
## 2574               18/10/2013    2
## 2575               18/11/1996    2
## 2576               18/11/1998    2
## 2577               18/11/2000    2
## 2578               18/11/2001    2
## 2579               18/11/2006    2
## 2580               18/12/1998    2
## 2581               18/12/2003    2
## 2582               18/12/2004    2
## 2583               19/01/2004    2
## 2584               19/01/2013    2
## 2585               19/02/2003    2
## 2586               19/02/2004    2
## 2587               19/02/2012    2
## 2588               19/02/2013    2
## 2589               19/02/2014    2
## 2590               19/03/1996    2
## 2591               19/03/2001    2
## 2592               19/03/2002    2
## 2593               19/03/2008    2
## 2594               19/04/2004    2
## 2595               19/04/2007    2
## 2596               19/04/2008    2
## 2597               19/04/2011    2
## 2598               19/04/2014    2
## 2599               19/05/1998    2
## 2600               19/05/1999    2
## 2601               19/05/2004    2
## 2602               19/05/2008    2
## 2603               19/06/2000    2
## 2604               19/06/2002    2
## 2605               19/06/2008    2
## 2606               19/07/1999    2
## 2607               19/07/2002    2
## 2608               19/07/2003    2
## 2609               19/08/2002    2
## 2610               19/08/2006    2
## 2611               19/09/1997    2
## 2612               19/09/1998    2
## 2613               19/09/2000    2
## 2614               19/09/2006    2
## 2615               19/10/1999    2
## 2616               19/10/2000    2
## 2617               19/10/2009    2
## 2618               19/11/2003    2
## 2619               19/11/2008    2
## 2620               19/12/2003    2
## 2621               19/12/2006    2
## 2622               19/12/2011    2
## 2623               19/12/2013    2
## 2624               20/01/2002    2
## 2625               20/02/2002    2
## 2626               20/03/1998    2
## 2627               20/03/2002    2
## 2628               20/03/2013    2
## 2629               20/04/1996    2
## 2630               20/04/2005    2
## 2631               20/05/1998    2
## 2632               20/05/2005    2
## 2633               20/05/2007    2
## 2634               20/05/2009    2
## 2635               20/05/2011    2
## 2636               20/05/2013    2
## 2637               20/05/2014    2
## 2638               20/06/2007    2
## 2639               20/06/2011    2
## 2640               20/06/2013    2
## 2641               20/07/2002    2
## 2642               20/07/2008    2
## 2643               20/07/2010    2
## 2644               20/07/2012    2
## 2645               20/08/1999    2
## 2646               20/08/2003    2
## 2647               20/08/2007    2
## 2648               20/08/2008    2
## 2649               20/08/2010    2
## 2650               20/08/2012    2
## 2651               20/09/2000    2
## 2652               20/09/2002    2
## 2653               20/09/2010    2
## 2654               20/09/2013    2
## 2655               20/10/1999    2
## 2656               20/10/2003    2
## 2657               20/10/2005    2
## 2658               20/10/2013    2
## 2659               20/11/1998    2
## 2660               20/11/2000    2
## 2661               20/11/2002    2
## 2662               20/11/2003    2
## 2663               20/11/2004    2
## 2664               20/11/2011    2
## 2665               20/12/2000    2
## 2666               20/12/2009    2
## 2667               20/12/2011    2
## 2668               20/12/2013    2
## 2669               21/01/2007    2
## 2670               21/01/2010    2
## 2671               21/01/2011    2
## 2672               21/02/1996    2
## 2673               21/02/1997    2
## 2674               21/02/2000    2
## 2675               21/02/2007    2
## 2676               21/03/1998    2
## 2677               21/03/2000    2
## 2678               21/04/1996    2
## 2679               21/04/1997    2
## 2680               21/04/2000    2
## 2681               21/04/2003    2
## 2682               21/04/2005    2
## 2683               21/04/2009    2
## 2684               21/04/2014    2
## 2685               21/05/1999    2
## 2686               21/05/2013    2
## 2687               21/06/1996    2
## 2688               21/06/2000    2
## 2689               21/06/2005    2
## 2690               21/06/2012    2
## 2691               21/07/1996    2
## 2692               21/07/1998    2
## 2693               21/07/1999    2
## 2694               21/07/2000    2
## 2695               21/07/2002    2
## 2696               21/07/2004    2
## 2697               21/07/2008    2
## 2698               21/07/2013    2
## 2699               21/08/1999    2
## 2700               21/08/2000    2
## 2701               21/08/2011    2
## 2702               21/09/1996    2
## 2703               21/09/1999    2
## 2704               21/09/2006    2
## 2705               21/09/2009    2
## 2706               21/10/1997    2
## 2707               21/10/2003    2
## 2708               21/10/2004    2
## 2709               21/10/2005    2
## 2710               21/10/2009    2
## 2711               21/10/2010    2
## 2712               21/11/2000    2
## 2713               21/11/2005    2
## 2714               21/11/2011    2
## 2715               21/12/2009    2
## 2716               22/01/1996    2
## 2717               22/01/1999    2
## 2718               22/01/2001    2
## 2719               22/01/2002    2
## 2720               22/01/2003    2
## 2721               22/01/2007    2
## 2722               22/01/2009    2
## 2723               22/01/2010    2
## 2724               22/02/2002    2
## 2725               22/02/2006    2
## 2726               22/02/2010    2
## 2727               22/03/1996    2
## 2728               22/03/2005    2
## 2729               22/04/1998    2
## 2730               22/04/1999    2
## 2731               22/04/2001    2
## 2732               22/04/2002    2
## 2733               22/04/2003    2
## 2734               22/04/2013    2
## 2735               22/05/2001    2
## 2736               22/05/2002    2
## 2737               22/06/2005    2
## 2738               22/06/2009    2
## 2739               22/06/2013    2
## 2740               22/07/1997    2
## 2741               22/07/2002    2
## 2742               22/07/2004    2
## 2743               22/07/2009    2
## 2744               22/07/2010    2
## 2745               22/07/2012    2
## 2746               22/08/1996    2
## 2747               22/08/1997    2
## 2748               22/08/1998    2
## 2749               22/08/2000    2
## 2750               22/09/1995    2
## 2751               22/09/1996    2
## 2752               22/09/1998    2
## 2753               22/09/1999    2
## 2754               22/09/2004    2
## 2755               22/09/2005    2
## 2756               22/09/2006    2
## 2757               22/10/1998    2
## 2758               22/10/2000    2
## 2759               22/10/2001    2
## 2760               22/10/2013    2
## 2761               22/11/2004    2
## 2762               22/11/2005    2
## 2763               22/11/2010    2
## 2764               22/11/2011    2
## 2765               22/12/1998    2
## 2766               22/12/2001    2
## 2767               22/12/2003    2
## 2768               22/12/2004    2
## 2769               22/12/2010    2
## 2770               23/01/1998    2
## 2771               23/01/1999    2
## 2772               23/01/2002    2
## 2773               23/01/2003    2
## 2774               23/01/2008    2
## 2775               23/02/1999    2
## 2776               23/02/2000    2
## 2777               23/02/2003    2
## 2778               23/02/2005    2
## 2779               23/03/2004    2
## 2780               23/03/2010    2
## 2781               23/03/2011    2
## 2782               23/04/1998    2
## 2783               23/04/2002    2
## 2784               23/04/2004    2
## 2785               23/04/2006    2
## 2786               23/04/2009    2
## 2787               23/04/2011    2
## 2788               23/04/2012    2
## 2789               23/05/1999    2
## 2790               23/05/2000    2
## 2791               23/05/2014    2
## 2792               23/06/1999    2
## 2793               23/06/2005    2
## 2794               23/06/2012    2
## 2795               23/06/2014    2
## 2796               23/07/2000    2
## 2797               23/07/2004    2
## 2798               23/07/2006    2
## 2799               23/07/2007    2
## 2800               23/07/2013    2
## 2801               23/08/1997    2
## 2802               23/08/2002    2
## 2803               23/08/2007    2
## 2804               23/08/2012    2
## 2805               23/09/1998    2
## 2806               23/09/1999    2
## 2807               23/09/2008    2
## 2808               23/09/2009    2
## 2809               23/10/1997    2
## 2810               23/10/2004    2
## 2811               23/10/2007    2
## 2812               23/10/2009    2
## 2813               23/11/1996    2
## 2814               23/11/2006    2
## 2815               23/11/2010    2
## 2816               23/11/2011    2
## 2817               23/11/2012    2
## 2818               23/12/2003    2
## 2819               23/12/2011    2
## 2820               24/01/1997    2
## 2821               24/01/1998    2
## 2822               24/01/2005    2
## 2823               24/02/2000    2
## 2824               24/02/2010    2
## 2825               24/02/2013    2
## 2826               24/03/2010    2
## 2827               24/04/1996    2
## 2828               24/04/2009    2
## 2829               24/05/2000    2
## 2830               24/05/2007    2
## 2831               24/05/2010    2
## 2832               24/05/2013    2
## 2833               24/06/2002    2
## 2834               24/06/2006    2
## 2835               24/06/2013    2
## 2836               24/07/1999    2
## 2837               24/07/2000    2
## 2838               24/07/2001    2
## 2839               24/07/2003    2
## 2840               24/07/2009    2
## 2841               24/07/2011    2
## 2842               24/07/2013    2
## 2843               24/08/2011    2
## 2844               24/09/1998    2
## 2845               24/09/1999    2
## 2846               24/09/2001    2
## 2847               24/09/2005    2
## 2848               24/09/2012    2
## 2849               24/09/2013    2
## 2850               24/10/2005    2
## 2851               24/10/2006    2
## 2852               24/10/2010    2
## 2853               24/10/2012    2
## 2854               24/11/2010    2
## 2855               25/01/2001    2
## 2856               25/01/2008    2
## 2857               25/02/1997    2
## 2858               25/03/1998    2
## 2859               25/03/2000    2
## 2860               25/03/2013    2
## 2861               25/04/2006    2
## 2862               25/04/2010    2
## 2863               25/04/2014    2
## 2864               25/05/2002    2
## 2865               25/05/2005    2
## 2866               25/05/2006    2
## 2867               25/05/2011    2
## 2868               25/05/2013    2
## 2869               25/06/1996    2
## 2870               25/06/2001    2
## 2871               25/06/2002    2
## 2872               25/06/2006    2
## 2873               25/06/2009    2
## 2874               25/06/2011    2
## 2875               25/06/2012    2
## 2876               25/07/2000    2
## 2877               25/07/2003    2
## 2878               25/07/2005    2
## 2879               25/07/2011    2
## 2880               25/08/1999    2
## 2881               25/08/2000    2
## 2882               25/08/2001    2
## 2883               25/08/2002    2
## 2884               25/08/2006    2
## 2885               25/09/1999    2
## 2886               25/09/2000    2
## 2887               25/09/2006    2
## 2888               25/09/2009    2
## 2889               25/09/2012    2
## 2890               25/10/2002    2
## 2891               25/10/2010    2
## 2892               25/11/2004    2
## 2893               26/01/1998    2
## 2894               26/01/2004    2
## 2895               26/01/2005    2
## 2896               26/01/2013    2
## 2897               26/02/2001    2
## 2898               26/02/2005    2
## 2899               26/02/2008    2
## 2900               26/02/2012    2
## 2901               26/03/2003    2
## 2902               26/03/2006    2
## 2903               26/03/2014    2
## 2904               26/04/2000    2
## 2905               26/04/2005    2
## 2906               26/04/2006    2
## 2907               26/04/2007    2
## 2908               26/04/2012    2
## 2909               26/05/2004    2
## 2910               26/06/1998    2
## 2911               26/06/2002    2
## 2912               26/06/2003    2
## 2913               26/06/2004    2
## 2914               26/07/1996    2
## 2915               26/07/1999    2
## 2916               26/07/2000    2
## 2917               26/07/2006    2
## 2918               26/07/2007    2
## 2919               26/07/2010    2
## 2920               26/07/2011    2
## 2921               26/07/2013    2
## 2922               26/08/1997    2
## 2923               26/08/1998    2
## 2924               26/08/2004    2
## 2925               26/09/2000    2
## 2926               26/09/2005    2
## 2927               26/09/2012    2
## 2928               26/10/2004    2
## 2929               26/10/2006    2
## 2930               26/10/2013    2
## 2931               26/11/2001    2
## 2932               26/11/2003    2
## 2933               26/11/2005    2
## 2934               26/12/2000    2
## 2935               26/12/2006    2
## 2936               26/12/2012    2
## 2937               26/12/2013    2
## 2938               27/01/2006    2
## 2939               27/01/2009    2
## 2940               27/02/2001    2
## 2941               27/02/2003    2
## 2942               27/02/2006    2
## 2943               27/02/2008    2
## 2944               27/03/2006    2
## 2945               27/03/2007    2
## 2946               27/03/2009    2
## 2947               27/03/2013    2
## 2948               27/03/2014    2
## 2949               27/04/2000    2
## 2950               27/04/2001    2
## 2951               27/04/2004    2
## 2952               27/04/2005    2
## 2953               27/04/2007    2
## 2954               27/04/2012    2
## 2955               27/05/1996    2
## 2956               27/05/1997    2
## 2957               27/05/1999    2
## 2958               27/05/2001    2
## 2959               27/05/2004    2
## 2960               27/05/2008    2
## 2961               27/05/2014    2
## 2962               27/06/2006    2
## 2963               27/07/1998    2
## 2964               27/07/1999    2
## 2965               27/07/2005    2
## 2966               27/07/2006    2
## 2967               27/07/2010    2
## 2968               27/07/2011    2
## 2969               27/08/2001    2
## 2970               27/08/2002    2
## 2971               27/08/2007    2
## 2972               27/08/2010    2
## 2973               27/08/2013    2
## 2974               27/09/2002    2
## 2975               27/09/2004    2
## 2976               27/09/2011    2
## 2977               27/09/2013    2
## 2978               27/10/1998    2
## 2979               27/10/2007    2
## 2980               27/10/2011    2
## 2981               27/11/2001    2
## 2982               27/11/2002    2
## 2983               27/11/2007    2
## 2984               27/11/2011    2
## 2985               27/12/1996    2
## 2986               27/12/2013    2
## 2987               28/01/2008    2
## 2988               28/01/2010    2
## 2989               28/01/2011    2
## 2990               28/02/1999    2
## 2991               28/02/2001    2
## 2992               28/02/2004    2
## 2993               28/02/2012    2
## 2994               28/02/2014    2
## 2995               28/03/1998    2
## 2996               28/03/1999    2
## 2997               28/03/2007    2
## 2998               28/04/1996    2
## 2999               28/04/2000    2
## 3000               28/04/2003    2
## 3001               28/04/2006    2
## 3002               28/05/1997    2
## 3003               28/05/2002    2
## 3004               28/05/2012    2
## 3005               28/06/1998    2
## 3006               28/06/1999    2
## 3007               28/06/2001    2
## 3008               28/06/2002    2
## 3009               28/06/2005    2
## 3010               28/06/2007    2
## 3011               28/06/2008    2
## 3012               28/06/2013    2
## 3013               28/07/2001    2
## 3014               28/07/2009    2
## 3015               28/07/2011    2
## 3016               28/08/2003    2
## 3017               28/08/2009    2
## 3018               28/09/1996    2
## 3019               28/09/1997    2
## 3020               28/09/2000    2
## 3021               28/10/1998    2
## 3022               28/10/1999    2
## 3023               28/10/2003    2
## 3024               28/10/2004    2
## 3025               28/10/2005    2
## 3026               28/10/2008    2
## 3027               28/10/2009    2
## 3028               28/11/2001    2
## 3029               28/11/2004    2
## 3030               28/12/2001    2
## 3031               28/12/2005    2
## 3032               29/01/1996    2
## 3033               29/01/1998    2
## 3034               29/01/1999    2
## 3035               29/01/2004    2
## 3036               29/01/2006    2
## 3037               29/01/2011    2
## 3038               29/02/2000    2
## 3039               29/03/1996    2
## 3040               29/03/1999    2
## 3041               29/03/2002    2
## 3042               29/03/2006    2
## 3043               29/03/2007    2
## 3044               29/04/2001    2
## 3045               29/04/2011    2
## 3046               29/04/2013    2
## 3047               29/05/1996    2
## 3048               29/06/2000    2
## 3049               29/06/2003    2
## 3050               29/06/2010    2
## 3051               29/07/1998    2
## 3052               29/07/2005    2
## 3053               29/07/2011    2
## 3054               29/07/2013    2
## 3055               29/08/1996    2
## 3056               29/08/1997    2
## 3057               29/08/1999    2
## 3058               29/08/2006    2
## 3059               29/08/2007    2
## 3060               29/08/2012    2
## 3061               29/09/2000    2
## 3062               29/09/2009    2
## 3063               29/09/2011    2
## 3064               29/10/1999    2
## 3065               29/10/2003    2
## 3066               29/10/2004    2
## 3067               29/10/2005    2
## 3068               29/11/2007    2
## 3069               29/11/2011    2
## 3070               29/11/2012    2
## 3071               29/12/1998    2
## 3072               29/12/2005    2
## 3073               29/12/2012    2
## 3074               30/01/1999    2
## 3075               30/01/2001    2
## 3076               30/01/2003    2
## 3077               30/01/2007    2
## 3078               30/01/2009    2
## 3079               30/01/2012    2
## 3080               30/01/2013    2
## 3081               30/03/1998    2
## 3082               30/03/1999    2
## 3083               30/03/2001    2
## 3084               30/03/2013    2
## 3085               30/04/1999    2
## 3086               30/04/2005    2
## 3087               30/04/2013    2
## 3088               30/05/2007    2
## 3089               30/06/1998    2
## 3090               30/06/1999    2
## 3091               30/06/2003    2
## 3092               30/06/2005    2
## 3093               30/06/2011    2
## 3094               30/06/2012    2
## 3095               30/06/2013    2
## 3096               30/07/1996    2
## 3097               30/07/2007    2
## 3098               30/08/1996    2
## 3099               30/08/2004    2
## 3100               30/08/2006    2
## 3101               30/08/2010    2
## 3102               30/08/2013    2
## 3103               30/09/1998    2
## 3104               30/09/2004    2
## 3105               30/10/1998    2
## 3106               30/10/2002    2
## 3107               30/10/2004    2
## 3108               30/10/2005    2
## 3109               30/10/2006    2
## 3110               30/10/2007    2
## 3111               30/11/2004    2
## 3112               30/11/2007    2
## 3113               30/11/2011    2
## 3114               30/12/1997    2
## 3115               30/12/1998    2
## 3116               30/12/2004    2
## 3117               30/12/2010    2
## 3118               30/12/2012    2
## 3119               30/12/2013    2
## 3120               31/01/2000    2
## 3121               31/01/2002    2
## 3122               31/01/2013    2
## 3123               31/03/2008    2
## 3124               31/05/2000    2
## 3125               31/05/2002    2
## 3126               31/05/2005    2
## 3127               31/05/2006    2
## 3128               31/07/1997    2
## 3129               31/07/2011    2
## 3130               31/07/2012    2
## 3131               31/08/1999    2
## 3132               31/08/2000    2
## 3133               31/08/2001    2
## 3134               31/08/2003    2
## 3135               31/08/2004    2
## 3136               31/08/2007    2
## 3137               31/08/2009    2
## 3138               31/08/2013    2
## 3139               31/10/1996    2
## 3140               31/10/1997    2
## 3141               31/10/2001    2
## 3142               31/10/2005    2
## 3143               31/10/2007    2
## 3144               31/10/2011    2
## 3145               31/10/2012    2
## 3146               31/12/2004    2
## 3147               31/12/2013    2
## 3148               01/01/1993    1
## 3149               01/01/1997    1
## 3150               01/01/1998    1
## 3151               01/01/1999    1
## 3152               01/01/2001    1
## 3153               01/01/2008    1
## 3154               01/01/2010    1
## 3155               01/01/2013    1
## 3156               01/02/1995    1
## 3157               01/02/1996    1
## 3158               01/02/1997    1
## 3159               01/03/1996    1
## 3160               01/03/2001    1
## 3161               01/03/2003    1
## 3162               01/03/2011    1
## 3163               01/04/1997    1
## 3164               01/04/1998    1
## 3165               01/04/1999    1
## 3166               01/04/2003    1
## 3167               01/04/2009    1
## 3168               01/04/2011    1
## 3169               01/05/2000    1
## 3170               01/05/2003    1
## 3171               01/05/2008    1
## 3172               01/05/2010    1
## 3173               01/05/2014    1
## 3174               01/06/1993    1
## 3175               01/06/1997    1
## 3176               01/06/1998    1
## 3177               01/06/2002    1
## 3178               01/06/2006    1
## 3179               01/06/2007    1
## 3180               01/06/2008    1
## 3181               01/06/2009    1
## 3182               01/06/2013    1
## 3183               01/07/1996    1
## 3184               01/07/1998    1
## 3185               01/07/1999    1
## 3186               01/07/2001    1
## 3187               01/07/2002    1
## 3188               01/07/2003    1
## 3189               01/07/2011    1
## 3190               01/07/2012    1
## 3191               01/07/2013    1
## 3192               01/07/9988    1
## 3193               01/08/1995    1
## 3194               01/08/1998    1
## 3195               01/08/2004    1
## 3196               01/08/2005    1
## 3197               01/09/1995    1
## 3198               01/09/1997    1
## 3199               01/09/1999    1
## 3200               01/09/2000    1
## 3201               01/09/2001    1
## 3202               01/09/2006    1
## 3203               01/09/2007    1
## 3204               01/09/2009    1
## 3205               01/09/2010    1
## 3206               01/09/2012    1
## 3207               01/09/2013    1
## 3208               01/10/1995    1
## 3209               01/10/1998    1
## 3210               01/10/2000    1
## 3211               01/10/2001    1
## 3212               01/10/2011    1
## 3213               01/11/1998    1
## 3214               01/11/2000    1
## 3215               01/11/2008    1
## 3216               01/11/2010    1
## 3217               01/11/2012    1
## 3218               01/12/1998    1
## 3219               01/12/1999    1
## 3220               01/12/2001    1
## 3221               01/12/2002    1
## 3222               01/12/2005    1
## 3223               01/12/2010    1
## 3224               02/01/1991    1
## 3225               02/01/1996    1
## 3226               02/01/2001    1
## 3227               02/01/2003    1
## 3228               02/01/2004    1
## 3229               02/01/2006    1
## 3230               02/01/2007    1
## 3231               02/01/2008    1
## 3232               02/01/2010    1
## 3233               02/01/2013    1
## 3234               02/02/1996    1
## 3235               02/02/2000    1
## 3236               02/02/2007    1
## 3237               02/02/2008    1
## 3238               02/02/2011    1
## 3239               02/02/2013    1
## 3240               02/03/1997    1
## 3241               02/03/2001    1
## 3242               02/03/2003    1
## 3243               02/03/2004    1
## 3244               02/03/2010    1
## 3245               02/03/2011    1
## 3246               02/03/2013    1
## 3247               02/03/2014    1
## 3248               02/04/2000    1
## 3249               02/04/2004    1
## 3250               02/04/2007    1
## 3251               02/04/2008    1
## 3252               02/04/2013    1
## 3253               02/05/1999    1
## 3254               02/05/2005    1
## 3255               02/05/2009    1
## 3256               02/06/2004    1
## 3257               02/06/2005    1
## 3258               02/06/2011    1
## 3259               02/07/2008    1
## 3260               02/07/2010    1
## 3261               02/08/1997    1
## 3262               02/08/2006    1
## 3263               02/08/2011    1
## 3264               02/08/2012    1
## 3265               02/09/1996    1
## 3266               02/09/1997    1
## 3267               02/09/1999    1
## 3268               02/09/2001    1
## 3269               02/09/2003    1
## 3270               02/09/2004    1
## 3271               02/09/2005    1
## 3272               02/09/2012    1
## 3273               02/09/2013    1
## 3274               02/10/1996    1
## 3275               02/11/1997    1
## 3276               02/11/1999    1
## 3277               02/11/2000    1
## 3278               02/11/2002    1
## 3279               02/11/2006    1
## 3280               02/11/2008    1
## 3281               02/12/1996    1
## 3282               02/12/2001    1
## 3283               02/12/2002    1
## 3284               02/12/2003    1
## 3285               02/12/2005    1
## 3286               02/12/2008    1
## 3287               02/12/2009    1
## 3288               03/01/1996    1
## 3289               03/01/2007    1
## 3290               03/01/2009    1
## 3291               03/02/1996    1
## 3292               03/02/1998    1
## 3293               03/02/2000    1
## 3294               03/02/2001    1
## 3295               03/02/2008    1
## 3296               03/02/2011    1
## 3297               03/03/1997    1
## 3298               03/03/1998    1
## 3299               03/03/2002    1
## 3300               03/03/2007    1
## 3301               03/03/2009    1
## 3302               03/03/2010    1
## 3303               03/03/2013    1
## 3304               03/04/2007    1
## 3305               03/05/1996    1
## 3306               03/05/1997    1
## 3307               03/05/2003    1
## 3308               03/05/2010    1
## 3309               03/06/1998    1
## 3310               03/06/2002    1
## 3311               03/06/2004    1
## 3312               03/06/2005    1
## 3313               03/06/2007    1
## 3314               03/06/2012    1
## 3315               03/06/2013    1
## 3316               03/07/2008    1
## 3317               03/07/2011    1
## 3318               03/08/1997    1
## 3319               03/08/1998    1
## 3320               03/08/1999    1
## 3321               03/08/2007    1
## 3322               03/09/1999    1
## 3323               03/09/2000    1
## 3324               03/09/2004    1
## 3325               03/09/2005    1
## 3326               03/09/2011    1
## 3327               03/10/1988    1
## 3328               03/10/1999    1
## 3329               03/10/2007    1
## 3330               03/10/2009    1
## 3331               03/10/2010    1
## 3332               03/11/1999    1
## 3333               03/11/2002    1
## 3334               03/11/2006    1
## 3335               03/12/2000    1
## 3336               03/12/2003    1
## 3337               03/12/2005    1
## 3338               03/12/2007    1
## 3339               03/12/2008    1
## 3340               04/01/1998    1
## 3341               04/01/1999    1
## 3342               04/01/2000    1
## 3343               04/01/2002    1
## 3344               04/01/2003    1
## 3345               04/01/2004    1
## 3346               04/01/2009    1
## 3347               04/01/2014    1
## 3348               04/02/2009    1
## 3349               04/02/2013    1
## 3350               04/03/2000    1
## 3351               04/03/2002    1
## 3352               04/04/1999    1
## 3353               04/04/2000    1
## 3354               04/04/2004    1
## 3355               04/04/2006    1
## 3356               04/04/2008    1
## 3357               04/04/2009    1
## 3358               04/05/1996    1
## 3359               04/05/1998    1
## 3360               04/05/2006    1
## 3361               04/05/2008    1
## 3362               04/05/2010    1
## 3363               04/05/2012    1
## 3364               04/06/1998    1
## 3365               04/06/2000    1
## 3366               04/06/2001    1
## 3367               04/06/2002    1
## 3368               04/06/2004    1
## 3369               04/06/2005    1
## 3370               04/06/2008    1
## 3371               04/06/2010    1
## 3372               04/06/2011    1
## 3373               04/06/2012    1
## 3374               04/07/1997    1
## 3375               04/07/1998    1
## 3376               04/07/2002    1
## 3377               04/07/2003    1
## 3378               04/07/2004    1
## 3379               04/07/2006    1
## 3380               04/07/2008    1
## 3381               04/07/2012    1
## 3382               04/08/1995    1
## 3383               04/08/1999    1
## 3384               04/08/2000    1
## 3385               04/08/2001    1
## 3386               04/08/2008    1
## 3387               04/08/2010    1
## 3388               04/09/1997    1
## 3389               04/09/1998    1
## 3390               04/09/2000    1
## 3391               04/09/2001    1
## 3392               04/09/2002    1
## 3393               04/09/2003    1
## 3394               04/09/2009    1
## 3395               04/09/2010    1
## 3396               04/10/1994    1
## 3397               04/10/2008    1
## 3398               04/11/1991    1
## 3399               04/11/1994    1
## 3400               04/11/1997    1
## 3401               04/11/1999    1
## 3402               04/11/2003    1
## 3403               04/12/2006    1
## 3404               05/01/1996    1
## 3405               05/01/1999    1
## 3406               05/01/2000    1
## 3407               05/01/2002    1
## 3408               05/01/2009    1
## 3409               05/01/2013    1
## 3410               05/02/1996    1
## 3411               05/02/1997    1
## 3412               05/02/1999    1
## 3413               05/02/2007    1
## 3414               05/02/2010    1
## 3415               05/02/2012    1
## 3416               05/03/1996    1
## 3417               05/03/1997    1
## 3418               05/03/1999    1
## 3419               05/03/2000    1
## 3420               05/03/2005    1
## 3421               05/03/2006    1
## 3422               05/03/2011    1
## 3423               05/03/2013    1
## 3424               05/03/2014    1
## 3425               05/04/1999    1
## 3426               05/04/2001    1
## 3427               05/04/2006    1
## 3428               05/04/2008    1
## 3429               05/04/2009    1
## 3430               05/04/2014    1
## 3431               05/05/1998    1
## 3432               05/05/2002    1
## 3433               05/05/2004    1
## 3434               05/05/2010    1
## 3435               05/05/2011    1
## 3436               05/05/2013    1
## 3437               05/06/2001    1
## 3438               05/06/2005    1
## 3439               05/06/2011    1
## 3440               05/06/2013    1
## 3441               05/07/1995    1
## 3442               05/07/2000    1
## 3443               05/07/2002    1
## 3444               05/07/2003    1
## 3445               05/07/2005    1
## 3446               05/07/2007    1
## 3447               05/07/2010    1
## 3448               05/08/1994    1
## 3449               05/08/1998    1
## 3450               05/08/2000    1
## 3451               05/08/2001    1
## 3452               05/08/2003    1
## 3453               05/08/2006    1
## 3454               05/09/1997    1
## 3455               05/09/1998    1
## 3456               05/09/2000    1
## 3457               05/09/2007    1
## 3458               05/09/2009    1
## 3459               05/09/2010    1
## 3460               05/10/1997    1
## 3461               05/10/2002    1
## 3462               05/10/2005    1
## 3463               05/10/2010    1
## 3464               05/11/1994    1
## 3465               05/11/1997    1
## 3466               05/11/1998    1
## 3467               05/11/1999    1
## 3468               05/11/2000    1
## 3469               05/11/2001    1
## 3470               05/11/2010    1
## 3471               05/11/2011    1
## 3472               05/12/1996    1
## 3473               05/12/1997    1
## 3474               05/12/1999    1
## 3475               05/12/2005    1
## 3476               05/12/2007    1
## 3477               05/12/2011    1
## 3478               06/01/1997    1
## 3479               06/01/1998    1
## 3480               06/01/2001    1
## 3481               06/01/2002    1
## 3482               06/01/2003    1
## 3483               06/01/2006    1
## 3484               06/01/2011    1
## 3485               06/02/1999    1
## 3486               06/02/2001    1
## 3487               06/02/2005    1
## 3488               06/02/2006    1
## 3489               06/02/2012    1
## 3490               06/02/2014    1
## 3491               06/03/1999    1
## 3492               06/03/2002    1
## 3493               06/03/2005    1
## 3494               06/03/2006    1
## 3495               06/03/2008    1
## 3496               06/04/1998    1
## 3497               06/04/1999    1
## 3498               06/04/2003    1
## 3499               06/04/2010    1
## 3500               06/04/2012    1
## 3501               06/05/1996    1
## 3502               06/05/1997    1
## 3503               06/05/2003    1
## 3504               06/05/2005    1
## 3505               06/05/2006    1
## 3506               06/05/2010    1
## 3507               06/06/1994    1
## 3508               06/06/1999    1
## 3509               06/06/2000    1
## 3510               06/06/2003    1
## 3511               06/07/1995    1
## 3512               06/07/2005    1
## 3513               06/07/2006    1
## 3514               06/07/2008    1
## 3515               06/07/2009    1
## 3516               06/07/2011    1
## 3517               06/07/2013    1
## 3518               06/08/1993    1
## 3519               06/08/2000    1
## 3520               06/08/2001    1
## 3521               06/08/2003    1
## 3522               06/08/2007    1
## 3523               06/08/2010    1
## 3524               06/08/2013    1
## 3525               06/09/1995    1
## 3526               06/09/2001    1
## 3527               06/09/2005    1
## 3528               06/09/2008    1
## 3529               06/09/2009    1
## 3530               06/10/1996    1
## 3531               06/10/1999    1
## 3532               06/10/2002    1
## 3533               06/10/2005    1
## 3534               06/10/2008    1
## 3535               06/11/2008    1
## 3536               06/12/1997    1
## 3537               06/12/2003    1
## 3538               06/12/2012    1
## 3539               06/12/2013    1
## 3540               07/01/2000    1
## 3541               07/01/2003    1
## 3542               07/01/2012    1
## 3543               07/02/1996    1
## 3544               07/02/2001    1
## 3545               07/02/2002    1
## 3546               07/02/2007    1
## 3547               07/02/2013    1
## 3548               07/03/1997    1
## 3549               07/03/1999    1
## 3550               07/03/2001    1
## 3551               07/03/2006    1
## 3552               07/03/2007    1
## 3553               07/03/2009    1
## 3554               07/03/2010    1
## 3555               07/04/1996    1
## 3556               07/04/1999    1
## 3557               07/04/2001    1
## 3558               07/04/2002    1
## 3559               07/04/2005    1
## 3560               07/04/2006    1
## 3561               07/04/2009    1
## 3562               07/05/1999    1
## 3563               07/05/2000    1
## 3564               07/05/2008    1
## 3565               07/05/2013    1
## 3566               07/06/1995    1
## 3567               07/06/1996    1
## 3568               07/06/2001    1
## 3569               07/06/2005    1
## 3570               07/06/2011    1
## 3571               07/06/2013    1
## 3572               07/07/2003    1
## 3573               07/07/2007    1
## 3574               07/07/2008    1
## 3575               07/07/2012    1
## 3576               07/08/1999    1
## 3577               07/08/2002    1
## 3578               07/08/2003    1
## 3579               07/08/2004    1
## 3580               07/08/2005    1
## 3581               07/08/2008    1
## 3582               07/08/2010    1
## 3583               07/08/2011    1
## 3584               07/09/2002    1
## 3585               07/09/2007    1
## 3586               07/09/2012    1
## 3587               07/10/1998    1
## 3588               07/10/1999    1
## 3589               07/10/2006    1
## 3590               07/10/2008    1
## 3591               07/10/2009    1
## 3592               07/10/2011    1
## 3593               07/11/2001    1
## 3594               07/11/2003    1
## 3595               07/11/2010    1
## 3596               07/12/2000    1
## 3597               07/12/2003    1
## 3598               07/12/2006    1
## 3599               07/12/2008    1
## 3600               07/12/2009    1
## 3601               07/12/2010    1
## 3602               07/12/2011    1
## 3603               08/01/2003    1
## 3604               08/01/2010    1
## 3605               08/01/2013    1
## 3606               08/02/1997    1
## 3607               08/02/2002    1
## 3608               08/02/2003    1
## 3609               08/02/2005    1
## 3610               08/02/2008    1
## 3611               08/02/2009    1
## 3612               08/02/2010    1
## 3613               08/03/1995    1
## 3614               08/03/1996    1
## 3615               08/03/2005    1
## 3616               08/03/2007    1
## 3617               08/03/2011    1
## 3618               08/03/2014    1
## 3619               08/04/2000    1
## 3620               08/04/2001    1
## 3621               08/04/2005    1
## 3622               08/04/2006    1
## 3623               08/04/2008    1
## 3624               08/04/2009    1
## 3625               08/04/2010    1
## 3626               08/04/2011    1
## 3627               08/04/2012    1
## 3628               08/05/1998    1
## 3629               08/05/2000    1
## 3630               08/05/2003    1
## 3631               08/05/2005    1
## 3632               08/05/2009    1
## 3633               08/06/1993    1
## 3634               08/06/1998    1
## 3635               08/06/2003    1
## 3636               08/06/2004    1
## 3637               08/06/2013    1
## 3638               08/07/1997    1
## 3639               08/07/2000    1
## 3640               08/07/2002    1
## 3641               08/07/2003    1
## 3642               08/07/2004    1
## 3643               08/07/2005    1
## 3644               08/07/2006    1
## 3645               08/07/2007    1
## 3646               08/08/1997    1
## 3647               08/08/2002    1
## 3648               08/08/2006    1
## 3649               08/08/2009    1
## 3650               08/08/2012    1
## 3651               08/09/1995    1
## 3652               08/09/2000    1
## 3653               08/09/2001    1
## 3654               08/09/2002    1
## 3655               08/09/2007    1
## 3656               08/09/2009    1
## 3657               08/09/2010    1
## 3658               08/10/2000    1
## 3659               08/10/2003    1
## 3660               08/10/2008    1
## 3661               08/10/2011    1
## 3662               08/11/1999    1
## 3663               08/11/2003    1
## 3664               08/11/2004    1
## 3665               08/11/2009    1
## 3666               08/12/1995    1
## 3667               08/12/1996    1
## 3668               08/12/1997    1
## 3669               08/12/1998    1
## 3670               08/12/2002    1
## 3671               08/12/2009    1
## 3672               08/12/2010    1
## 3673               08/12/2012    1
## 3674               08/12/2013    1
## 3675               09/01/2000    1
## 3676               09/01/2001    1
## 3677               09/01/2004    1
## 3678               09/01/2006    1
## 3679               09/01/2007    1
## 3680               09/01/2010    1
## 3681               09/01/2011    1
## 3682               09/01/2013    1
## 3683               09/02/1996    1
## 3684               09/02/2000    1
## 3685               09/02/2005    1
## 3686               09/02/2007    1
## 3687               09/02/2009    1
## 3688               09/02/2013    1
## 3689               09/02/2014    1
## 3690               09/03/1998    1
## 3691               09/03/1999    1
## 3692               09/03/2007    1
## 3693               09/04/1998    1
## 3694               09/04/2004    1
## 3695               09/04/2005    1
## 3696               09/04/2006    1
## 3697               09/04/2011    1
## 3698               09/04/2013    1
## 3699               09/05/1998    1
## 3700               09/05/2002    1
## 3701               09/05/2004    1
## 3702               09/05/2009    1
## 3703               09/05/2010    1
## 3704               09/06/2004    1
## 3705               09/06/2007    1
## 3706               09/06/2008    1
## 3707               09/06/2010    1
## 3708               09/06/2012    1
## 3709               09/06/2013    1
## 3710               09/07/1996    1
## 3711               09/07/2003    1
## 3712               09/07/2004    1
## 3713               09/07/2005    1
## 3714               09/07/2006    1
## 3715               09/07/2008    1
## 3716               09/07/2009    1
## 3717               09/07/2010    1
## 3718               09/07/2012    1
## 3719               09/08/1997    1
## 3720               09/08/1999    1
## 3721               09/08/2009    1
## 3722               09/08/2011    1
## 3723               09/08/2012    1
## 3724               09/09/1998    1
## 3725               09/09/2012    1
## 3726               09/10/1996    1
## 3727               09/10/1999    1
## 3728               09/10/2006    1
## 3729               09/11/1997    1
## 3730               09/11/2000    1
## 3731               09/11/2001    1
## 3732               09/11/2004    1
## 3733               09/11/2005    1
## 3734               09/11/2007    1
## 3735               09/11/2008    1
## 3736               09/11/2009    1
## 3737               09/11/2012    1
## 3738               09/12/1998    1
## 3739               09/12/1999    1
## 3740               09/12/2003    1
## 3741               09/12/2006    1
## 3742               09/12/2008    1
## 3743               09/12/2011    1
## 3744               10/01/1998    1
## 3745               10/01/2002    1
## 3746               10/01/2005    1
## 3747               10/01/2009    1
## 3748               10/01/2011    1
## 3749               10/01/2013    1
## 3750               10/02/1994    1
## 3751               10/02/2011    1
## 3752               10/03/1998    1
## 3753               10/03/1999    1
## 3754               10/04/1998    1
## 3755               10/04/1999    1
## 3756               10/04/2000    1
## 3757               10/04/2003    1
## 3758               10/04/2004    1
## 3759               10/04/2005    1
## 3760               10/04/2007    1
## 3761               10/04/2013    1
## 3762               10/05/1997    1
## 3763               10/05/1998    1
## 3764               10/05/1999    1
## 3765               10/05/2001    1
## 3766               10/05/2006    1
## 3767               10/05/2014    1
## 3768               10/06/2001    1
## 3769               10/06/2003    1
## 3770               10/06/2007    1
## 3771               10/06/2009    1
## 3772               10/06/2011    1
## 3773               10/07/1999    1
## 3774               10/07/2004    1
## 3775               10/07/2005    1
## 3776               10/07/2010    1
## 3777               10/07/2011    1
## 3778               10/08/2001    1
## 3779               10/08/2002    1
## 3780               10/08/2009    1
## 3781               10/08/2010    1
## 3782               10/08/2011    1
## 3783               10/08/2013    1
## 3784               10/09/1993    1
## 3785               10/09/1999    1
## 3786               10/09/2000    1
## 3787               10/09/2008    1
## 3788               10/09/2010    1
## 3789               10/10/1995    1
## 3790               10/10/1998    1
## 3791               10/10/2004    1
## 3792               10/10/2006    1
## 3793               10/10/2008    1
## 3794               10/10/2009    1
## 3795               10/10/2012    1
## 3796               10/11/1995    1
## 3797               10/11/1998    1
## 3798               10/11/2001    1
## 3799               10/11/2008    1
## 3800               10/11/2010    1
## 3801               10/11/2011    1
## 3802               10/11/2012    1
## 3803               10/11/2013    1
## 3804               10/12/1995    1
## 3805               10/12/1997    1
## 3806               10/12/2007    1
## 3807               11/01/1996    1
## 3808               11/01/2002    1
## 3809               11/01/2006    1
## 3810               11/01/2008    1
## 3811               11/01/2010    1
## 3812               11/01/2012    1
## 3813               11/02/1999    1
## 3814               11/02/2001    1
## 3815               11/02/2002    1
## 3816               11/02/2009    1
## 3817               11/02/2014    1
## 3818               11/03/1991    1
## 3819               11/03/1992    1
## 3820               11/03/1996    1
## 3821               11/03/1997    1
## 3822               11/03/1998    1
## 3823               11/03/2000    1
## 3824               11/03/2001    1
## 3825               11/03/2002    1
## 3826               11/03/2003    1
## 3827               11/03/2005    1
## 3828               11/03/2007    1
## 3829               11/03/2008    1
## 3830               11/03/2010    1
## 3831               11/04/1999    1
## 3832               11/04/2003    1
## 3833               11/04/2004    1
## 3834               11/05/1996    1
## 3835               11/05/2001    1
## 3836               11/05/2003    1
## 3837               11/05/2008    1
## 3838               11/05/2009    1
## 3839               11/06/2000    1
## 3840               11/06/2005    1
## 3841               11/06/2006    1
## 3842               11/06/2007    1
## 3843               11/06/2009    1
## 3844               11/06/2011    1
## 3845               11/07/2011    1
## 3846               11/08/1998    1
## 3847               11/08/1999    1
## 3848               11/08/2001    1
## 3849               11/08/2002    1
## 3850               11/08/2011    1
## 3851               11/08/2012    1
## 3852               11/09/2001    1
## 3853               11/09/2002    1
## 3854               11/09/2006    1
## 3855               11/10/2001    1
## 3856               11/10/2005    1
## 3857               11/10/2007    1
## 3858               11/10/2008    1
## 3859               11/10/2010    1
## 3860               11/11/1996    1
## 3861               11/11/2004    1
## 3862               11/11/2008    1
## 3863               11/11/2011    1
## 3864               11/11/2012    1
## 3865               11/12/1998    1
## 3866               11/12/2002    1
## 3867               11/12/2003    1
## 3868               11/12/2005    1
## 3869               11/12/2006    1
## 3870               11/12/2009    1
## 3871               12/01/1979    1
## 3872               12/01/2007    1
## 3873               12/01/2008    1
## 3874               12/01/2014    1
## 3875               12/02/1996    1
## 3876               12/02/1998    1
## 3877               12/02/2000    1
## 3878               12/02/2006    1
## 3879               12/02/2007    1
## 3880               12/02/2008    1
## 3881               12/02/2010    1
## 3882               12/02/2011    1
## 3883               12/03/1996    1
## 3884               12/03/1998    1
## 3885               12/03/2001    1
## 3886               12/03/2008    1
## 3887               12/04/1997    1
## 3888               12/04/2004    1
## 3889               12/04/2005    1
## 3890               12/04/2008    1
## 3891               12/05/1999    1
## 3892               12/05/2001    1
## 3893               12/05/2011    1
## 3894               12/05/2013    1
## 3895               12/06/1996    1
## 3896               12/07/1996    1
## 3897               12/07/1998    1
## 3898               12/07/2011    1
## 3899               12/08/2006    1
## 3900               12/08/2011    1
## 3901               12/09/1998    1
## 3902               12/09/2002    1
## 3903               12/09/2003    1
## 3904               12/09/2004    1
## 3905               12/09/2006    1
## 3906               12/09/2007    1
## 3907               12/09/2008    1
## 3908               12/10/1997    1
## 3909               12/10/1998    1
## 3910               12/10/2000    1
## 3911               12/10/2001    1
## 3912               12/10/2004    1
## 3913               12/10/2006    1
## 3914               12/10/2008    1
## 3915               12/10/2009    1
## 3916               12/10/2012    1
## 3917               12/11/1999    1
## 3918               12/11/2006    1
## 3919               12/11/2007    1
## 3920               12/11/2010    1
## 3921               12/11/2011    1
## 3922               12/12/1996    1
## 3923               12/12/1997    1
## 3924               12/12/2003    1
## 3925               12/12/2006    1
## 3926               13/01/2001    1
## 3927               13/01/2004    1
## 3928               13/01/2005    1
## 3929               13/01/2008    1
## 3930               13/01/2013    1
## 3931               13/01/2014    1
## 3932               13/02/1996    1
## 3933               13/02/1998    1
## 3934               13/02/1999    1
## 3935               13/02/2000    1
## 3936               13/02/2007    1
## 3937               13/02/2011    1
## 3938               13/03/2001    1
## 3939               13/03/2005    1
## 3940               13/03/2007    1
## 3941               13/03/2008    1
## 3942               13/03/2010    1
## 3943               13/03/2012    1
## 3944               13/04/1998    1
## 3945               13/04/2003    1
## 3946               13/04/2008    1
## 3947               13/04/2009    1
## 3948               13/04/2011    1
## 3949               13/04/2013    1
## 3950               13/04/2014    1
## 3951               13/05/2002    1
## 3952               13/05/2003    1
## 3953               13/05/2006    1
## 3954               13/05/2012    1
## 3955               13/06/1994    1
## 3956               13/06/1997    1
## 3957               13/06/1999    1
## 3958               13/06/2009    1
## 3959               13/06/2012    1
## 3960               13/06/2013    1
## 3961               13/07/1997    1
## 3962               13/07/1999    1
## 3963               13/07/2001    1
## 3964               13/07/2002    1
## 3965               13/07/2003    1
## 3966               13/07/2013    1
## 3967               13/07/2201    1
## 3968               13/08/1998    1
## 3969               13/08/2004    1
## 3970               13/08/2006    1
## 3971               13/08/2007    1
## 3972               13/08/2010    1
## 3973               13/08/2013    1
## 3974               13/09/2000    1
## 3975               13/09/2005    1
## 3976               13/09/2006    1
## 3977               13/09/2010    1
## 3978               13/10/1996    1
## 3979               13/10/1998    1
## 3980               13/10/1999    1
## 3981               13/10/2000    1
## 3982               13/10/2005    1
## 3983               13/10/2010    1
## 3984               13/11/2002    1
## 3985               13/11/2008    1
## 3986               13/11/2011    1
## 3987               13/12/1995    1
## 3988               13/12/1999    1
## 3989               13/12/2003    1
## 3990               13/12/2004    1
## 3991               13/12/2013    1
## 3992               14/01/1999    1
## 3993               14/01/2006    1
## 3994               14/01/2008    1
## 3995               14/01/2009    1
## 3996               14/01/2013    1
## 3997               14/02/1999    1
## 3998               14/02/2000    1
## 3999               14/02/2006    1
## 4000               14/02/2010    1
## 4001               14/03/1998    1
## 4002               14/03/2007    1
## 4003               14/03/2010    1
## 4004               14/04/1995    1
## 4005               14/04/2000    1
## 4006               14/04/2002    1
## 4007               14/04/2004    1
## 4008               14/04/2006    1
## 4009               14/04/2008    1
## 4010               14/04/2010    1
## 4011               14/04/2012    1
## 4012               14/04/2013    1
## 4013               14/05/1999    1
## 4014               14/05/2000    1
## 4015               14/05/2006    1
## 4016               14/05/2009    1
## 4017               14/06/1989    1
## 4018               14/06/1995    1
## 4019               14/06/1998    1
## 4020               14/06/1999    1
## 4021               14/06/2000    1
## 4022               14/06/2002    1
## 4023               14/06/2005    1
## 4024               14/06/2009    1
## 4025               14/06/2014    1
## 4026               14/07/1997    1
## 4027               14/07/2000    1
## 4028               14/07/2002    1
## 4029               14/07/2006    1
## 4030               14/07/2008    1
## 4031               14/07/2009    1
## 4032               14/07/2010    1
## 4033               14/07/2011    1
## 4034               14/07/2012    1
## 4035               14/08/1996    1
## 4036               14/08/2007    1
## 4037               14/08/2009    1
## 4038               14/09/1997    1
## 4039               14/09/2010    1
## 4040               14/10/2004    1
## 4041               14/10/2005    1
## 4042               14/10/2009    1
## 4043               14/10/2010    1
## 4044               14/11/1995    1
## 4045               14/11/1996    1
## 4046               14/11/1998    1
## 4047               14/11/2000    1
## 4048               14/11/2005    1
## 4049               14/11/2009    1
## 4050               14/11/2010    1
## 4051               14/11/2011    1
## 4052               14/11/2013    1
## 4053               14/12/1996    1
## 4054               14/12/1999    1
## 4055               14/12/2000    1
## 4056               14/12/2006    1
## 4057               14/12/2007    1
## 4058               14/12/2008    1
## 4059               14/12/2009    1
## 4060               14/12/2013    1
## 4061               15/01/1993    1
## 4062               15/01/1999    1
## 4063               15/01/2005    1
## 4064               15/01/2006    1
## 4065               15/01/2007    1
## 4066               15/02/1998    1
## 4067               15/02/2005    1
## 4068               15/02/2007    1
## 4069               15/02/2012    1
## 4070               15/02/2014    1
## 4071               15/03/1997    1
## 4072               15/03/2003    1
## 4073               15/03/2008    1
## 4074               15/04/1999    1
## 4075               15/04/2000    1
## 4076               15/04/2009    1
## 4077               15/04/2012    1
## 4078               15/05/2004    1
## 4079               15/05/2007    1
## 4080               15/05/2008    1
## 4081               15/05/2012    1
## 4082               15/06/1995    1
## 4083               15/06/1998    1
## 4084               15/06/2000    1
## 4085               15/06/2002    1
## 4086               15/06/2003    1
## 4087               15/06/2005    1
## 4088               15/06/2009    1
## 4089               15/07/1996    1
## 4090               15/07/1998    1
## 4091               15/07/1999    1
## 4092               15/07/2001    1
## 4093               15/07/2002    1
## 4094               15/07/2003    1
## 4095               15/07/2006    1
## 4096               15/08/1995    1
## 4097               15/08/1999    1
## 4098               15/08/2010    1
## 4099               15/09/1998    1
## 4100               15/09/2001    1
## 4101               15/09/2002    1
## 4102               15/09/2003    1
## 4103               15/09/2008    1
## 4104               15/09/2013    1
## 4105               15/10/1999    1
## 4106               15/10/2003    1
## 4107               15/10/2006    1
## 4108               15/10/2007    1
## 4109               15/10/2010    1
## 4110               15/11/1996    1
## 4111               15/11/1997    1
## 4112               15/11/1998    1
## 4113               15/11/1999    1
## 4114               15/11/2001    1
## 4115               15/11/2005    1
## 4116               15/11/2010    1
## 4117               15/12/1997    1
## 4118               15/12/1998    1
## 4119               15/12/2005    1
## 4120               15/12/2010    1
## 4121               16/01/1999    1
## 4122               16/01/2000    1
## 4123               16/01/2003    1
## 4124               16/01/2004    1
## 4125               16/01/2006    1
## 4126               16/01/2007    1
## 4127               16/01/2010    1
## 4128               16/01/2011    1
## 4129               16/01/2012    1
## 4130               16/01/2013    1
## 4131               16/02/1996    1
## 4132               16/02/1997    1
## 4133               16/02/1998    1
## 4134               16/02/2003    1
## 4135               16/02/2011    1
## 4136               16/03/1998    1
## 4137               16/03/2005    1
## 4138               16/03/2008    1
## 4139               16/03/2014    1
## 4140               16/04/1999    1
## 4141               16/04/2006    1
## 4142               16/04/2009    1
## 4143               16/04/2011    1
## 4144               16/05/1995    1
## 4145               16/05/2001    1
## 4146               16/05/2002    1
## 4147               16/05/2005    1
## 4148               16/05/2010    1
## 4149               16/06/1996    1
## 4150               16/06/2002    1
## 4151               16/06/2005    1
## 4152               16/06/2006    1
## 4153               16/07/2005    1
## 4154               16/07/2006    1
## 4155               16/07/2009    1
## 4156               16/07/2010    1
## 4157               16/07/2011    1
## 4158               16/07/2012    1
## 4159               16/08/1996    1
## 4160               16/08/1997    1
## 4161               16/08/2002    1
## 4162               16/09/2008    1
## 4163               16/09/2009    1
## 4164               16/10/1995    1
## 4165               16/10/1997    1
## 4166               16/10/1999    1
## 4167               16/10/2002    1
## 4168               16/10/2003    1
## 4169               16/10/2010    1
## 4170               16/11/1998    1
## 4171               16/11/1999    1
## 4172               16/11/2000    1
## 4173               16/11/2001    1
## 4174               16/11/2002    1
## 4175               16/11/2003    1
## 4176               16/11/2010    1
## 4177               16/12/1998    1
## 4178               16/12/1999    1
## 4179               16/12/2002    1
## 4180               16/12/2006    1
## 4181               16/12/2009    1
## 4182               17/01/1996    1
## 4183               17/01/1999    1
## 4184               17/01/2004    1
## 4185               17/01/2007    1
## 4186               17/01/2011    1
## 4187               17/01/2012    1
## 4188               17/02/2001    1
## 4189               17/02/2004    1
## 4190               17/02/2010    1
## 4191               17/03/1997    1
## 4192               17/03/2006    1
## 4193               17/03/2007    1
## 4194               17/03/2012    1
## 4195               17/04/1999    1
## 4196               17/04/2001    1
## 4197               17/04/2003    1
## 4198               17/04/2007    1
## 4199               17/04/2009    1
## 4200               17/05/1995    1
## 4201               17/05/1997    1
## 4202               17/05/1998    1
## 4203               17/05/2003    1
## 4204               17/05/2006    1
## 4205               17/05/2011    1
## 4206               17/06/2001    1
## 4207               17/06/2002    1
## 4208               17/06/2007    1
## 4209               17/06/2011    1
## 4210               17/06/2013    1
## 4211               17/07/1995    1
## 4212               17/07/1997    1
## 4213               17/07/2004    1
## 4214               17/07/2006    1
## 4215               17/08/1999    1
## 4216               17/08/2010    1
## 4217               17/08/2011    1
## 4218               17/09/2003    1
## 4219               17/09/2006    1
## 4220               17/10/1999    1
## 4221               17/10/2005    1
## 4222               17/10/2007    1
## 4223               17/10/2008    1
## 4224               17/10/2009    1
## 4225               17/10/2010    1
## 4226               17/11/1996    1
## 4227               17/11/1997    1
## 4228               17/11/1998    1
## 4229               17/11/1999    1
## 4230               17/11/2000    1
## 4231               17/11/2002    1
## 4232               17/11/2003    1
## 4233               17/11/2004    1
## 4234               17/11/2006    1
## 4235               17/11/2007    1
## 4236               17/11/2013    1
## 4237               17/12/1998    1
## 4238               17/12/1999    1
## 4239               17/12/2004    1
## 4240               17/12/2007    1
## 4241               17/12/2008    1
## 4242               17/12/2010    1
## 4243               18/01/2000    1
## 4244               18/01/2002    1
## 4245               18/01/2003    1
## 4246               18/01/2006    1
## 4247               18/01/2008    1
## 4248               18/01/2014    1
## 4249               18/02/1987    1
## 4250               18/02/1999    1
## 4251               18/02/2002    1
## 4252               18/02/2003    1
## 4253               18/02/2006    1
## 4254               18/02/2009    1
## 4255               18/02/2012    1
## 4256               18/03/2003    1
## 4257               18/03/2006    1
## 4258               18/03/2008    1
## 4259               18/04/1999    1
## 4260               18/04/2002    1
## 4261               18/04/2003    1
## 4262               18/04/2004    1
## 4263               18/04/2005    1
## 4264               18/04/2006    1
## 4265               18/04/2010    1
## 4266               18/05/1995    1
## 4267               18/05/1998    1
## 4268               18/05/1999    1
## 4269               18/05/2001    1
## 4270               18/05/2003    1
## 4271               18/05/2004    1
## 4272               18/05/2008    1
## 4273               18/05/2010    1
## 4274               18/05/2011    1
## 4275               18/06/1997    1
## 4276               18/06/1998    1
## 4277               18/06/2000    1
## 4278               18/06/2006    1
## 4279               18/06/2008    1
## 4280               18/07/1999    1
## 4281               18/07/2002    1
## 4282               18/07/2009    1
## 4283               18/07/2011    1
## 4284               18/08/2001    1
## 4285               18/08/2005    1
## 4286               18/08/2009    1
## 4287               18/09/1998    1
## 4288               18/09/2001    1
## 4289               18/09/2002    1
## 4290               18/09/2004    1
## 4291               18/09/2006    1
## 4292               18/10/1988    1
## 4293               18/10/1994    1
## 4294               18/10/1995    1
## 4295               18/10/2002    1
## 4296               18/10/2003    1
## 4297               18/10/2006    1
## 4298               18/10/2008    1
## 4299               18/10/2011    1
## 4300               18/11/1999    1
## 4301               18/11/2004    1
## 4302               18/11/2011    1
## 4303               18/11/2013    1
## 4304               18/12/1996    1
## 4305               18/12/1999    1
## 4306               18/12/2000    1
## 4307               18/12/2001    1
## 4308               18/12/2006    1
## 4309               18/12/2008    1
## 4310               18/12/2009    1
## 4311               18/12/2010    1
## 4312               18/12/2011    1
## 4313               19/01/2000    1
## 4314               19/01/2001    1
## 4315               19/01/2002    1
## 4316               19/01/2008    1
## 4317               19/01/2014    1
## 4318               19/02/1996    1
## 4319               19/02/1998    1
## 4320               19/02/1999    1
## 4321               19/02/2005    1
## 4322               19/02/2006    1
## 4323               19/02/2009    1
## 4324               19/02/2010    1
## 4325               19/02/2011    1
## 4326               19/03/1998    1
## 4327               19/03/2006    1
## 4328               19/03/2011    1
## 4329               19/04/1997    1
## 4330               19/04/1998    1
## 4331               19/04/2000    1
## 4332               19/04/2002    1
## 4333               19/04/2009    1
## 4334               19/04/2010    1
## 4335               19/04/2013    1
## 4336               19/05/1996    1
## 4337               19/05/2002    1
## 4338               19/05/2003    1
## 4339               19/05/2009    1
## 4340               19/05/2010    1
## 4341               19/05/2012    1
## 4342               19/05/2013    1
## 4343               19/06/1999    1
## 4344               19/06/2004    1
## 4345               19/06/2011    1
## 4346               19/07/1998    1
## 4347               19/07/2001    1
## 4348               19/07/2012    1
## 4349               19/08/2000    1
## 4350               19/08/2005    1
## 4351               19/09/1993    1
## 4352               19/09/1999    1
## 4353               19/09/2003    1
## 4354               19/09/2009    1
## 4355               19/09/2010    1
## 4356               19/09/2011    1
## 4357               19/09/2013    1
## 4358               19/10/2002    1
## 4359               19/10/2006    1
## 4360               19/11/1998    1
## 4361               19/11/2000    1
## 4362               19/11/2006    1
## 4363               19/11/2007    1
## 4364               19/11/2009    1
## 4365               19/11/2013    1
## 4366               19/12/1996    1
## 4367               19/12/1997    1
## 4368               19/12/1998    1
## 4369               19/12/1999    1
## 4370               19/12/2005    1
## 4371               19/12/2007    1
## 4372               19/12/2008    1
## 4373               19/12/2009    1
## 4374               19/12/2010    1
## 4375               19/12/2012    1
## 4376               20/01/1996    1
## 4377               20/01/1998    1
## 4378               20/01/2000    1
## 4379               20/01/2001    1
## 4380               20/01/2006    1
## 4381               20/01/2010    1
## 4382               20/01/2013    1
## 4383               20/01/2014    1
## 4384               20/02/1995    1
## 4385               20/02/2009    1
## 4386               20/03/1997    1
## 4387               20/03/2001    1
## 4388               20/03/2003    1
## 4389               20/03/2007    1
## 4390               20/03/2010    1
## 4391               20/04/1995    1
## 4392               20/04/1998    1
## 4393               20/04/2008    1
## 4394               20/04/2010    1
## 4395               20/04/2011    1
## 4396               20/04/2012    1
## 4397               20/05/1999    1
## 4398               20/05/2003    1
## 4399               20/06/1997    1
## 4400               20/06/1998    1
## 4401               20/06/2003    1
## 4402               20/06/2006    1
## 4403               20/06/2008    1
## 4404               20/07/1996    1
## 4405               20/07/2006    1
## 4406               20/07/2007    1
## 4407               20/07/2009    1
## 4408               20/08/1995    1
## 4409               20/08/2005    1
## 4410               20/08/2006    1
## 4411               20/09/1999    1
## 4412               20/09/2001    1
## 4413               20/09/2003    1
## 4414               20/09/2004    1
## 4415               20/09/2007    1
## 4416               20/09/2008    1
## 4417               20/09/2012    1
## 4418               20/10/1996    1
## 4419               20/10/1998    1
## 4420               20/10/2002    1
## 4421               20/10/2006    1
## 4422               20/10/2007    1
## 4423               20/10/2009    1
## 4424               20/10/2012    1
## 4425               20/11/1996    1
## 4426               20/11/1997    1
## 4427               20/11/2006    1
## 4428               20/11/2010    1
## 4429               20/11/2012    1
## 4430               20/12/1996    1
## 4431               20/12/2002    1
## 4432               20/12/2004    1
## 4433               20/12/2006    1
## 4434               21/01/1996    1
## 4435               21/01/1998    1
## 4436               21/01/2000    1
## 4437               21/01/2001    1
## 4438               21/01/2002    1
## 4439               21/01/2003    1
## 4440               21/01/2004    1
## 4441               21/01/2008    1
## 4442               21/01/2014    1
## 4443               21/02/1998    1
## 4444               21/02/2005    1
## 4445               21/02/2010    1
## 4446               21/02/2012    1
## 4447               21/03/1996    1
## 4448               21/03/2005    1
## 4449               21/03/2009    1
## 4450               21/03/2011    1
## 4451               21/04/1995    1
## 4452               21/04/1999    1
## 4453               21/04/2002    1
## 4454               21/04/2004    1
## 4455               21/04/2006    1
## 4456               21/05/1995    1
## 4457               21/05/2001    1
## 4458               21/05/2002    1
## 4459               21/05/2003    1
## 4460               21/05/2011    1
## 4461               21/06/1995    1
## 4462               21/06/1997    1
## 4463               21/06/2003    1
## 4464               21/06/2008    1
## 4465               21/07/1997    1
## 4466               21/07/2001    1
## 4467               21/07/2006    1
## 4468               21/08/2009    1
## 4469               21/09/1998    1
## 4470               21/09/2000    1
## 4471               21/09/2004    1
## 4472               21/09/2007    1
## 4473               21/09/2010    1
## 4474               21/10/1998    1
## 4475               21/10/1999    1
## 4476               21/10/2000    1
## 4477               21/10/2001    1
## 4478               21/10/2002    1
## 4479               21/10/2006    1
## 4480               21/10/2007    1
## 4481               21/10/2011    1
## 4482               21/10/2012    1
## 4483               21/11/1997    1
## 4484               21/11/1998    1
## 4485               21/11/2001    1
## 4486               21/11/2002    1
## 4487               21/11/2007    1
## 4488               21/11/2008    1
## 4489               21/11/2010    1
## 4490               21/12/1996    1
## 4491               21/12/2001    1
## 4492               21/12/2007    1
## 4493               21/12/2011    1
## 4494               22/01/2000    1
## 4495               22/01/2004    1
## 4496               22/01/2005    1
## 4497               22/02/1995    1
## 4498               22/02/1997    1
## 4499               22/02/2009    1
## 4500               22/02/2011    1
## 4501               22/02/2013    1
## 4502               22/02/2014    1
## 4503               22/03/1995    1
## 4504               22/03/2000    1
## 4505               22/03/2002    1
## 4506               22/03/2008    1
## 4507               22/03/2011    1
## 4508               22/04/1997    1
## 4509               22/04/2000    1
## 4510               22/04/2004    1
## 4511               22/04/2008    1
## 4512               22/05/1996    1
## 4513               22/05/1998    1
## 4514               22/05/2004    1
## 4515               22/05/2009    1
## 4516               22/06/1992    1
## 4517               22/06/1993    1
## 4518               22/06/1997    1
## 4519               22/06/1998    1
## 4520               22/06/2000    1
## 4521               22/06/2003    1
## 4522               22/06/2010    1
## 4523               22/06/2011    1
## 4524               22/07/2001    1
## 4525               22/07/2008    1
## 4526               22/08/1993    1
## 4527               22/08/1995    1
## 4528               22/08/2003    1
## 4529               22/08/2005    1
## 4530               22/09/1989    1
## 4531               22/09/1997    1
## 4532               22/09/2000    1
## 4533               22/09/2007    1
## 4534               22/09/2011    1
## 4535               22/09/2012    1
## 4536               22/10/1997    1
## 4537               22/10/2002    1
## 4538               22/10/2003    1
## 4539               22/10/2006    1
## 4540               22/10/2009    1
## 4541               22/10/2010    1
## 4542               22/10/2011    1
## 4543               22/10/2012    1
## 4544               22/11/1996    1
## 4545               22/11/1998    1
## 4546               22/11/2003    1
## 4547               22/11/2012    1
## 4548               22/12/1997    1
## 4549               22/12/1999    1
## 4550               22/12/2000    1
## 4551               22/12/2006    1
## 4552               22/12/2009    1
## 4553               22/12/2013    1
## 4554               23/01/1996    1
## 4555               23/01/2009    1
## 4556               23/01/2011    1
## 4557               23/02/1996    1
## 4558               23/02/1997    1
## 4559               23/02/2006    1
## 4560               23/02/2008    1
## 4561               23/02/2010    1
## 4562               23/02/2014    1
## 4563               23/03/1995    1
## 4564               23/03/1997    1
## 4565               23/03/2001    1
## 4566               23/03/2005    1
## 4567               23/03/2007    1
## 4568               23/03/2008    1
## 4569               23/03/2009    1
## 4570               23/04/1997    1
## 4571               23/04/1999    1
## 4572               23/04/2010    1
## 4573               23/05/1995    1
## 4574               23/05/2005    1
## 4575               23/05/2008    1
## 4576               23/05/2010    1
## 4577               23/05/2011    1
## 4578               23/06/2000    1
## 4579               23/06/2001    1
## 4580               23/06/2004    1
## 4581               23/06/2009    1
## 4582               23/07/1996    1
## 4583               23/07/2002    1
## 4584               23/07/2003    1
## 4585               23/07/2008    1
## 4586               23/07/2009    1
## 4587               23/07/2010    1
## 4588               23/07/2011    1
## 4589               23/08/1995    1
## 4590               23/08/2001    1
## 4591               23/08/2003    1
## 4592               23/08/2004    1
## 4593               23/08/2006    1
## 4594               23/09/2000    1
## 4595               23/09/2003    1
## 4596               23/09/2006    1
## 4597               23/10/1993    1
## 4598               23/10/2000    1
## 4599               23/10/2001    1
## 4600               23/10/2002    1
## 4601               23/10/2008    1
## 4602               23/11/1994    1
## 4603               23/11/1998    1
## 4604               23/11/2005    1
## 4605               23/11/2008    1
## 4606               23/11/2013    1
## 4607               23/12/1996    1
## 4608               23/12/1997    1
## 4609               23/12/1999    1
## 4610               23/12/2000    1
## 4611               23/12/2002    1
## 4612               23/12/2006    1
## 4613               23/12/2009    1
## 4614               23/12/2010    1
## 4615               23/12/2013    1
## 4616               24/01/1996    1
## 4617               24/01/1999    1
## 4618               24/01/2003    1
## 4619               24/01/2009    1
## 4620               24/01/2010    1
## 4621               24/01/2011    1
## 4622               24/01/2013    1
## 4623               24/01/2014    1
## 4624               24/02/1995    1
## 4625               24/02/1999    1
## 4626               24/02/2001    1
## 4627               24/02/2003    1
## 4628               24/02/2006    1
## 4629               24/02/2008    1
## 4630               24/03/1996    1
## 4631               24/03/1999    1
## 4632               24/03/2001    1
## 4633               24/03/2002    1
## 4634               24/03/2003    1
## 4635               24/03/2005    1
## 4636               24/03/2009    1
## 4637               24/03/2012    1
## 4638               24/03/2013    1
## 4639               24/03/2014    1
## 4640               24/04/1997    1
## 4641               24/04/1998    1
## 4642               24/04/2001    1
## 4643               24/04/2003    1
## 4644               24/05/1997    1
## 4645               24/05/1998    1
## 4646               24/05/2001    1
## 4647               24/05/2002    1
## 4648               24/05/2008    1
## 4649               24/05/2011    1
## 4650               24/05/2012    1
## 4651               24/05/2014    1
## 4652               24/06/1997    1
## 4653               24/06/1998    1
## 4654               24/06/2003    1
## 4655               24/06/2005    1
## 4656               24/06/2007    1
## 4657               24/06/2014    1
## 4658               24/07/1997    1
## 4659               24/07/2005    1
## 4660               24/07/2008    1
## 4661               24/08/1997    1
## 4662               24/08/2002    1
## 4663               24/08/2003    1
## 4664               24/08/2005    1
## 4665               24/08/2013    1
## 4666               24/09/1996    1
## 4667               24/09/2000    1
## 4668               24/09/2002    1
## 4669               24/09/2003    1
## 4670               24/09/2004    1
## 4671               24/09/2007    1
## 4672               24/09/2011    1
## 4673               24/10/1996    1
## 4674               24/10/1997    1
## 4675               24/10/1998    1
## 4676               24/10/1999    1
## 4677               24/10/2004    1
## 4678               24/10/2008    1
## 4679               24/10/2009    1
## 4680               24/10/2011    1
## 4681               24/11/1996    1
## 4682               24/11/1998    1
## 4683               24/11/1999    1
## 4684               24/11/2002    1
## 4685               24/11/2004    1
## 4686               24/11/2008    1
## 4687               24/12/1996    1
## 4688               24/12/2003    1
## 4689               25/01/1997    1
## 4690               25/01/2000    1
## 4691               25/01/2002    1
## 4692               25/01/2003    1
## 4693               25/01/2010    1
## 4694               25/01/2011    1
## 4695               25/02/1993    1
## 4696               25/02/1996    1
## 4697               25/02/1998    1
## 4698               25/02/2000    1
## 4699               25/02/2005    1
## 4700               25/02/2006    1
## 4701               25/02/2008    1
## 4702               25/02/2009    1
## 4703               25/02/2010    1
## 4704               25/03/1996    1
## 4705               25/03/2001    1
## 4706               25/03/2004    1
## 4707               25/03/2005    1
## 4708               25/03/2007    1
## 4709               25/03/2010    1
## 4710               25/04/1995    1
## 4711               25/04/2002    1
## 4712               25/04/2007    1
## 4713               25/05/1997    1
## 4714               25/05/1998    1
## 4715               25/05/1999    1
## 4716               25/05/2003    1
## 4717               25/05/2007    1
## 4718               25/05/2009    1
## 4719               25/06/2000    1
## 4720               25/06/2010    1
## 4721               25/07/1997    1
## 4722               25/07/2001    1
## 4723               25/07/2004    1
## 4724               25/07/2008    1
## 4725               25/07/2010    1
## 4726               25/07/2012    1
## 4727               25/08/1995    1
## 4728               25/08/1996    1
## 4729               25/08/1998    1
## 4730               25/08/2005    1
## 4731               25/08/2009    1
## 4732               25/08/2010    1
## 4733               25/08/2011    1
## 4734               25/08/2012    1
## 4735               25/08/2013    1
## 4736               25/09/1997    1
## 4737               25/09/2004    1
## 4738               25/09/2007    1
## 4739               25/09/2011    1
## 4740               25/10/1995    1
## 4741               25/10/1999    1
## 4742               25/10/2001    1
## 4743               25/10/2003    1
## 4744               25/10/2006    1
## 4745               25/10/2008    1
## 4746               25/10/2009    1
## 4747               25/10/2012    1
## 4748               25/11/2000    1
## 4749               25/11/2009    1
## 4750               25/11/2012    1
## 4751               25/11/2013    1
## 4752               25/12/1996    1
## 4753               25/12/1997    1
## 4754               25/12/1999    1
## 4755               25/12/2004    1
## 4756               25/12/2006    1
## 4757               25/12/2007    1
## 4758               25/12/2008    1
## 4759               25/12/2011    1
## 4760               26/01/1996    1
## 4761               26/01/1999    1
## 4762               26/01/2001    1
## 4763               26/01/2003    1
## 4764               26/01/2007    1
## 4765               26/01/2010    1
## 4766               26/01/2012    1
## 4767               26/02/1997    1
## 4768               26/03/1996    1
## 4769               26/03/1999    1
## 4770               26/03/2000    1
## 4771               26/03/2001    1
## 4772               26/03/2009    1
## 4773               26/03/2010    1
## 4774               26/04/1997    1
## 4775               26/04/1999    1
## 4776               26/04/2001    1
## 4777               26/04/2009    1
## 4778               26/04/2011    1
## 4779               26/04/2013    1
## 4780               26/04/2014    1
## 4781               26/05/1996    1
## 4782               26/05/2000    1
## 4783               26/05/2001    1
## 4784               26/05/2006    1
## 4785               26/05/2008    1
## 4786               26/05/2009    1
## 4787               26/05/2014    1
## 4788               26/06/1999    1
## 4789               26/06/2000    1
## 4790               26/06/2001    1
## 4791               26/06/2006    1
## 4792               26/06/2007    1
## 4793               26/06/2009    1
## 4794               26/06/2010    1
## 4795               26/06/2011    1
## 4796               26/07/1997    1
## 4797               26/07/2001    1
## 4798               26/07/2003    1
## 4799               26/07/2005    1
## 4800               26/08/1993    1
## 4801               26/08/2000    1
## 4802               26/08/2001    1
## 4803               26/08/2003    1
## 4804               26/08/2006    1
## 4805               26/08/2007    1
## 4806               26/08/2009    1
## 4807               26/08/2011    1
## 4808               26/09/1987    1
## 4809               26/09/1997    1
## 4810               26/09/1998    1
## 4811               26/09/1999    1
## 4812               26/09/2001    1
## 4813               26/09/2002    1
## 4814               26/09/2004    1
## 4815               26/10/1997    1
## 4816               26/10/2007    1
## 4817               26/10/2010    1
## 4818               26/10/2011    1
## 4819               26/11/1995    1
## 4820               26/11/1997    1
## 4821               26/11/2002    1
## 4822               26/11/2006    1
## 4823               26/11/2007    1
## 4824               26/11/2008    1
## 4825               26/11/2009    1
## 4826               26/11/2010    1
## 4827               26/11/2011    1
## 4828               26/12/1995    1
## 4829               26/12/1996    1
## 4830               26/12/1998    1
## 4831               26/12/2001    1
## 4832               26/12/2003    1
## 4833               26/12/2005    1
## 4834               26/12/2007    1
## 4835               26/12/2008    1
## 4836               26/12/2011    1
## 4837               27/01/1997    1
## 4838               27/01/1999    1
## 4839               27/01/2001    1
## 4840               27/01/2003    1
## 4841               27/01/2005    1
## 4842               27/01/2007    1
## 4843               27/01/2011    1
## 4844               27/01/2012    1
## 4845               27/01/2013    1
## 4846               27/01/5003    1
## 4847               27/02/1995    1
## 4848               27/02/1999    1
## 4849               27/02/2000    1
## 4850               27/02/2002    1
## 4851               27/02/2005    1
## 4852               27/02/2009    1
## 4853               27/02/2011    1
## 4854               27/02/2014    1
## 4855               27/03/1998    1
## 4856               27/03/2000    1
## 4857               27/03/2005    1
## 4858               27/03/2011    1
## 4859               27/04/1996    1
## 4860               27/04/1997    1
## 4861               27/04/1998    1
## 4862               27/04/1999    1
## 4863               27/04/2006    1
## 4864               27/04/2008    1
## 4865               27/04/2009    1
## 4866               27/04/2010    1
## 4867               27/04/2013    1
## 4868               27/04/2014    1
## 4869               27/05/2000    1
## 4870               27/05/2002    1
## 4871               27/05/2003    1
## 4872               27/05/2005    1
## 4873               27/05/2009    1
## 4874               27/05/2010    1
## 4875               27/05/2013    1
## 4876               27/06/1996    1
## 4877               27/06/1998    1
## 4878               27/06/1999    1
## 4879               27/06/2003    1
## 4880               27/06/2007    1
## 4881               27/06/2008    1
## 4882               27/06/2010    1
## 4883               27/07/2001    1
## 4884               27/07/2003    1
## 4885               27/07/2004    1
## 4886               27/07/2009    1
## 4887               27/07/2013    1
## 4888               27/08/1999    1
## 4889               27/08/2005    1
## 4890               27/08/2006    1
## 4891               27/08/2009    1
## 4892               27/09/1997    1
## 4893               27/09/2001    1
## 4894               27/09/2005    1
## 4895               27/09/2008    1
## 4896               27/09/2012    1
## 4897               27/10/1995    1
## 4898               27/10/2000    1
## 4899               27/10/2003    1
## 4900               27/10/2004    1
## 4901               27/10/2009    1
## 4902               27/10/2010    1
## 4903               27/10/2012    1
## 4904               27/11/1998    1
## 4905               27/11/2005    1
## 4906               27/11/2006    1
## 4907               27/11/2009    1
## 4908               27/12/1997    1
## 4909               27/12/1998    1
## 4910               27/12/2000    1
## 4911               27/12/2003    1
## 4912               27/12/2005    1
## 4913               27/12/2007    1
## 4914               27/12/2008    1
## 4915               27/12/2009    1
## 4916               27/12/2010    1
## 4917               27/12/2012    1
## 4918               28/01/2005    1
## 4919               28/01/2006    1
## 4920               28/01/2007    1
## 4921               28/01/2012    1
## 4922               28/02/1997    1
## 4923               28/02/2003    1
## 4924               28/02/2006    1
## 4925               28/02/2009    1
## 4926               28/02/2010    1
## 4927               28/02/2013    1
## 4928               28/03/2000    1
## 4929               28/03/2004    1
## 4930               28/04/1995    1
## 4931               28/04/1999    1
## 4932               28/04/2007    1
## 4933               28/04/2009    1
## 4934               28/04/2010    1
## 4935               28/04/2012    1
## 4936               28/04/2013    1
## 4937               28/05/1996    1
## 4938               28/05/1999    1
## 4939               28/05/2000    1
## 4940               28/05/2003    1
## 4941               28/05/2004    1
## 4942               28/05/2005    1
## 4943               28/05/2006    1
## 4944               28/05/2009    1
## 4945               28/05/2011    1
## 4946               28/05/2013    1
## 4947               28/06/1996    1
## 4948               28/06/1997    1
## 4949               28/06/2012    1
## 4950               28/07/1996    1
## 4951               28/07/2000    1
## 4952               28/07/2003    1
## 4953               28/07/2006    1
## 4954               28/07/2007    1
## 4955               28/07/2010    1
## 4956               28/07/2013    1
## 4957               28/08/1999    1
## 4958               28/08/2002    1
## 4959               28/08/2004    1
## 4960               28/08/2010    1
## 4961               28/09/1995    1
## 4962               28/09/2009    1
## 4963               28/09/2010    1
## 4964               28/09/2012    1
## 4965               28/10/1993    1
## 4966               28/10/1995    1
## 4967               28/10/2006    1
## 4968               28/10/2010    1
## 4969               28/10/2013    1
## 4970               28/11/2003    1
## 4971               28/11/2005    1
## 4972               28/11/2006    1
## 4973               28/12/2009    1
## 4974               28/12/2011    1
## 4975               28/12/2012    1
## 4976               29/01/2000    1
## 4977               29/01/2003    1
## 4978               29/01/2005    1
## 4979               29/01/2013    1
## 4980               29/02/2008    1
## 4981               29/03/1997    1
## 4982               29/03/2008    1
## 4983               29/03/2011    1
## 4984               29/03/2014    1
## 4985               29/04/1997    1
## 4986               29/04/1998    1
## 4987               29/04/2005    1
## 4988               29/04/2007    1
## 4989               29/04/2008    1
## 4990               29/04/2009    1
## 4991               29/04/2012    1
## 4992               29/04/2014    1
## 4993               29/05/2003    1
## 4994               29/05/2004    1
## 4995               29/05/2006    1
## 4996               29/05/2009    1
## 4997               29/05/2011    1
## 4998               29/05/2012    1
## 4999               29/06/1996    1
## 5000               29/06/2005    1
## 5001               29/06/2009    1
## 5002               29/07/2006    1
## 5003               29/07/2009    1
## 5004               29/07/2010    1
## 5005               29/08/1998    1
## 5006               29/08/2003    1
## 5007               29/08/2008    1
## 5008               29/08/2010    1
## 5009               29/09/1997    1
## 5010               29/09/1998    1
## 5011               29/09/1999    1
## 5012               29/09/2004    1
## 5013               29/09/2007    1
## 5014               29/09/2012    1
## 5015               29/09/2013    1
## 5016               29/10/1997    1
## 5017               29/10/1998    1
## 5018               29/10/2000    1
## 5019               29/10/2002    1
## 5020               29/10/2006    1
## 5021               29/10/2008    1
## 5022               29/10/2013    1
## 5023               29/11/1997    1
## 5024               29/11/1998    1
## 5025               29/11/2009    1
## 5026               29/12/1997    1
## 5027               29/12/2000    1
## 5028               29/12/2002    1
## 5029               29/12/2007    1
## 5030               29/12/2010    1
## 5031               29/12/2011    1
## 5032               30/01/2000    1
## 5033               30/01/2005    1
## 5034               30/01/2008    1
## 5035               30/03/1994    1
## 5036               30/03/1996    1
## 5037               30/03/2002    1
## 5038               30/03/2005    1
## 5039               30/03/2006    1
## 5040               30/03/2009    1
## 5041               30/04/2002    1
## 5042               30/04/2008    1
## 5043               30/04/2009    1
## 5044               30/05/1995    1
## 5045               30/05/1996    1
## 5046               30/05/1999    1
## 5047               30/05/2000    1
## 5048               30/05/2003    1
## 5049               30/05/2004    1
## 5050               30/05/2005    1
## 5051               30/05/2008    1
## 5052               30/05/2009    1
## 5053               30/05/2011    1
## 5054               30/06/1996    1
## 5055               30/06/2004    1
## 5056               30/06/2006    1
## 5057               30/06/2010    1
## 5058               30/07/1997    1
## 5059               30/07/1998    1
## 5060               30/07/1999    1
## 5061               30/07/2009    1
## 5062               30/08/1993    1
## 5063               30/08/1998    1
## 5064               30/08/2005    1
## 5065               30/08/2007    1
## 5066               30/08/2009    1
## 5067               30/09/1994    1
## 5068               30/09/1997    1
## 5069               30/09/2003    1
## 5070               30/09/2006    1
## 5071               30/10/1976    1
## 5072               30/10/1993    1
## 5073               30/10/1995    1
## 5074               30/10/1997    1
## 5075               30/10/2001    1
## 5076               30/10/2003    1
## 5077               30/10/2008    1
## 5078               30/10/2009    1
## 5079               30/10/2010    1
## 5080               30/10/2011    1
## 5081               30/10/2012    1
## 5082               30/11/1996    1
## 5083               30/11/1997    1
## 5084               30/11/2006    1
## 5085               30/11/2009    1
## 5086               30/11/2010    1
## 5087               30/11/2013    1
## 5088               30/12/1996    1
## 5089               30/12/1999    1
## 5090               30/12/2000    1
## 5091               30/12/2002    1
## 5092               30/12/2003    1
## 5093               30/12/2006    1
## 5094               31/01/1999    1
## 5095               31/01/2001    1
## 5096               31/01/2003    1
## 5097               31/01/2005    1
## 5098               31/01/2006    1
## 5099               31/01/2007    1
## 5100               31/01/2010    1
## 5101               31/01/2011    1
## 5102               31/03/1998    1
## 5103               31/03/1999    1
## 5104               31/03/2000    1
## 5105               31/03/2001    1
## 5106               31/03/2002    1
## 5107               31/03/2003    1
## 5108               31/03/2004    1
## 5109               31/03/2007    1
## 5110               31/03/2012    1
## 5111               31/05/1995    1
## 5112               31/05/1996    1
## 5113               31/05/2008    1
## 5114               31/05/2012    1
## 5115               31/07/1994    1
## 5116               31/07/1999    1
## 5117               31/07/2003    1
## 5118               31/07/2005    1
## 5119               31/07/2006    1
## 5120               31/07/2007    1
## 5121               31/08/1998    1
## 5122               31/08/2010    1
## 5123               31/10/1998    1
## 5124               31/10/1999    1
## 5125               31/10/2000    1
## 5126               31/10/2008    1
## 5127               31/10/2010    1
## 5128               31/12/1996    1
## 5129               31/12/1997    1
## 5130               31/12/1998    1
## 5131               31/12/2001    1
## 5132               31/12/2003    1
## 5133               31/12/2007    1
## 5134               31/12/2010    1
## 5135               31/12/2011    1
count(dfmerge, ReceivedDate, sort=TRUE)
##      ReceivedDate  n
## 1      29/03/1996 17
## 2      06/03/2007 16
## 3      08/04/1996 16
## 4      11/01/2014 15
## 5      12/08/1996 15
## 6      01/05/1996 13
## 7      04/04/1996 13
## 8      10/09/2004 12
## 9      14/10/2013 12
## 10     18/02/2013 12
## 11     18/12/2012 12
## 12     19/02/2014 12
## 13     01/09/2006 11
## 14     03/02/2003 11
## 15     03/12/2001 11
## 16     05/10/2000 11
## 17     10/04/1996 11
## 18     12/07/2011 11
## 19     19/11/2003 11
## 20     21/10/2013 11
## 21     24/03/1997 11
## 22     26/03/2001 11
## 23     28/03/2000 11
## 24     04/04/2013 10
## 25     06/05/1996 10
## 26     06/09/2005 10
## 27     06/09/2013 10
## 28     08/08/2000 10
## 29     09/08/2013 10
## 30     15/05/2012 10
## 31     15/08/1997 10
## 32     19/04/1996 10
## 33     20/05/2004 10
## 34     27/09/2005 10
## 35     05/01/2006  9
## 36     05/03/2013  9
## 37     06/07/2004  9
## 38     07/03/2000  9
## 39     07/05/2007  9
## 40     07/06/2007  9
## 41     09/02/2000  9
## 42     09/04/1996  9
## 43     10/06/2014  9
## 44     10/09/1996  9
## 45     11/01/2006  9
## 46     11/05/2000  9
## 47     11/06/1996  9
## 48     11/09/2013  9
## 49     12/06/2001  9
## 50     12/07/1999  9
## 51     12/07/2013  9
## 52     12/08/1999  9
## 53     13/09/2013  9
## 54     14/05/1996  9
## 55     15/02/1999  9
## 56     16/04/1996  9
## 57     16/05/1996  9
## 58     20/03/2000  9
## 59     21/10/2005  9
## 60     22/03/2000  9
## 61     22/04/1996  9
## 62     24/09/2013  9
## 63     25/05/2012  9
## 64     26/06/2014  9
## 65     26/07/2000  9
## 66     27/02/2012  9
## 67     27/11/1996  9
## 68     27/12/2012  9
## 69     28/05/1996  9
## 70     28/10/2013  9
## 71     30/07/2001  9
## 72     01/04/2008  8
## 73     01/05/2014  8
## 74     01/10/2013  8
## 75     04/10/1996  8
## 76     04/11/2011  8
## 77     04/12/2012  8
## 78     05/01/2005  8
## 79     05/03/2004  8
## 80     05/05/2000  8
## 81     05/12/2013  8
## 82     06/11/2000  8
## 83     07/05/1996  8
## 84     07/07/2000  8
## 85     08/04/2014  8
## 86     09/07/2009  8
## 87     09/08/2006  8
## 88     09/12/1998  8
## 89     10/04/1997  8
## 90     10/04/2014  8
## 91     10/07/1997  8
## 92     11/01/2013  8
## 93     11/11/1998  8
## 94     12/06/2013  8
## 95     13/02/2004  8
## 96     13/03/2003  8
## 97     13/07/1998  8
## 98     13/09/2004  8
## 99     14/03/2003  8
## 100    14/06/2006  8
## 101    14/09/2012  8
## 102    15/05/1996  8
## 103    16/03/2006  8
## 104    17/04/1996  8
## 105    17/08/2006  8
## 106    18/03/2004  8
## 107    18/06/2014  8
## 108    18/07/2006  8
## 109    18/10/2013  8
## 110    19/07/2000  8
## 111    19/08/1998  8
## 112    20/02/2014  8
## 113    20/09/2005  8
## 114    20/09/2013  8
## 115    21/02/2000  8
## 116    21/03/2013  8
## 117    21/08/1996  8
## 118    22/04/1997  8
## 119    22/08/2007  8
## 120    23/02/2006  8
## 121    23/04/2014  8
## 122    23/06/2006  8
## 123    23/10/1997  8
## 124    24/08/2005  8
## 125    25/01/2001  8
## 126    25/04/1996  8
## 127    25/04/2014  8
## 128    26/03/2014  8
## 129    27/04/1998  8
## 130    28/01/1998  8
## 131    28/06/2004  8
## 132    29/12/2004  8
## 133    30/03/1996  8
## 134    30/05/2006  8
## 135    30/12/1999  8
## 136    01/07/1997  7
## 137    02/01/2001  7
## 138    02/01/2002  7
## 139    02/02/1999  7
## 140    02/04/1996  7
## 141    02/04/2008  7
## 142    03/02/1997  7
## 143    03/06/2013  7
## 144    03/09/1997  7
## 145    03/11/2004  7
## 146    04/01/2013  7
## 147    04/02/2008  7
## 148    06/02/2006  7
## 149    06/06/2000  7
## 150    06/06/2007  7
## 151    06/08/1998  7
## 152    06/08/2013  7
## 153    07/02/2013  7
## 154    07/06/2012  7
## 155    08/01/2013  7
## 156    08/04/2003  7
## 157    08/05/1998  7
## 158    08/10/2002  7
## 159    08/11/2011  7
## 160    09/02/2010  7
## 161    09/02/2011  7
## 162    09/03/2011  7
## 163    09/05/2014  7
## 164    09/07/2010  7
## 165    09/09/2003  7
## 166    09/11/2010  7
## 167    10/03/1998  7
## 168    10/07/2001  7
## 169    11/04/1996  7
## 170    11/04/2014  7
## 171    12/06/1997  7
## 172    12/07/1996  7
## 173    12/08/2008  7
## 174    12/09/2000  7
## 175    12/09/2002  7
## 176    12/10/2006  7
## 177    13/05/1996  7
## 178    13/07/2000  7
## 179    13/11/1996  7
## 180    14/01/1999  7
## 181    14/02/2000  7
## 182    14/06/1999  7
## 183    14/08/2013  7
## 184    15/10/2003  7
## 185    15/11/2012  7
## 186    15/11/2013  7
## 187    16/04/2012  7
## 188    16/04/2014  7
## 189    16/05/2002  7
## 190    16/06/2014  7
## 191    16/10/1996  7
## 192    17/04/2002  7
## 193    17/12/2002  7
## 194    18/06/2008  7
## 195    18/12/1996  7
## 196    19/02/1997  7
## 197    19/03/2013  7
## 198    19/03/2014  7
## 199    19/05/2004  7
## 200    19/10/2004  7
## 201    19/12/2000  7
## 202    20/06/2007  7
## 203    20/09/1996  7
## 204    20/10/2000  7
## 205    20/12/2002  7
## 206    21/01/2002  7
## 207    21/03/2000  7
## 208    21/05/1996  7
## 209    21/05/1997  7
## 210    21/11/2006  7
## 211    22/01/2014  7
## 212    22/03/1999  7
## 213    22/05/1996  7
## 214    22/09/1999  7
## 215    22/09/2000  7
## 216    22/12/2005  7
## 217    23/01/2001  7
## 218    23/03/2010  7
## 219    23/05/1996  7
## 220    23/05/2000  7
## 221    23/07/2013  7
## 222    23/08/2007  7
## 223    23/08/2012  7
## 224    23/10/2013  7
## 225    24/03/2006  7
## 226    24/05/2007  7
## 227    25/01/2011  7
## 228    25/03/2013  7
## 229    25/06/1996  7
## 230    25/06/2001  7
## 231    25/06/2013  7
## 232    25/07/2011  7
## 233    25/09/2013  7
## 234    25/10/2002  7
## 235    25/11/2003  7
## 236    26/06/2000  7
## 237    26/08/2003  7
## 238    26/10/2000  7
## 239    27/03/2001  7
## 240    27/03/2006  7
## 241    27/03/2014  7
## 242    27/08/2008  7
## 243    27/10/2008  7
## 244    28/02/1997  7
## 245    28/03/1996  7
## 246    28/08/1996  7
## 247    28/09/2006  7
## 248    29/10/2007  7
## 249    29/11/2001  7
## 250    29/11/2011  7
## 251    30/01/1997  7
## 252    30/01/2014  7
## 253    30/05/1996  7
## 254    30/05/2008  7
## 255    30/06/1998  7
## 256    30/07/2012  7
## 257    30/08/2011  7
## 258    31/01/2014  7
## 259    31/05/2001  7
## 260    31/07/2007  7
## 261    01/02/2000  6
## 262    01/02/2002  6
## 263    01/04/2004  6
## 264    01/11/2005  6
## 265    01/12/2004  6
## 266    01/12/2005  6
## 267    02/02/2004  6
## 268    02/06/2014  6
## 269    02/07/1996  6
## 270    02/12/2009  6
## 271    02/12/2011  6
## 272    03/03/2006  6
## 273    03/05/1996  6
## 274    03/07/2012  6
## 275    03/10/1996  6
## 276    03/11/2006  6
## 277    03/12/2002  6
## 278    04/02/2002  6
## 279    04/02/2003  6
## 280    04/02/2014  6
## 281    04/03/1998  6
## 282    04/04/2006  6
## 283    04/06/2007  6
## 284    04/09/2002  6
## 285    04/09/2008  6
## 286    04/09/2013  6
## 287    04/10/2006  6
## 288    04/11/2004  6
## 289    04/12/2013  6
## 290    05/02/1999  6
## 291    05/04/2007  6
## 292    05/07/2000  6
## 293    05/08/2009  6
## 294    05/09/1996  6
## 295    05/09/2007  6
## 296    06/02/2001  6
## 297    06/03/2012  6
## 298    06/03/2014  6
## 299    06/05/2003  6
## 300    06/05/2008  6
## 301    06/09/2012  6
## 302    06/12/2000  6
## 303    07/02/2006  6
## 304    07/02/2014  6
## 305    07/03/2001  6
## 306    07/04/2009  6
## 307    07/05/2002  6
## 308    07/08/2001  6
## 309    08/02/2002  6
## 310    08/02/2006  6
## 311    08/05/2014  6
## 312    08/08/1996  6
## 313    08/09/2010  6
## 314    09/02/2012  6
## 315    09/04/2013  6
## 316    09/06/2005  6
## 317    09/07/2001  6
## 318    09/09/1999  6
## 319    09/09/2004  6
## 320    09/10/2000  6
## 321    10/04/2002  6
## 322    10/04/2006  6
## 323    10/04/2012  6
## 324    10/06/2008  6
## 325    10/07/2006  6
## 326    10/09/2013  6
## 327    11/04/2007  6
## 328    11/04/2012  6
## 329    11/06/2013  6
## 330    11/09/1997  6
## 331    11/09/2000  6
## 332    11/09/2002  6
## 333    11/10/2012  6
## 334    12/02/1999  6
## 335    12/02/2004  6
## 336    12/05/2010  6
## 337    12/06/1996  6
## 338    12/06/2007  6
## 339    12/06/2014  6
## 340    13/01/2014  6
## 341    13/02/2002  6
## 342    13/05/2013  6
## 343    13/05/2014  6
## 344    13/06/2006  6
## 345    13/08/2001  6
## 346    13/08/2004  6
## 347    13/08/2008  6
## 348    13/10/2005  6
## 349    13/11/1997  6
## 350    13/12/2006  6
## 351    13/12/2012  6
## 352    14/02/2001  6
## 353    14/04/2004  6
## 354    14/06/2001  6
## 355    14/09/2011  6
## 356    14/12/2012  6
## 357    15/01/1999  6
## 358    15/03/2002  6
## 359    15/06/1999  6
## 360    15/08/2006  6
## 361    15/10/1997  6
## 362    16/02/1998  6
## 363    16/03/2012  6
## 364    16/04/1998  6
## 365    16/08/2005  6
## 366    16/09/2003  6
## 367    16/10/2001  6
## 368    16/11/1998  6
## 369    16/11/2004  6
## 370    16/12/1996  6
## 371    17/05/2007  6
## 372    17/05/2013  6
## 373    17/06/1996  6
## 374    18/01/2001  6
## 375    18/04/2000  6
## 376    18/07/2013  6
## 377    18/08/2000  6
## 378    18/11/2003  6
## 379    18/12/2002  6
## 380    19/01/2011  6
## 381    19/07/1996  6
## 382    19/07/2001  6
## 383    19/07/2013  6
## 384    19/12/2013  6
## 385    20/02/2001  6
## 386    20/04/2005  6
## 387    20/05/1996  6
## 388    20/06/2001  6
## 389    20/07/2011  6
## 390    20/08/1996  6
## 391    20/09/2001  6
## 392    20/09/2012  6
## 393    20/12/2013  6
## 394    21/02/2006  6
## 395    21/02/2013  6
## 396    21/04/1997  6
## 397    21/05/2014  6
## 398    21/06/2002  6
## 399    22/01/2013  6
## 400    22/02/2005  6
## 401    22/03/2012  6
## 402    22/05/1997  6
## 403    22/05/2013  6
## 404    22/07/1997  6
## 405    22/08/2001  6
## 406    22/08/2002  6
## 407    22/10/2004  6
## 408    22/10/2013  6
## 409    22/11/2013  6
## 410    23/04/2008  6
## 411    23/06/2000  6
## 412    23/08/2013  6
## 413    23/09/2013  6
## 414    23/10/2003  6
## 415    24/01/2014  6
## 416    24/02/1997  6
## 417    24/05/1996  6
## 418    24/06/2013  6
## 419    24/07/1996  6
## 420    24/07/2002  6
## 421    24/08/2000  6
## 422    24/08/2001  6
## 423    24/09/2002  6
## 424    24/09/2008  6
## 425    25/06/2014  6
## 426    25/07/2000  6
## 427    25/07/2001  6
## 428    25/09/1996  6
## 429    25/09/2008  6
## 430    25/10/2000  6
## 431    26/02/2001  6
## 432    26/03/2012  6
## 433    26/06/2007  6
## 434    27/01/1997  6
## 435    27/01/2014  6
## 436    27/02/2001  6
## 437    27/03/2002  6
## 438    27/06/2002  6
## 439    27/07/2004  6
## 440    27/09/1996  6
## 441    27/11/2002  6
## 442    27/11/2007  6
## 443    28/03/2014  6
## 444    28/05/2008  6
## 445    28/08/2002  6
## 446    28/09/1999  6
## 447    28/09/2000  6
## 448    28/10/1997  6
## 449    29/01/2004  6
## 450    29/03/2007  6
## 451    29/05/2014  6
## 452    29/07/1996  6
## 453    29/08/2000  6
## 454    30/11/2004  6
## 455    31/07/2002  6
## 456    31/12/2008  6
## 457    01/02/2012  5
## 458    01/03/1999  5
## 459    01/06/2005  5
## 460    01/08/1996  5
## 461    01/09/1999  5
## 462    01/09/2009  5
## 463    01/11/2012  5
## 464    02/02/2007  5
## 465    02/03/2010  5
## 466    02/05/2002  5
## 467    02/08/2007  5
## 468    02/09/1998  5
## 469    02/10/1997  5
## 470    02/10/2000  5
## 471    02/10/2008  5
## 472    02/10/2013  5
## 473    02/11/1999  5
## 474    02/11/2001  5
## 475    02/11/2007  5
## 476    02/12/1998  5
## 477    02/12/1999  5
## 478    03/01/2013  5
## 479    03/03/2000  5
## 480    03/03/2011  5
## 481    03/04/2002  5
## 482    03/04/2014  5
## 483    03/05/2005  5
## 484    03/05/2012  5
## 485    03/06/1997  5
## 486    03/07/2001  5
## 487    03/08/2006  5
## 488    03/10/2012  5
## 489    04/02/2011  5
## 490    04/03/2003  5
## 491    04/03/2009  5
## 492    04/04/2012  5
## 493    04/05/2005  5
## 494    04/06/1997  5
## 495    04/06/1998  5
## 496    04/06/2013  5
## 497    04/08/1999  5
## 498    04/10/1999  5
## 499    05/01/2012  5
## 500    05/02/1997  5
## 501    05/02/2013  5
## 502    05/03/2008  5
## 503    05/07/2007  5
## 504    05/08/1998  5
## 505    05/09/2000  5
## 506    05/09/2001  5
## 507    05/09/2006  5
## 508    05/10/1999  5
## 509    05/10/2004  5
## 510    05/11/1997  5
## 511    05/11/2013  5
## 512    06/01/2012  5
## 513    06/04/2004  5
## 514    06/05/2014  5
## 515    06/06/2001  5
## 516    06/06/2002  5
## 517    06/06/2008  5
## 518    06/09/2001  5
## 519    06/09/2002  5
## 520    06/10/2003  5
## 521    06/10/2011  5
## 522    06/11/1996  5
## 523    06/11/1998  5
## 524    06/11/2007  5
## 525    06/12/1999  5
## 526    07/03/2007  5
## 527    07/05/2012  5
## 528    07/09/2001  5
## 529    07/10/1996  5
## 530    07/11/2008  5
## 531    07/11/2013  5
## 532    07/12/1999  5
## 533    07/12/2005  5
## 534    08/01/2001  5
## 535    08/01/2002  5
## 536    08/02/2000  5
## 537    08/02/2010  5
## 538    08/03/2013  5
## 539    08/04/1998  5
## 540    08/04/2013  5
## 541    08/05/1996  5
## 542    08/05/2006  5
## 543    08/06/1999  5
## 544    08/10/1998  5
## 545    08/10/2012  5
## 546    08/12/2004  5
## 547    09/01/1998  5
## 548    09/01/2009  5
## 549    09/01/2014  5
## 550    09/02/1998  5
## 551    09/05/1996  5
## 552    09/06/2006  5
## 553    09/07/2007  5
## 554    09/07/2013  5
## 555    09/09/1997  5
## 556    09/09/1998  5
## 557    09/09/2005  5
## 558    09/11/2006  5
## 559    09/11/2012  5
## 560    09/12/2005  5
## 561    09/12/2011  5
## 562    10/02/2012  5
## 563    10/02/2014  5
## 564    10/04/2000  5
## 565    10/04/2013  5
## 566    10/05/2005  5
## 567    10/06/2003  5
## 568    10/10/1997  5
## 569    10/10/2000  5
## 570    11/02/1997  5
## 571    11/02/2004  5
## 572    11/02/2010  5
## 573    11/03/1999  5
## 574    11/03/2004  5
## 575    11/04/2008  5
## 576    11/04/2013  5
## 577    11/08/1998  5
## 578    11/08/1999  5
## 579    11/11/1999  5
## 580    11/12/2001  5
## 581    12/01/1998  5
## 582    12/01/2005  5
## 583    12/01/2010  5
## 584    12/03/2004  5
## 585    12/03/2008  5
## 586    12/04/2001  5
## 587    12/04/2012  5
## 588    12/05/1997  5
## 589    12/05/2014  5
## 590    12/09/1997  5
## 591    12/09/2007  5
## 592    12/10/1998  5
## 593    12/10/2004  5
## 594    12/11/1999  5
## 595    12/11/2001  5
## 596    12/11/2008  5
## 597    12/11/2010  5
## 598    12/11/2012  5
## 599    12/12/2006  5
## 600    13/01/2000  5
## 601    13/05/1999  5
## 602    13/05/2005  5
## 603    13/05/2008  5
## 604    13/06/2002  5
## 605    13/06/2007  5
## 606    13/07/1999  5
## 607    13/07/2004  5
## 608    13/12/1999  5
## 609    13/12/2001  5
## 610    13/12/2005  5
## 611    14/02/2003  5
## 612    14/02/2013  5
## 613    14/03/2008  5
## 614    14/03/2012  5
## 615    14/06/2002  5
## 616    14/07/1999  5
## 617    14/07/2006  5
## 618    14/08/2008  5
## 619    14/08/2012  5
## 620    14/09/2000  5
## 621    14/09/2005  5
## 622    14/10/1996  5
## 623    14/11/1996  5
## 624    14/11/2008  5
## 625    15/01/2009  5
## 626    15/02/2013  5
## 627    15/04/1996  5
## 628    15/05/2013  5
## 629    15/09/2003  5
## 630    15/09/2004  5
## 631    15/10/2002  5
## 632    15/11/2002  5
## 633    16/01/2004  5
## 634    16/03/2001  5
## 635    16/03/2009  5
## 636    16/04/1997  5
## 637    16/04/2008  5
## 638    16/07/2003  5
## 639    16/08/1996  5
## 640    16/08/2000  5
## 641    16/08/2012  5
## 642    16/09/2002  5
## 643    16/09/2009  5
## 644    16/10/2006  5
## 645    16/12/2011  5
## 646    17/01/2014  5
## 647    17/02/2012  5
## 648    17/03/2005  5
## 649    17/03/2014  5
## 650    17/05/1996  5
## 651    17/05/2000  5
## 652    17/05/2006  5
## 653    17/07/2002  5
## 654    17/08/2004  5
## 655    17/08/2005  5
## 656    17/11/1998  5
## 657    17/12/1996  5
## 658    18/02/2000  5
## 659    18/02/2002  5
## 660    18/04/2006  5
## 661    18/05/2000  5
## 662    18/05/2006  5
## 663    18/06/2001  5
## 664    18/06/2003  5
## 665    18/07/2000  5
## 666    18/10/2000  5
## 667    18/10/2002  5
## 668    18/11/1996  5
## 669    18/11/2010  5
## 670    18/12/2000  5
## 671    18/12/2013  5
## 672    19/03/1999  5
## 673    19/03/2003  5
## 674    19/03/2004  5
## 675    19/04/2013  5
## 676    19/05/1999  5
## 677    19/05/2008  5
## 678    19/05/2011  5
## 679    19/08/2005  5
## 680    19/08/2010  5
## 681    19/09/2003  5
## 682    19/10/2005  5
## 683    19/11/1997  5
## 684    19/12/2001  5
## 685    19/12/2011  5
## 686    20/01/2010  5
## 687    20/01/2012  5
## 688    20/02/1997  5
## 689    20/03/1997  5
## 690    20/03/2002  5
## 691    20/03/2009  5
## 692    20/03/2014  5
## 693    20/05/1997  5
## 694    20/05/1998  5
## 695    20/05/2005  5
## 696    20/06/2008  5
## 697    20/06/2013  5
## 698    20/08/2008  5
## 699    20/11/2001  5
## 700    20/11/2013  5
## 701    20/12/2010  5
## 702    21/02/2012  5
## 703    21/03/2006  5
## 704    21/06/1996  5
## 705    21/06/2011  5
## 706    21/06/2012  5
## 707    21/07/1999  5
## 708    21/08/2007  5
## 709    21/09/2006  5
## 710    21/10/1996  5
## 711    21/11/2000  5
## 712    22/01/2008  5
## 713    22/02/2002  5
## 714    22/03/2004  5
## 715    22/03/2006  5
## 716    22/03/2011  5
## 717    22/04/2003  5
## 718    22/04/2014  5
## 719    22/05/2007  5
## 720    22/06/2010  5
## 721    22/07/1999  5
## 722    22/07/2004  5
## 723    22/07/2008  5
## 724    22/10/1996  5
## 725    22/11/2005  5
## 726    23/01/2007  5
## 727    23/03/2000  5
## 728    23/03/2006  5
## 729    23/03/2012  5
## 730    23/05/2008  5
## 731    23/07/2004  5
## 732    23/08/1996  5
## 733    23/09/2005  5
## 734    23/10/2008  5
## 735    23/11/2010  5
## 736    23/12/1996  5
## 737    24/02/2003  5
## 738    24/02/2012  5
## 739    24/03/1999  5
## 740    24/04/2001  5
## 741    24/04/2003  5
## 742    24/06/2002  5
## 743    24/06/2014  5
## 744    24/07/1997  5
## 745    24/07/2001  5
## 746    24/07/2006  5
## 747    24/08/2007  5
## 748    24/09/1997  5
## 749    24/09/2004  5
## 750    24/09/2010  5
## 751    24/10/2012  5
## 752    25/01/2008  5
## 753    25/03/2011  5
## 754    25/06/1999  5
## 755    25/06/2010  5
## 756    25/07/1996  5
## 757    25/07/2003  5
## 758    25/07/2007  5
## 759    25/10/1996  5
## 760    25/10/2004  5
## 761    26/01/2005  5
## 762    26/01/2012  5
## 763    26/02/2014  5
## 764    26/04/2005  5
## 765    26/04/2006  5
## 766    26/04/2007  5
## 767    26/06/1996  5
## 768    26/06/2001  5
## 769    26/07/1996  5
## 770    26/07/1999  5
## 771    26/07/2013  5
## 772    26/10/2004  5
## 773    26/10/2011  5
## 774    27/02/2014  5
## 775    27/04/2000  5
## 776    27/04/2004  5
## 777    27/05/1997  5
## 778    27/05/2014  5
## 779    27/06/2013  5
## 780    27/07/1998  5
## 781    27/07/2006  5
## 782    27/09/1999  5
## 783    27/11/2006  5
## 784    28/02/2011  5
## 785    28/05/2013  5
## 786    28/06/2001  5
## 787    28/07/1997  5
## 788    28/08/2003  5
## 789    28/09/2010  5
## 790    28/10/1996  5
## 791    28/12/2004  5
## 792    29/01/2003  5
## 793    29/01/2013  5
## 794    29/02/2000  5
## 795    29/03/2013  5
## 796    29/04/2002  5
## 797    29/05/2008  5
## 798    29/06/2000  5
## 799    29/06/2004  5
## 800    29/07/2002  5
## 801    29/07/2011  5
## 802    29/09/2005  5
## 803    29/10/1998  5
## 804    29/11/1999  5
## 805    29/11/2010  5
## 806    30/01/2008  5
## 807    30/04/1996  5
## 808    30/04/2013  5
## 809    30/05/2000  5
## 810    30/05/2012  5
## 811    30/05/2014  5
## 812    30/06/1997  5
## 813    30/06/2011  5
## 814    30/07/2007  5
## 815    30/07/2009  5
## 816    30/08/2001  5
## 817    30/09/1996  5
## 818    30/09/1998  5
## 819    31/03/1998  5
## 820    31/03/2005  5
## 821    31/03/2010  5
## 822    31/05/1996  5
## 823    31/05/2005  5
## 824    31/07/2001  5
## 825    31/08/2006  5
## 826    31/10/1996  5
## 827    31/10/2013  5
## 828    31/12/2013  5
## 829    01/03/2005  4
## 830    01/03/2006  4
## 831    01/04/1997  4
## 832    01/05/2009  4
## 833    01/06/2000  4
## 834    01/06/2010  4
## 835    01/07/1999  4
## 836    01/07/2013  4
## 837    01/10/2012  4
## 838    01/11/1999  4
## 839    01/11/2013  4
## 840    02/01/2003  4
## 841    02/04/2002  4
## 842    02/04/2004  4
## 843    02/05/1996  4
## 844    02/05/2000  4
## 845    02/06/1997  4
## 846    02/06/2000  4
## 847    02/06/2004  4
## 848    02/06/2005  4
## 849    02/06/2008  4
## 850    02/07/2004  4
## 851    02/07/2013  4
## 852    02/08/1996  4
## 853    02/08/2001  4
## 854    02/08/2010  4
## 855    02/10/2002  4
## 856    02/11/2000  4
## 857    02/11/2004  4
## 858    02/11/2005  4
## 859    02/11/2011  4
## 860    02/12/1996  4
## 861    02/12/2005  4
## 862    03/03/1999  4
## 863    03/03/2010  4
## 864    03/03/2014  4
## 865    03/04/2007  4
## 866    03/04/2008  4
## 867    03/06/1996  4
## 868    03/06/2004  4
## 869    03/06/2009  4
## 870    03/07/2000  4
## 871    03/07/2003  4
## 872    03/07/2013  4
## 873    03/08/1999  4
## 874    03/09/1999  4
## 875    03/09/2013  4
## 876    03/10/2003  4
## 877    03/11/2003  4
## 878    03/11/2008  4
## 879    03/12/1997  4
## 880    04/01/2000  4
## 881    04/02/1999  4
## 882    04/03/2004  4
## 883    04/03/2011  4
## 884    04/04/2000  4
## 885    04/04/2001  4
## 886    04/05/2006  4
## 887    04/05/2011  4
## 888    04/06/2001  4
## 889    04/06/2002  4
## 890    04/06/2012  4
## 891    04/08/2006  4
## 892    04/08/2011  4
## 893    04/09/1996  4
## 894    04/09/2001  4
## 895    04/09/2012  4
## 896    04/10/2007  4
## 897    04/10/2012  4
## 898    04/11/1997  4
## 899    04/11/2003  4
## 900    04/11/2005  4
## 901    04/12/2001  4
## 902    05/02/2008  4
## 903    05/03/2010  4
## 904    05/04/2000  4
## 905    05/04/2012  4
## 906    05/04/2013  4
## 907    05/06/2000  4
## 908    05/06/2001  4
## 909    05/06/2007  4
## 910    05/06/2013  4
## 911    05/07/2012  4
## 912    05/08/2008  4
## 913    05/09/2002  4
## 914    05/09/2013  4
## 915    05/10/2001  4
## 916    05/11/1998  4
## 917    05/11/2002  4
## 918    05/11/2008  4
## 919    05/12/2008  4
## 920    06/01/2004  4
## 921    06/03/2002  4
## 922    06/04/1998  4
## 923    06/04/2005  4
## 924    06/04/2009  4
## 925    06/06/1997  4
## 926    06/07/2005  4
## 927    06/08/1996  4
## 928    06/09/2000  4
## 929    06/12/2005  4
## 930    06/12/2013  4
## 931    07/01/2005  4
## 932    07/01/2009  4
## 933    07/01/2010  4
## 934    07/02/1997  4
## 935    07/02/2005  4
## 936    07/02/2012  4
## 937    07/03/2005  4
## 938    07/03/2008  4
## 939    07/03/2014  4
## 940    07/04/1999  4
## 941    07/05/1997  4
## 942    07/05/1999  4
## 943    07/06/2001  4
## 944    07/06/2006  4
## 945    07/06/2013  4
## 946    07/07/2003  4
## 947    07/07/2009  4
## 948    07/08/1997  4
## 949    07/08/2009  4
## 950    07/08/2012  4
## 951    07/08/2013  4
## 952    07/09/2004  4
## 953    07/09/2011  4
## 954    07/11/2000  4
## 955    07/12/2007  4
## 956    07/12/2010  4
## 957    07/12/2011  4
## 958    08/01/2004  4
## 959    08/01/2008  4
## 960    08/02/2013  4
## 961    08/03/2012  4
## 962    08/04/1997  4
## 963    08/04/2009  4
## 964    08/06/2000  4
## 965    08/07/1996  4
## 966    08/09/2011  4
## 967    08/10/2003  4
## 968    08/10/2010  4
## 969    08/11/2004  4
## 970    08/11/2010  4
## 971    08/11/2013  4
## 972    08/12/2000  4
## 973    08/12/2005  4
## 974    09/01/2004  4
## 975    09/01/2008  4
## 976    09/02/1999  4
## 977    09/02/2001  4
## 978    09/02/2004  4
## 979    09/03/2005  4
## 980    09/03/2006  4
## 981    09/04/2002  4
## 982    09/04/2007  4
## 983    09/05/2000  4
## 984    09/06/2011  4
## 985    09/07/2008  4
## 986    09/08/1999  4
## 987    09/08/2001  4
## 988    09/08/2004  4
## 989    09/10/1997  4
## 990    09/11/2004  4
## 991    09/11/2009  4
## 992    09/11/2011  4
## 993    09/12/2003  4
## 994    10/01/2001  4
## 995    10/01/2014  4
## 996    10/02/1998  4
## 997    10/02/2006  4
## 998    10/02/2011  4
## 999    10/03/2008  4
## 1000   10/04/2001  4
## 1001   10/05/1996  4
## 1002   10/06/1996  4
## 1003   10/06/2004  4
## 1004   10/06/2009  4
## 1005   10/07/2000  4
## 1006   10/07/2002  4
## 1007   10/07/2007  4
## 1008   10/07/2013  4
## 1009   10/08/2000  4
## 1010   10/08/2004  4
## 1011   10/08/2012  4
## 1012   10/11/2004  4
## 1013   10/11/2005  4
## 1014   10/11/2010  4
## 1015   10/12/2007  4
## 1016   11/01/2000  4
## 1017   11/01/2008  4
## 1018   11/02/2000  4
## 1019   11/02/2002  4
## 1020   11/02/2005  4
## 1021   11/02/2014  4
## 1022   11/03/2003  4
## 1023   11/04/2002  4
## 1024   11/04/2003  4
## 1025   11/04/2005  4
## 1026   11/04/2011  4
## 1027   11/05/2004  4
## 1028   11/05/2006  4
## 1029   11/06/1999  4
## 1030   11/06/2002  4
## 1031   11/06/2010  4
## 1032   11/07/2001  4
## 1033   11/07/2005  4
## 1034   11/07/2006  4
## 1035   11/07/2013  4
## 1036   11/08/2005  4
## 1037   11/10/2013  4
## 1038   11/12/2012  4
## 1039   12/01/2006  4
## 1040   12/03/2012  4
## 1041   12/04/2004  4
## 1042   12/04/2005  4
## 1043   12/04/2006  4
## 1044   12/04/2010  4
## 1045   12/04/2013  4
## 1046   12/05/1998  4
## 1047   12/05/2004  4
## 1048   12/08/2009  4
## 1049   12/09/2013  4
## 1050   12/10/1999  4
## 1051   12/10/2001  4
## 1052   12/10/2005  4
## 1053   12/11/1996  4
## 1054   12/12/2003  4
## 1055   12/12/2013  4
## 1056   13/01/1999  4
## 1057   13/01/2006  4
## 1058   13/03/1997  4
## 1059   13/03/2007  4
## 1060   13/03/2012  4
## 1061   13/03/2014  4
## 1062   13/06/2000  4
## 1063   13/07/2011  4
## 1064   13/08/1999  4
## 1065   13/08/2010  4
## 1066   13/09/1996  4
## 1067   13/09/1999  4
## 1068   13/09/2000  4
## 1069   13/09/2001  4
## 1070   13/09/2005  4
## 1071   13/10/2000  4
## 1072   13/11/2012  4
## 1073   13/12/2010  4
## 1074   13/12/2013  4
## 1075   14/03/2000  4
## 1076   14/03/2001  4
## 1077   14/03/2013  4
## 1078   14/04/2011  4
## 1079   14/06/2004  4
## 1080   14/06/2013  4
## 1081   14/07/2000  4
## 1082   14/09/1999  4
## 1083   14/09/2004  4
## 1084   14/10/2003  4
## 1085   14/10/2011  4
## 1086   14/12/1998  4
## 1087   14/12/2007  4
## 1088   15/01/2001  4
## 1089   15/02/2006  4
## 1090   15/02/2007  4
## 1091   15/03/1999  4
## 1092   15/04/1999  4
## 1093   15/05/2002  4
## 1094   15/06/2007  4
## 1095   15/06/2010  4
## 1096   15/07/1996  4
## 1097   15/07/1997  4
## 1098   15/07/1999  4
## 1099   15/08/2013  4
## 1100   15/10/1996  4
## 1101   15/10/2004  4
## 1102   15/10/2009  4
## 1103   15/11/2006  4
## 1104   15/12/1997  4
## 1105   15/12/2006  4
## 1106   15/12/2011  4
## 1107   16/01/1998  4
## 1108   16/01/2002  4
## 1109   16/02/2004  4
## 1110   16/03/1999  4
## 1111   16/03/2007  4
## 1112   16/04/2002  4
## 1113   16/05/2001  4
## 1114   16/05/2013  4
## 1115   16/05/2014  4
## 1116   16/06/2008  4
## 1117   16/07/2012  4
## 1118   16/07/2013  4
## 1119   16/08/2006  4
## 1120   16/09/1996  4
## 1121   16/09/2010  4
## 1122   16/09/2013  4
## 1123   16/11/1999  4
## 1124   16/11/2000  4
## 1125   17/01/2002  4
## 1126   17/02/2006  4
## 1127   17/02/2011  4
## 1128   17/03/1999  4
## 1129   17/03/2008  4
## 1130   17/03/2010  4
## 1131   17/04/1997  4
## 1132   17/04/1998  4
## 1133   17/04/2000  4
## 1134   17/04/2003  4
## 1135   17/04/2008  4
## 1136   17/05/2012  4
## 1137   17/06/2009  4
## 1138   17/06/2014  4
## 1139   17/07/1996  4
## 1140   17/07/2000  4
## 1141   17/07/2012  4
## 1142   17/08/1999  4
## 1143   17/08/2010  4
## 1144   17/09/2001  4
## 1145   17/09/2004  4
## 1146   17/09/2012  4
## 1147   17/10/2005  4
## 1148   17/10/2013  4
## 1149   17/11/2005  4
## 1150   17/11/2010  4
## 1151   17/11/2011  4
## 1152   17/12/2010  4
## 1153   18/01/2011  4
## 1154   18/02/2003  4
## 1155   18/02/2004  4
## 1156   18/03/1997  4
## 1157   18/03/2005  4
## 1158   18/03/2014  4
## 1159   18/04/2002  4
## 1160   18/06/2004  4
## 1161   18/07/1996  4
## 1162   18/09/2002  4
## 1163   18/09/2012  4
## 1164   18/10/1999  4
## 1165   18/10/2005  4
## 1166   18/10/2006  4
## 1167   18/10/2007  4
## 1168   18/10/2010  4
## 1169   18/11/2013  4
## 1170   18/12/1998  4
## 1171   18/12/2007  4
## 1172   19/02/1999  4
## 1173   19/02/2010  4
## 1174   19/05/1997  4
## 1175   19/05/2000  4
## 1176   19/05/2006  4
## 1177   19/06/2013  4
## 1178   19/08/2003  4
## 1179   19/08/2008  4
## 1180   19/08/2013  4
## 1181   19/09/2000  4
## 1182   19/09/2011  4
## 1183   19/10/1998  4
## 1184   19/10/2012  4
## 1185   19/11/2002  4
## 1186   19/12/2007  4
## 1187   20/02/2008  4
## 1188   20/02/2012  4
## 1189   20/04/2012  4
## 1190   20/05/2002  4
## 1191   20/05/2013  4
## 1192   20/07/2004  4
## 1193   20/07/2006  4
## 1194   20/07/2007  4
## 1195   20/08/1999  4
## 1196   20/08/2012  4
## 1197   20/09/2007  4
## 1198   20/10/2009  4
## 1199   20/11/2009  4
## 1200   20/12/1996  4
## 1201   20/12/1999  4
## 1202   20/12/2005  4
## 1203   20/12/2007  4
## 1204   21/01/1998  4
## 1205   21/01/2010  4
## 1206   21/02/2014  4
## 1207   21/03/2005  4
## 1208   21/04/1999  4
## 1209   21/04/2011  4
## 1210   21/04/2014  4
## 1211   21/05/1998  4
## 1212   21/05/1999  4
## 1213   21/05/2004  4
## 1214   21/05/2013  4
## 1215   21/06/2001  4
## 1216   21/06/2004  4
## 1217   21/07/1997  4
## 1218   21/07/2004  4
## 1219   21/07/2005  4
## 1220   21/07/2006  4
## 1221   21/07/2008  4
## 1222   21/08/2000  4
## 1223   21/08/2001  4
## 1224   21/08/2008  4
## 1225   21/09/2004  4
## 1226   21/09/2005  4
## 1227   21/10/1997  4
## 1228   21/11/1996  4
## 1229   22/01/1997  4
## 1230   22/01/2003  4
## 1231   22/02/2012  4
## 1232   22/02/2013  4
## 1233   22/04/1999  4
## 1234   22/04/2004  4
## 1235   22/04/2009  4
## 1236   22/05/2000  4
## 1237   22/05/2002  4
## 1238   22/06/2000  4
## 1239   22/06/2001  4
## 1240   22/06/2006  4
## 1241   22/06/2012  4
## 1242   22/07/2009  4
## 1243   22/07/2010  4
## 1244   22/08/2011  4
## 1245   22/09/2004  4
## 1246   22/10/1998  4
## 1247   22/10/2012  4
## 1248   22/11/2004  4
## 1249   22/12/2003  4
## 1250   22/12/2010  4
## 1251   23/01/2004  4
## 1252   23/02/2001  4
## 1253   23/02/2012  4
## 1254   23/03/1998  4
## 1255   23/03/2001  4
## 1256   23/03/2004  4
## 1257   23/03/2009  4
## 1258   23/05/2014  4
## 1259   23/06/1999  4
## 1260   23/07/2001  4
## 1261   23/08/2006  4
## 1262   23/10/2012  4
## 1263   23/12/2009  4
## 1264   24/01/1997  4
## 1265   24/01/2006  4
## 1266   24/02/2004  4
## 1267   24/02/2009  4
## 1268   24/03/2014  4
## 1269   24/05/1999  4
## 1270   24/05/2000  4
## 1271   24/05/2001  4
## 1272   24/06/1996  4
## 1273   24/06/1999  4
## 1274   24/06/2009  4
## 1275   24/07/1998  4
## 1276   24/07/2012  4
## 1277   24/07/2013  4
## 1278   24/08/2004  4
## 1279   24/09/1996  4
## 1280   24/09/2001  4
## 1281   24/09/2003  4
## 1282   24/09/2012  4
## 1283   24/10/2001  4
## 1284   24/10/2003  4
## 1285   24/10/2013  4
## 1286   24/11/1997  4
## 1287   24/11/2003  4
## 1288   24/11/2009  4
## 1289   25/01/1999  4
## 1290   25/01/2002  4
## 1291   25/01/2005  4
## 1292   25/01/2010  4
## 1293   25/02/2000  4
## 1294   25/02/2002  4
## 1295   25/02/2005  4
## 1296   25/02/2013  4
## 1297   25/03/1998  4
## 1298   25/05/2011  4
## 1299   25/06/2002  4
## 1300   25/06/2003  4
## 1301   25/06/2012  4
## 1302   25/07/1997  4
## 1303   25/07/2006  4
## 1304   25/08/2000  4
## 1305   25/10/2006  4
## 1306   25/11/2013  4
## 1307   26/01/2001  4
## 1308   26/01/2007  4
## 1309   26/01/2011  4
## 1310   26/02/2010  4
## 1311   26/03/2003  4
## 1312   26/03/2008  4
## 1313   26/04/2000  4
## 1314   26/04/2002  4
## 1315   26/04/2013  4
## 1316   26/06/1998  4
## 1317   26/06/2002  4
## 1318   26/06/2012  4
## 1319   26/07/2001  4
## 1320   26/07/2011  4
## 1321   26/08/2013  4
## 1322   26/09/1996  4
## 1323   26/09/2000  4
## 1324   26/09/2012  4
## 1325   26/10/2007  4
## 1326   26/10/2012  4
## 1327   27/02/2013  4
## 1328   27/03/1997  4
## 1329   27/04/2006  4
## 1330   27/05/1998  4
## 1331   27/05/2005  4
## 1332   27/06/2000  4
## 1333   27/06/2006  4
## 1334   27/06/2008  4
## 1335   27/06/2014  4
## 1336   27/07/1999  4
## 1337   27/07/2010  4
## 1338   27/08/2002  4
## 1339   27/09/2002  4
## 1340   27/09/2013  4
## 1341   27/10/2009  4
## 1342   28/01/2005  4
## 1343   28/01/2011  4
## 1344   28/01/2013  4
## 1345   28/02/2001  4
## 1346   28/02/2007  4
## 1347   28/02/2012  4
## 1348   28/02/2014  4
## 1349   28/03/2008  4
## 1350   28/03/2012  4
## 1351   28/04/1997  4
## 1352   28/04/2005  4
## 1353   28/06/1999  4
## 1354   28/06/2000  4
## 1355   28/07/1999  4
## 1356   28/07/2000  4
## 1357   28/07/2003  4
## 1358   28/07/2005  4
## 1359   28/07/2010  4
## 1360   28/11/2001  4
## 1361   29/01/1998  4
## 1362   29/01/1999  4
## 1363   29/01/2002  4
## 1364   29/01/2009  4
## 1365   29/04/2008  4
## 1366   29/05/1996  4
## 1367   29/05/2001  4
## 1368   29/05/2003  4
## 1369   29/06/1998  4
## 1370   29/06/2010  4
## 1371   29/06/2012  4
## 1372   29/07/2005  4
## 1373   29/08/1996  4
## 1374   29/08/2005  4
## 1375   29/10/2008  4
## 1376   29/11/2007  4
## 1377   29/12/1999  4
## 1378   30/01/2004  4
## 1379   30/03/2004  4
## 1380   30/03/2005  4
## 1381   30/04/2003  4
## 1382   30/05/1997  4
## 1383   30/05/2007  4
## 1384   30/05/2013  4
## 1385   30/06/1999  4
## 1386   30/07/2008  4
## 1387   30/08/2000  4
## 1388   30/08/2002  4
## 1389   30/08/2013  4
## 1390   31/03/1997  4
## 1391   31/03/2003  4
## 1392   31/07/2000  4
## 1393   31/07/2013  4
## 1394   31/08/2007  4
## 1395   31/12/2001  4
## 1396   01/02/2001  3
## 1397   01/03/2002  3
## 1398   01/03/2010  3
## 1399   01/04/2003  3
## 1400   01/04/2005  3
## 1401   01/05/2001  3
## 1402   01/05/2007  3
## 1403   01/05/2008  3
## 1404   01/05/2012  3
## 1405   01/07/1998  3
## 1406   01/07/2002  3
## 1407   01/07/2003  3
## 1408   01/07/2005  3
## 1409   01/08/2003  3
## 1410   01/08/2008  3
## 1411   01/09/2004  3
## 1412   01/09/2010  3
## 1413   01/10/2002  3
## 1414   01/11/2000  3
## 1415   01/11/2001  3
## 1416   01/11/2007  3
## 1417   01/12/2008  3
## 1418   01/12/2009  3
## 1419   01/12/2010  3
## 1420   02/01/2007  3
## 1421   02/02/2000  3
## 1422   02/02/2006  3
## 1423   02/02/2011  3
## 1424   02/03/2000  3
## 1425   02/04/1997  3
## 1426   02/04/2007  3
## 1427   02/04/2012  3
## 1428   02/04/2013  3
## 1429   02/04/2014  3
## 1430   02/05/1997  3
## 1431   02/05/2001  3
## 1432   02/05/2003  3
## 1433   02/05/2005  3
## 1434   02/05/2006  3
## 1435   02/05/2007  3
## 1436   02/06/1999  3
## 1437   02/06/2011  3
## 1438   02/07/2003  3
## 1439   02/07/2007  3
## 1440   02/08/2005  3
## 1441   02/08/2012  3
## 1442   02/08/2013  3
## 1443   02/09/1997  3
## 1444   02/09/2003  3
## 1445   02/09/2004  3
## 1446   02/10/2001  3
## 1447   02/10/2007  3
## 1448   02/11/1998  3
## 1449   02/12/2002  3
## 1450   02/12/2003  3
## 1451   03/01/2005  3
## 1452   03/01/2006  3
## 1453   03/01/2014  3
## 1454   03/02/1999  3
## 1455   03/02/2004  3
## 1456   03/02/2009  3
## 1457   03/02/2010  3
## 1458   03/02/2011  3
## 1459   03/04/1997  3
## 1460   03/05/2002  3
## 1461   03/05/2010  3
## 1462   03/06/1999  3
## 1463   03/06/2011  3
## 1464   03/06/2014  3
## 1465   03/07/1997  3
## 1466   03/08/2000  3
## 1467   03/08/2011  3
## 1468   03/08/2012  3
## 1469   03/09/1998  3
## 1470   03/09/2003  3
## 1471   03/09/2008  3
## 1472   03/10/2005  3
## 1473   03/10/2007  3
## 1474   03/10/2013  3
## 1475   03/11/1997  3
## 1476   03/11/2005  3
## 1477   03/11/2011  3
## 1478   03/12/2013  3
## 1479   04/01/2011  3
## 1480   04/02/1997  3
## 1481   04/02/2010  3
## 1482   04/03/2014  3
## 1483   04/04/2005  3
## 1484   04/04/2008  3
## 1485   04/04/2014  3
## 1486   04/05/1998  3
## 1487   04/05/2004  3
## 1488   04/05/2009  3
## 1489   04/06/2003  3
## 1490   04/06/2014  3
## 1491   04/08/2000  3
## 1492   04/08/2005  3
## 1493   04/09/1997  3
## 1494   04/09/2007  3
## 1495   04/10/2002  3
## 1496   04/10/2010  3
## 1497   04/10/2011  3
## 1498   04/11/2013  3
## 1499   04/12/1998  3
## 1500   04/12/2009  3
## 1501   05/02/2000  3
## 1502   05/02/2001  3
## 1503   05/02/2007  3
## 1504   05/02/2014  3
## 1505   05/03/2001  3
## 1506   05/04/1999  3
## 1507   05/04/2002  3
## 1508   05/04/2011  3
## 1509   05/05/1999  3
## 1510   05/05/2011  3
## 1511   05/06/2006  3
## 1512   05/06/2008  3
## 1513   05/07/2006  3
## 1514   05/08/2002  3
## 1515   05/08/2010  3
## 1516   05/08/2011  3
## 1517   05/10/1998  3
## 1518   05/10/2007  3
## 1519   05/10/2010  3
## 1520   05/10/2011  3
## 1521   05/11/2003  3
## 1522   05/11/2009  3
## 1523   05/12/2012  3
## 1524   06/01/1999  3
## 1525   06/01/2005  3
## 1526   06/02/2002  3
## 1527   06/02/2009  3
## 1528   06/02/2012  3
## 1529   06/02/2013  3
## 1530   06/02/2014  3
## 1531   06/03/1998  3
## 1532   06/03/2003  3
## 1533   06/03/2008  3
## 1534   06/03/2013  3
## 1535   06/04/1999  3
## 1536   06/05/2010  3
## 1537   06/05/2011  3
## 1538   06/06/2006  3
## 1539   06/06/2012  3
## 1540   06/07/1999  3
## 1541   06/08/2001  3
## 1542   06/08/2003  3
## 1543   06/08/2007  3
## 1544   06/08/2008  3
## 1545   06/09/2011  3
## 1546   06/10/1998  3
## 1547   06/10/2000  3
## 1548   06/10/2005  3
## 1549   06/10/2008  3
## 1550   06/11/2001  3
## 1551   06/11/2002  3
## 1552   06/11/2012  3
## 1553   07/02/2002  3
## 1554   07/03/1997  3
## 1555   07/03/2013  3
## 1556   07/04/1997  3
## 1557   07/04/2003  3
## 1558   07/04/2005  3
## 1559   07/05/2008  3
## 1560   07/05/2013  3
## 1561   07/05/2014  3
## 1562   07/06/2010  3
## 1563   07/07/1998  3
## 1564   07/07/2011  3
## 1565   07/08/1996  3
## 1566   07/08/2000  3
## 1567   07/08/2002  3
## 1568   07/08/2003  3
## 1569   07/08/2006  3
## 1570   07/09/2007  3
## 1571   07/10/1999  3
## 1572   07/10/2002  3
## 1573   07/10/2004  3
## 1574   07/10/2013  3
## 1575   07/11/1996  3
## 1576   07/12/2004  3
## 1577   08/01/1997  3
## 1578   08/01/2010  3
## 1579   08/02/2005  3
## 1580   08/03/2000  3
## 1581   08/03/2002  3
## 1582   08/03/2004  3
## 1583   08/04/1999  3
## 1584   08/05/2009  3
## 1585   08/05/2012  3
## 1586   08/06/1998  3
## 1587   08/06/2007  3
## 1588   08/07/2009  3
## 1589   08/08/1997  3
## 1590   08/08/2001  3
## 1591   08/08/2002  3
## 1592   08/08/2003  3
## 1593   08/08/2005  3
## 1594   08/08/2008  3
## 1595   08/08/2011  3
## 1596   08/08/2013  3
## 1597   08/09/1997  3
## 1598   08/09/2008  3
## 1599   08/10/1996  3
## 1600   08/10/1999  3
## 1601   08/10/2001  3
## 1602   08/10/2004  3
## 1603   08/10/2008  3
## 1604   08/10/2013  3
## 1605   08/11/1996  3
## 1606   08/11/2001  3
## 1607   08/11/2002  3
## 1608   08/11/2006  3
## 1609   08/12/2006  3
## 1610   09/02/2006  3
## 1611   09/03/1999  3
## 1612   09/03/2001  3
## 1613   09/03/2007  3
## 1614   09/04/2003  3
## 1615   09/04/2008  3
## 1616   09/04/2010  3
## 1617   09/05/1997  3
## 1618   09/05/2005  3
## 1619   09/05/2007  3
## 1620   09/05/2012  3
## 1621   09/05/2013  3
## 1622   09/06/1997  3
## 1623   09/06/2000  3
## 1624   09/06/2008  3
## 1625   09/06/2009  3
## 1626   09/07/1999  3
## 1627   09/08/2007  3
## 1628   09/09/2011  3
## 1629   09/09/2013  3
## 1630   09/10/2001  3
## 1631   09/10/2007  3
## 1632   09/11/2000  3
## 1633   09/12/2004  3
## 1634   10/01/1997  3
## 1635   10/01/2003  3
## 1636   10/01/2006  3
## 1637   10/01/2008  3
## 1638   10/01/2012  3
## 1639   10/02/1997  3
## 1640   10/02/2000  3
## 1641   10/02/2003  3
## 1642   10/02/2005  3
## 1643   10/03/2004  3
## 1644   10/03/2009  3
## 1645   10/03/2010  3
## 1646   10/04/2007  3
## 1647   10/05/2001  3
## 1648   10/05/2004  3
## 1649   10/05/2012  3
## 1650   10/06/2005  3
## 1651   10/06/2011  3
## 1652   10/07/1996  3
## 1653   10/08/2006  3
## 1654   10/08/2010  3
## 1655   10/08/2011  3
## 1656   10/09/2010  3
## 1657   10/10/2001  3
## 1658   10/10/2003  3
## 1659   10/10/2006  3
## 1660   10/10/2012  3
## 1661   10/11/1997  3
## 1662   10/11/2008  3
## 1663   10/11/2011  3
## 1664   10/12/1997  3
## 1665   10/12/2012  3
## 1666   11/01/2001  3
## 1667   11/01/2005  3
## 1668   11/02/2013  3
## 1669   11/03/2014  3
## 1670   11/04/1997  3
## 1671   11/05/2001  3
## 1672   11/05/2007  3
## 1673   11/06/1997  3
## 1674   11/06/2008  3
## 1675   11/07/1997  3
## 1676   11/07/2007  3
## 1677   11/07/2008  3
## 1678   11/08/2003  3
## 1679   11/08/2010  3
## 1680   11/10/1999  3
## 1681   11/10/2000  3
## 1682   11/10/2010  3
## 1683   11/12/1996  3
## 1684   11/12/2002  3
## 1685   12/01/2012  3
## 1686   12/02/2002  3
## 1687   12/03/2010  3
## 1688   12/03/2013  3
## 1689   12/05/1999  3
## 1690   12/05/2006  3
## 1691   12/05/2009  3
## 1692   12/07/2001  3
## 1693   12/07/2004  3
## 1694   12/07/2005  3
## 1695   12/07/2006  3
## 1696   12/07/2007  3
## 1697   12/07/2012  3
## 1698   12/08/2002  3
## 1699   12/08/2004  3
## 1700   12/08/2010  3
## 1701   12/10/2011  3
## 1702   12/10/2012  3
## 1703   12/11/2013  3
## 1704   12/12/2000  3
## 1705   12/12/2012  3
## 1706   13/01/1997  3
## 1707   13/01/2004  3
## 1708   13/02/2006  3
## 1709   13/02/2014  3
## 1710   13/03/2000  3
## 1711   13/03/2001  3
## 1712   13/04/1998  3
## 1713   13/04/2004  3
## 1714   13/04/2005  3
## 1715   13/04/2012  3
## 1716   13/05/1998  3
## 1717   13/05/2002  3
## 1718   13/05/2004  3
## 1719   13/05/2010  3
## 1720   13/05/2011  3
## 1721   13/06/1996  3
## 1722   13/06/2001  3
## 1723   13/06/2011  3
## 1724   13/07/2001  3
## 1725   13/07/2006  3
## 1726   13/07/2012  3
## 1727   13/09/2006  3
## 1728   13/09/2011  3
## 1729   13/09/2012  3
## 1730   13/10/2003  3
## 1731   13/10/2006  3
## 1732   13/10/2010  3
## 1733   13/10/2011  3
## 1734   13/11/2000  3
## 1735   13/11/2006  3
## 1736   13/11/2007  3
## 1737   13/11/2008  3
## 1738   13/12/2007  3
## 1739   14/01/1997  3
## 1740   14/01/2005  3
## 1741   14/01/2010  3
## 1742   14/02/2005  3
## 1743   14/02/2008  3
## 1744   14/02/2011  3
## 1745   14/02/2012  3
## 1746   14/03/2006  3
## 1747   14/05/1997  3
## 1748   14/05/1999  3
## 1749   14/05/2002  3
## 1750   14/05/2010  3
## 1751   14/06/1996  3
## 1752   14/06/2007  3
## 1753   14/06/2010  3
## 1754   14/07/2005  3
## 1755   14/07/2009  3
## 1756   14/08/2000  3
## 1757   14/08/2002  3
## 1758   14/10/2004  3
## 1759   14/11/1997  3
## 1760   14/11/2012  3
## 1761   14/11/2013  3
## 1762   14/12/2010  3
## 1763   15/01/2010  3
## 1764   15/01/2014  3
## 1765   15/03/2011  3
## 1766   15/04/2010  3
## 1767   15/04/2014  3
## 1768   15/05/1997  3
## 1769   15/05/2003  3
## 1770   15/05/2007  3
## 1771   15/05/2014  3
## 1772   15/06/2011  3
## 1773   15/06/2012  3
## 1774   15/07/2005  3
## 1775   15/08/2012  3
## 1776   15/09/2005  3
## 1777   15/09/2011  3
## 1778   15/10/1998  3
## 1779   15/10/2012  3
## 1780   15/10/2013  3
## 1781   15/11/2011  3
## 1782   15/12/1998  3
## 1783   15/12/2008  3
## 1784   16/01/2014  3
## 1785   16/02/2001  3
## 1786   16/02/2012  3
## 1787   16/03/1998  3
## 1788   16/03/2005  3
## 1789   16/05/2000  3
## 1790   16/05/2003  3
## 1791   16/05/2006  3
## 1792   16/06/1997  3
## 1793   16/06/1999  3
## 1794   16/06/2004  3
## 1795   16/07/1998  3
## 1796   16/07/2007  3
## 1797   16/07/2009  3
## 1798   16/07/2010  3
## 1799   16/08/2010  3
## 1800   16/08/2011  3
## 1801   16/09/2004  3
## 1802   16/09/2011  3
## 1803   16/10/2000  3
## 1804   16/11/2006  3
## 1805   16/12/1997  3
## 1806   16/12/1999  3
## 1807   16/12/2013  3
## 1808   17/01/2001  3
## 1809   17/01/2003  3
## 1810   17/01/2012  3
## 1811   17/02/1997  3
## 1812   17/02/1999  3
## 1813   17/02/2014  3
## 1814   17/03/2000  3
## 1815   17/03/2006  3
## 1816   17/04/2001  3
## 1817   17/04/2007  3
## 1818   17/04/2012  3
## 1819   17/05/2004  3
## 1820   17/05/2011  3
## 1821   17/06/2003  3
## 1822   17/07/2001  3
## 1823   17/07/2009  3
## 1824   17/08/2000  3
## 1825   17/08/2007  3
## 1826   17/08/2011  3
## 1827   17/08/2012  3
## 1828   17/09/1996  3
## 1829   17/09/2009  3
## 1830   17/10/1996  3
## 1831   17/10/2000  3
## 1832   17/10/2006  3
## 1833   17/10/2007  3
## 1834   17/12/1997  3
## 1835   17/12/2007  3
## 1836   18/01/2005  3
## 1837   18/01/2013  3
## 1838   18/02/1999  3
## 1839   18/03/2003  3
## 1840   18/04/2001  3
## 1841   18/04/2008  3
## 1842   18/05/2001  3
## 1843   18/05/2010  3
## 1844   18/06/2009  3
## 1845   18/06/2010  3
## 1846   18/06/2013  3
## 1847   18/07/1997  3
## 1848   18/07/2003  3
## 1849   18/08/1997  3
## 1850   18/08/2003  3
## 1851   18/08/2005  3
## 1852   18/08/2009  3
## 1853   18/09/1998  3
## 1854   18/09/2000  3
## 1855   18/11/1997  3
## 1856   18/11/2002  3
## 1857   18/11/2005  3
## 1858   18/11/2011  3
## 1859   18/12/2001  3
## 1860   18/12/2003  3
## 1861   19/01/2001  3
## 1862   19/02/2001  3
## 1863   19/02/2003  3
## 1864   19/02/2013  3
## 1865   19/03/2002  3
## 1866   19/03/2008  3
## 1867   19/04/2001  3
## 1868   19/04/2005  3
## 1869   19/04/2006  3
## 1870   19/06/2001  3
## 1871   19/06/2014  3
## 1872   19/07/1999  3
## 1873   19/08/1996  3
## 1874   19/09/2001  3
## 1875   19/09/2006  3
## 1876   19/09/2012  3
## 1877   19/11/2001  3
## 1878   19/11/2004  3
## 1879   19/11/2007  3
## 1880   19/11/2008  3
## 1881   19/11/2009  3
## 1882   19/12/2002  3
## 1883   20/01/2005  3
## 1884   20/02/2002  3
## 1885   20/02/2013  3
## 1886   20/04/1999  3
## 1887   20/04/2004  3
## 1888   20/05/2008  3
## 1889   20/05/2009  3
## 1890   20/05/2010  3
## 1891   20/06/1996  3
## 1892   20/06/2002  3
## 1893   20/06/2005  3
## 1894   20/06/2014  3
## 1895   20/07/2000  3
## 1896   20/09/1999  3
## 1897   20/09/2000  3
## 1898   20/09/2010  3
## 1899   20/09/2011  3
## 1900   20/10/2005  3
## 1901   20/11/1996  3
## 1902   20/11/1997  3
## 1903   20/11/2008  3
## 1904   20/12/2000  3
## 1905   20/12/2012  3
## 1906   21/01/1999  3
## 1907   21/01/2003  3
## 1908   21/01/2004  3
## 1909   21/02/1997  3
## 1910   21/03/1997  3
## 1911   21/03/2012  3
## 1912   21/03/2014  3
## 1913   21/04/2008  3
## 1914   21/05/2001  3
## 1915   21/05/2010  3
## 1916   21/06/2000  3
## 1917   21/07/2010  3
## 1918   21/08/1997  3
## 1919   21/08/2006  3
## 1920   21/08/2013  3
## 1921   21/09/1998  3
## 1922   21/09/1999  3
## 1923   21/10/2003  3
## 1924   21/10/2009  3
## 1925   21/10/2010  3
## 1926   21/11/2007  3
## 1927   21/11/2008  3
## 1928   21/12/1998  3
## 1929   21/12/2004  3
## 1930   21/12/2005  3
## 1931   21/12/2007  3
## 1932   21/12/2012  3
## 1933   22/01/1999  3
## 1934   22/01/2004  3
## 1935   22/03/2007  3
## 1936   22/04/2010  3
## 1937   22/05/2003  3
## 1938   22/05/2006  3
## 1939   22/05/2012  3
## 1940   22/05/2014  3
## 1941   22/06/1999  3
## 1942   22/06/2005  3
## 1943   22/07/1996  3
## 1944   22/07/1998  3
## 1945   22/07/2002  3
## 1946   22/07/2005  3
## 1947   22/08/1996  3
## 1948   22/08/1997  3
## 1949   22/08/2000  3
## 1950   22/08/2006  3
## 1951   22/08/2008  3
## 1952   22/08/2013  3
## 1953   22/09/1998  3
## 1954   22/09/2003  3
## 1955   22/09/2006  3
## 1956   22/09/2009  3
## 1957   22/09/2010  3
## 1958   22/10/2003  3
## 1959   22/11/2000  3
## 1960   22/11/2010  3
## 1961   22/11/2011  3
## 1962   22/12/2006  3
## 1963   23/01/1997  3
## 1964   23/01/2002  3
## 1965   23/01/2009  3
## 1966   23/01/2013  3
## 1967   23/02/2004  3
## 1968   23/02/2011  3
## 1969   23/03/2007  3
## 1970   23/04/1999  3
## 1971   23/04/2001  3
## 1972   23/04/2002  3
## 1973   23/04/2003  3
## 1974   23/04/2007  3
## 1975   23/04/2012  3
## 1976   23/05/2001  3
## 1977   23/05/2002  3
## 1978   23/05/2003  3
## 1979   23/05/2007  3
## 1980   23/06/1997  3
## 1981   23/06/2010  3
## 1982   23/07/1997  3
## 1983   23/07/1998  3
## 1984   23/07/2007  3
## 1985   23/07/2008  3
## 1986   23/08/1999  3
## 1987   23/08/2000  3
## 1988   23/08/2002  3
## 1989   23/08/2011  3
## 1990   23/09/1997  3
## 1991   23/09/1998  3
## 1992   23/09/1999  3
## 1993   23/09/2003  3
## 1994   23/09/2011  3
## 1995   23/10/2007  3
## 1996   23/11/2004  3
## 1997   23/11/2005  3
## 1998   24/01/2002  3
## 1999   24/02/2000  3
## 2000   24/03/1998  3
## 2001   24/04/2000  3
## 2002   24/04/2002  3
## 2003   24/04/2006  3
## 2004   24/04/2012  3
## 2005   24/04/2014  3
## 2006   24/05/2004  3
## 2007   24/05/2011  3
## 2008   24/06/1997  3
## 2009   24/06/2004  3
## 2010   24/07/2003  3
## 2011   24/07/2007  3
## 2012   24/07/2008  3
## 2013   24/08/2009  3
## 2014   24/09/1999  3
## 2015   24/10/2008  3
## 2016   24/11/1998  3
## 2017   24/11/1999  3
## 2018   25/01/2007  3
## 2019   25/02/1998  3
## 2020   25/02/1999  3
## 2021   25/02/2008  3
## 2022   25/02/2014  3
## 2023   25/03/1997  3
## 2024   25/03/2004  3
## 2025   25/03/2009  3
## 2026   25/03/2014  3
## 2027   25/04/2001  3
## 2028   25/04/2003  3
## 2029   25/04/2008  3
## 2030   25/05/1999  3
## 2031   25/05/2010  3
## 2032   25/06/1997  3
## 2033   25/06/2007  3
## 2034   25/06/2008  3
## 2035   25/07/2013  3
## 2036   25/08/1997  3
## 2037   25/08/2005  3
## 2038   25/08/2010  3
## 2039   25/09/1998  3
## 2040   25/09/2006  3
## 2041   25/09/2007  3
## 2042   25/09/2009  3
## 2043   25/11/1996  3
## 2044   25/11/1998  3
## 2045   26/01/2009  3
## 2046   26/02/1997  3
## 2047   26/02/2007  3
## 2048   26/03/2004  3
## 2049   26/04/1996  3
## 2050   26/05/2000  3
## 2051   26/05/2010  3
## 2052   26/06/2006  3
## 2053   26/06/2013  3
## 2054   26/07/2004  3
## 2055   26/08/2005  3
## 2056   26/08/2010  3
## 2057   26/08/2011  3
## 2058   26/09/2005  3
## 2059   26/09/2011  3
## 2060   26/10/1998  3
## 2061   26/10/1999  3
## 2062   26/10/2010  3
## 2063   26/12/2002  3
## 2064   27/01/1999  3
## 2065   27/01/2009  3
## 2066   27/04/1999  3
## 2067   27/04/2009  3
## 2068   27/05/1999  3
## 2069   27/06/1996  3
## 2070   27/06/2001  3
## 2071   27/06/2003  3
## 2072   27/06/2007  3
## 2073   27/06/2012  3
## 2074   27/08/1996  3
## 2075   27/08/1999  3
## 2076   27/08/2001  3
## 2077   27/08/2004  3
## 2078   27/08/2013  3
## 2079   27/09/2001  3
## 2080   27/10/1997  3
## 2081   27/10/1998  3
## 2082   27/10/1999  3
## 2083   27/10/2004  3
## 2084   27/10/2005  3
## 2085   27/11/2013  3
## 2086   27/12/2000  3
## 2087   27/12/2006  3
## 2088   28/01/2010  3
## 2089   28/01/2014  3
## 2090   28/03/2001  3
## 2091   28/03/2002  3
## 2092   28/03/2003  3
## 2093   28/03/2007  3
## 2094   28/03/2013  3
## 2095   28/04/2004  3
## 2096   28/05/1997  3
## 2097   28/05/2002  3
## 2098   28/05/2004  3
## 2099   28/05/2014  3
## 2100   28/06/2005  3
## 2101   28/06/2006  3
## 2102   28/06/2010  3
## 2103   28/06/2012  3
## 2104   28/07/2004  3
## 2105   28/07/2009  3
## 2106   28/09/1998  3
## 2107   28/09/2001  3
## 2108   28/09/2009  3
## 2109   28/10/2002  3
## 2110   28/10/2003  3
## 2111   28/10/2004  3
## 2112   28/10/2008  3
## 2113   28/10/2011  3
## 2114   28/11/2000  3
## 2115   28/11/2011  3
## 2116   29/01/2007  3
## 2117   29/01/2010  3
## 2118   29/02/2012  3
## 2119   29/03/2000  3
## 2120   29/04/1997  3
## 2121   29/04/2003  3
## 2122   29/04/2004  3
## 2123   29/04/2013  3
## 2124   29/04/2014  3
## 2125   29/05/2002  3
## 2126   29/05/2013  3
## 2127   29/06/1999  3
## 2128   29/07/1998  3
## 2129   29/07/1999  3
## 2130   29/07/2008  3
## 2131   29/08/1997  3
## 2132   29/08/2001  3
## 2133   29/08/2006  3
## 2134   29/08/2008  3
## 2135   29/08/2012  3
## 2136   29/08/2013  3
## 2137   29/09/1997  3
## 2138   29/09/2000  3
## 2139   29/09/2004  3
## 2140   29/09/2008  3
## 2141   29/09/2010  3
## 2142   29/09/2011  3
## 2143   29/10/1999  3
## 2144   29/10/2013  3
## 2145   29/12/1998  3
## 2146   29/12/2008  3
## 2147   30/01/2001  3
## 2148   30/01/2003  3
## 2149   30/01/2006  3
## 2150   30/01/2009  3
## 2151   30/01/2012  3
## 2152   30/01/2013  3
## 2153   30/03/2001  3
## 2154   30/03/2010  3
## 2155   30/03/2012  3
## 2156   30/04/2002  3
## 2157   30/05/2001  3
## 2158   30/06/2000  3
## 2159   30/06/2014  3
## 2160   30/07/1999  3
## 2161   30/07/2004  3
## 2162   30/08/1996  3
## 2163   30/08/2004  3
## 2164   30/09/2009  3
## 2165   30/09/2010  3
## 2166   30/10/2012  3
## 2167   30/11/2000  3
## 2168   30/11/2011  3
## 2169   30/11/2012  3
## 2170   30/12/2003  3
## 2171   31/01/2005  3
## 2172   31/01/2006  3
## 2173   31/01/2007  3
## 2174   31/03/1999  3
## 2175   31/03/2004  3
## 2176   31/03/2008  3
## 2177   31/05/2000  3
## 2178   31/05/2011  3
## 2179   31/08/1998  3
## 2180   31/08/1999  3
## 2181   31/08/2000  3
## 2182   31/08/2004  3
## 2183   31/08/2009  3
## 2184   31/10/2002  3
## 2185   31/10/2006  3
## 2186   31/10/2012  3
## 2187   31/12/1996  3
## 2188   31/12/1997  3
## 2189   31/12/2007  3
## 2190   01/02/1999  2
## 2191   01/02/2005  2
## 2192   01/02/2008  2
## 2193   01/02/2010  2
## 2194   01/02/2011  2
## 2195   01/02/2013  2
## 2196   01/03/2004  2
## 2197   01/03/2007  2
## 2198   01/03/2011  2
## 2199   01/03/2013  2
## 2200   01/04/1999  2
## 2201   01/04/2010  2
## 2202   01/04/2011  2
## 2203   01/04/2014  2
## 2204   01/05/1997  2
## 2205   01/05/2002  2
## 2206   01/05/2003  2
## 2207   01/05/2006  2
## 2208   01/06/2001  2
## 2209   01/06/2004  2
## 2210   01/06/2006  2
## 2211   01/06/2011  2
## 2212   01/07/1996  2
## 2213   01/07/2004  2
## 2214   01/07/2008  2
## 2215   01/07/2011  2
## 2216   01/08/1997  2
## 2217   01/08/2000  2
## 2218   01/08/2005  2
## 2219   01/08/2006  2
## 2220   01/08/2011  2
## 2221   01/08/2012  2
## 2222   01/08/2013  2
## 2223   01/10/1997  2
## 2224   01/10/1999  2
## 2225   01/10/2001  2
## 2226   01/10/2004  2
## 2227   01/10/2007  2
## 2228   01/10/2008  2
## 2229   01/10/2009  2
## 2230   01/11/1996  2
## 2231   01/11/2004  2
## 2232   01/11/2010  2
## 2233   01/12/1997  2
## 2234   01/12/1999  2
## 2235   01/12/2000  2
## 2236   01/12/2003  2
## 2237   01/12/2006  2
## 2238   01/12/2011  2
## 2239   02/01/1997  2
## 2240   02/01/2008  2
## 2241   02/01/2009  2
## 2242   02/01/2013  2
## 2243   02/02/1998  2
## 2244   02/02/2012  2
## 2245   02/03/1999  2
## 2246   02/03/2004  2
## 2247   02/03/2005  2
## 2248   02/03/2007  2
## 2249   02/03/2009  2
## 2250   02/03/2011  2
## 2251   02/04/2001  2
## 2252   02/05/2013  2
## 2253   02/05/2014  2
## 2254   02/06/1998  2
## 2255   02/07/2001  2
## 2256   02/07/2010  2
## 2257   02/08/2000  2
## 2258   02/08/2006  2
## 2259   02/08/2011  2
## 2260   02/09/2009  2
## 2261   02/10/1996  2
## 2262   02/10/2003  2
## 2263   02/10/2012  2
## 2264   02/11/2006  2
## 2265   02/11/2009  2
## 2266   02/11/2012  2
## 2267   02/12/2004  2
## 2268   02/12/2010  2
## 2269   03/01/1997  2
## 2270   03/01/2001  2
## 2271   03/01/2008  2
## 2272   03/01/2011  2
## 2273   03/01/2012  2
## 2274   03/02/2005  2
## 2275   03/02/2012  2
## 2276   03/03/1997  2
## 2277   03/03/2005  2
## 2278   03/04/1998  2
## 2279   03/04/2012  2
## 2280   03/05/1999  2
## 2281   03/05/2001  2
## 2282   03/05/2007  2
## 2283   03/05/2013  2
## 2284   03/06/2002  2
## 2285   03/06/2003  2
## 2286   03/08/2001  2
## 2287   03/08/2005  2
## 2288   03/08/2007  2
## 2289   03/09/1996  2
## 2290   03/09/2002  2
## 2291   03/09/2009  2
## 2292   03/09/2010  2
## 2293   03/10/2008  2
## 2294   03/10/2011  2
## 2295   03/11/1998  2
## 2296   03/11/2009  2
## 2297   03/12/1996  2
## 2298   03/12/1999  2
## 2299   03/12/2003  2
## 2300   03/12/2008  2
## 2301   03/12/2009  2
## 2302   03/12/2012  2
## 2303   04/01/2001  2
## 2304   04/01/2010  2
## 2305   04/02/2005  2
## 2306   04/03/2002  2
## 2307   04/03/2005  2
## 2308   04/03/2008  2
## 2309   04/03/2010  2
## 2310   04/03/2013  2
## 2311   04/04/1997  2
## 2312   04/04/2002  2
## 2313   04/04/2007  2
## 2314   04/05/2001  2
## 2315   04/05/2007  2
## 2316   04/05/2012  2
## 2317   04/06/2008  2
## 2318   04/07/2006  2
## 2319   04/08/1997  2
## 2320   04/08/2003  2
## 2321   04/08/2008  2
## 2322   04/08/2009  2
## 2323   04/09/2003  2
## 2324   04/09/2009  2
## 2325   04/10/2001  2
## 2326   04/10/2004  2
## 2327   04/11/1996  2
## 2328   04/11/1999  2
## 2329   04/12/1996  2
## 2330   04/12/1997  2
## 2331   04/12/2000  2
## 2332   05/01/2000  2
## 2333   05/01/2010  2
## 2334   05/02/1998  2
## 2335   05/02/2003  2
## 2336   05/02/2004  2
## 2337   05/02/2009  2
## 2338   05/03/1997  2
## 2339   05/03/1998  2
## 2340   05/03/2002  2
## 2341   05/03/2003  2
## 2342   05/03/2012  2
## 2343   05/04/2004  2
## 2344   05/04/2005  2
## 2345   05/04/2006  2
## 2346   05/05/1997  2
## 2347   05/05/2009  2
## 2348   05/05/2010  2
## 2349   05/05/2014  2
## 2350   05/06/1996  2
## 2351   05/06/2003  2
## 2352   05/06/2012  2
## 2353   05/06/2014  2
## 2354   05/07/2011  2
## 2355   05/07/2013  2
## 2356   05/08/1997  2
## 2357   05/08/1999  2
## 2358   05/09/2012  2
## 2359   05/10/2006  2
## 2360   05/11/2004  2
## 2361   05/11/2012  2
## 2362   05/12/1997  2
## 2363   05/12/2000  2
## 2364   06/01/2003  2
## 2365   06/01/2006  2
## 2366   06/01/2009  2
## 2367   06/01/2011  2
## 2368   06/02/1997  2
## 2369   06/02/2008  2
## 2370   06/03/1997  2
## 2371   06/03/2000  2
## 2372   06/03/2001  2
## 2373   06/03/2009  2
## 2374   06/04/2000  2
## 2375   06/04/2001  2
## 2376   06/04/2011  2
## 2377   06/05/2002  2
## 2378   06/05/2009  2
## 2379   06/05/2013  2
## 2380   06/06/2013  2
## 2381   06/06/2014  2
## 2382   06/07/1998  2
## 2383   06/07/2001  2
## 2384   06/07/2006  2
## 2385   06/07/2008  2
## 2386   06/07/2010  2
## 2387   06/08/1997  2
## 2388   06/08/2004  2
## 2389   06/08/2012  2
## 2390   06/09/2007  2
## 2391   06/10/2006  2
## 2392   06/11/1997  2
## 2393   06/11/2003  2
## 2394   06/11/2008  2
## 2395   06/11/2013  2
## 2396   06/12/2001  2
## 2397   06/12/2007  2
## 2398   06/12/2010  2
## 2399   06/12/2012  2
## 2400   07/01/1997  2
## 2401   07/01/2014  2
## 2402   07/02/2000  2
## 2403   07/02/2001  2
## 2404   07/02/2003  2
## 2405   07/02/2011  2
## 2406   07/03/2002  2
## 2407   07/03/2006  2
## 2408   07/03/2011  2
## 2409   07/03/2012  2
## 2410   07/04/2000  2
## 2411   07/04/2004  2
## 2412   07/04/2008  2
## 2413   07/04/2010  2
## 2414   07/05/2003  2
## 2415   07/05/2010  2
## 2416   07/06/2000  2
## 2417   07/06/2004  2
## 2418   07/06/2011  2
## 2419   07/07/1999  2
## 2420   07/07/2005  2
## 2421   07/07/2006  2
## 2422   07/07/2008  2
## 2423   07/07/2010  2
## 2424   07/08/2008  2
## 2425   07/09/2000  2
## 2426   07/09/2005  2
## 2427   07/09/2010  2
## 2428   07/10/2008  2
## 2429   07/10/2010  2
## 2430   07/10/2011  2
## 2431   07/11/1997  2
## 2432   07/11/2002  2
## 2433   07/11/2006  2
## 2434   07/11/2011  2
## 2435   07/11/2012  2
## 2436   07/12/2006  2
## 2437   07/12/2009  2
## 2438   08/01/2003  2
## 2439   08/02/1999  2
## 2440   08/02/2008  2
## 2441   08/02/2012  2
## 2442   08/03/1999  2
## 2443   08/03/2006  2
## 2444   08/03/2007  2
## 2445   08/03/2010  2
## 2446   08/03/2011  2
## 2447   08/04/2005  2
## 2448   08/04/2008  2
## 2449   08/04/2011  2
## 2450   08/05/2001  2
## 2451   08/05/2002  2
## 2452   08/05/2008  2
## 2453   08/06/2004  2
## 2454   08/06/2010  2
## 2455   08/06/2011  2
## 2456   08/06/2012  2
## 2457   08/07/1998  2
## 2458   08/07/2002  2
## 2459   08/07/2008  2
## 2460   08/07/2010  2
## 2461   08/07/2011  2
## 2462   08/08/2007  2
## 2463   08/08/2012  2
## 2464   08/09/2004  2
## 2465   08/09/2005  2
## 2466   08/09/2006  2
## 2467   08/12/1997  2
## 2468   08/12/2010  2
## 2469   08/12/2011  2
## 2470   09/01/2001  2
## 2471   09/01/2002  2
## 2472   09/01/2007  2
## 2473   09/01/2012  2
## 2474   09/02/2005  2
## 2475   09/03/1998  2
## 2476   09/03/2000  2
## 2477   09/03/2004  2
## 2478   09/03/2009  2
## 2479   09/03/2010  2
## 2480   09/03/2012  2
## 2481   09/05/2001  2
## 2482   09/05/2002  2
## 2483   09/05/2003  2
## 2484   09/06/1998  2
## 2485   09/06/2003  2
## 2486   09/06/2014  2
## 2487   09/07/1996  2
## 2488   09/07/1997  2
## 2489   09/07/1998  2
## 2490   09/07/2002  2
## 2491   09/07/2012  2
## 2492   09/08/1996  2
## 2493   09/08/2000  2
## 2494   09/08/2010  2
## 2495   09/08/2011  2
## 2496   09/08/2012  2
## 2497   09/09/2002  2
## 2498   09/09/2009  2
## 2499   09/09/2010  2
## 2500   09/10/2002  2
## 2501   09/10/2013  2
## 2502   09/12/1996  2
## 2503   09/12/1999  2
## 2504   09/12/2010  2
## 2505   09/12/2013  2
## 2506   10/01/2000  2
## 2507   10/01/2002  2
## 2508   10/01/2005  2
## 2509   10/01/2011  2
## 2510   10/01/2013  2
## 2511   10/02/2004  2
## 2512   10/02/2009  2
## 2513   10/03/1997  2
## 2514   10/03/2000  2
## 2515   10/03/2005  2
## 2516   10/03/2006  2
## 2517   10/03/2011  2
## 2518   10/05/1999  2
## 2519   10/05/2000  2
## 2520   10/05/2011  2
## 2521   10/06/1997  2
## 2522   10/06/1999  2
## 2523   10/06/2002  2
## 2524   10/06/2010  2
## 2525   10/06/2013  2
## 2526   10/07/2012  2
## 2527   10/08/1999  2
## 2528   10/08/2001  2
## 2529   10/08/2005  2
## 2530   10/08/2009  2
## 2531   10/09/1997  2
## 2532   10/09/1998  2
## 2533   10/09/2003  2
## 2534   10/09/2008  2
## 2535   10/09/2009  2
## 2536   10/09/2012  2
## 2537   10/10/1996  2
## 2538   10/10/2002  2
## 2539   10/10/2005  2
## 2540   10/10/2007  2
## 2541   10/10/2008  2
## 2542   10/10/2011  2
## 2543   10/10/2013  2
## 2544   10/11/1999  2
## 2545   10/12/1996  2
## 2546   10/12/1998  2
## 2547   10/12/1999  2
## 2548   10/12/2001  2
## 2549   10/12/2002  2
## 2550   10/12/2003  2
## 2551   10/12/2008  2
## 2552   10/12/2009  2
## 2553   10/12/2013  2
## 2554   11/01/2007  2
## 2555   11/01/2012  2
## 2556   11/02/2008  2
## 2557   11/02/2009  2
## 2558   11/02/2011  2
## 2559   11/03/1997  2
## 2560   11/03/2009  2
## 2561   11/03/2013  2
## 2562   11/04/2001  2
## 2563   11/05/2005  2
## 2564   11/05/2010  2
## 2565   11/06/1998  2
## 2566   11/06/2003  2
## 2567   11/07/1996  2
## 2568   11/07/2012  2
## 2569   11/08/2006  2
## 2570   11/08/2009  2
## 2571   11/09/1996  2
## 2572   11/09/2003  2
## 2573   11/09/2007  2
## 2574   11/09/2008  2
## 2575   11/09/2009  2
## 2576   11/09/2012  2
## 2577   11/10/2001  2
## 2578   11/10/2002  2
## 2579   11/10/2011  2
## 2580   11/11/2002  2
## 2581   11/11/2003  2
## 2582   12/01/2000  2
## 2583   12/01/2007  2
## 2584   12/01/2009  2
## 2585   12/02/2003  2
## 2586   12/02/2007  2
## 2587   12/02/2008  2
## 2588   12/03/1999  2
## 2589   12/03/2003  2
## 2590   12/03/2007  2
## 2591   12/03/2014  2
## 2592   12/04/2002  2
## 2593   12/05/2003  2
## 2594   12/05/2005  2
## 2595   12/05/2008  2
## 2596   12/05/2011  2
## 2597   12/06/1998  2
## 2598   12/06/2000  2
## 2599   12/06/2006  2
## 2600   12/06/2012  2
## 2601   12/07/2010  2
## 2602   12/08/1998  2
## 2603   12/08/2003  2
## 2604   12/08/2005  2
## 2605   12/09/2011  2
## 2606   12/10/2007  2
## 2607   12/10/2010  2
## 2608   12/11/2003  2
## 2609   12/11/2004  2
## 2610   12/11/2007  2
## 2611   12/12/2001  2
## 2612   12/12/2002  2
## 2613   12/12/2007  2
## 2614   12/12/2011  2
## 2615   13/01/1998  2
## 2616   13/01/2005  2
## 2617   13/01/2011  2
## 2618   13/01/2012  2
## 2619   13/02/2001  2
## 2620   13/02/2008  2
## 2621   13/03/2002  2
## 2622   13/03/2006  2
## 2623   13/03/2008  2
## 2624   13/04/1999  2
## 2625   13/04/2006  2
## 2626   13/04/2011  2
## 2627   13/06/2005  2
## 2628   13/06/2008  2
## 2629   13/06/2012  2
## 2630   13/06/2014  2
## 2631   13/08/1998  2
## 2632   13/08/2007  2
## 2633   13/08/2013  2
## 2634   13/09/2002  2
## 2635   13/10/1998  2
## 2636   13/11/1998  2
## 2637   13/11/2002  2
## 2638   13/11/2003  2
## 2639   13/12/2000  2
## 2640   13/12/2011  2
## 2641   14/01/1998  2
## 2642   14/01/2003  2
## 2643   14/01/2011  2
## 2644   14/02/2002  2
## 2645   14/03/2002  2
## 2646   14/04/1999  2
## 2647   14/04/2000  2
## 2648   14/04/2003  2
## 2649   14/04/2008  2
## 2650   14/04/2009  2
## 2651   14/05/2001  2
## 2652   14/05/2003  2
## 2653   14/05/2007  2
## 2654   14/05/2008  2
## 2655   14/05/2009  2
## 2656   14/06/2000  2
## 2657   14/06/2005  2
## 2658   14/06/2011  2
## 2659   14/06/2012  2
## 2660   14/07/1997  2
## 2661   14/07/1998  2
## 2662   14/07/2003  2
## 2663   14/07/2004  2
## 2664   14/07/2008  2
## 2665   14/07/2011  2
## 2666   14/08/1996  2
## 2667   14/08/1997  2
## 2668   14/08/2009  2
## 2669   14/09/2007  2
## 2670   14/09/2009  2
## 2671   14/10/1999  2
## 2672   14/10/2005  2
## 2673   14/10/2008  2
## 2674   14/11/2000  2
## 2675   14/11/2001  2
## 2676   14/11/2002  2
## 2677   14/11/2011  2
## 2678   14/12/2000  2
## 2679   14/12/2004  2
## 2680   14/12/2006  2
## 2681   14/12/2009  2
## 2682   15/01/2003  2
## 2683   15/01/2004  2
## 2684   15/01/2008  2
## 2685   15/01/2013  2
## 2686   15/02/2000  2
## 2687   15/02/2002  2
## 2688   15/02/2005  2
## 2689   15/02/2010  2
## 2690   15/02/2011  2
## 2691   15/03/2000  2
## 2692   15/03/2006  2
## 2693   15/03/2007  2
## 2694   15/03/2012  2
## 2695   15/04/1997  2
## 2696   15/04/2003  2
## 2697   15/04/2008  2
## 2698   15/04/2011  2
## 2699   15/04/2013  2
## 2700   15/05/2000  2
## 2701   15/06/1998  2
## 2702   15/06/2000  2
## 2703   15/06/2005  2
## 2704   15/07/2003  2
## 2705   15/07/2004  2
## 2706   15/08/2007  2
## 2707   15/09/1997  2
## 2708   15/09/2000  2
## 2709   15/09/2008  2
## 2710   15/09/2010  2
## 2711   15/10/2008  2
## 2712   15/11/2007  2
## 2713   15/12/2000  2
## 2714   15/12/2003  2
## 2715   15/12/2005  2
## 2716   15/12/2010  2
## 2717   16/01/1997  2
## 2718   16/01/2008  2
## 2719   16/01/2009  2
## 2720   16/02/1999  2
## 2721   16/02/2000  2
## 2722   16/02/2007  2
## 2723   16/02/2009  2
## 2724   16/02/2010  2
## 2725   16/03/2010  2
## 2726   16/04/2003  2
## 2727   16/04/2010  2
## 2728   16/04/2013  2
## 2729   16/05/2005  2
## 2730   16/05/2007  2
## 2731   16/05/2012  2
## 2732   16/06/2000  2
## 2733   16/06/2003  2
## 2734   16/06/2006  2
## 2735   16/06/2009  2
## 2736   16/06/2010  2
## 2737   16/07/1997  2
## 2738   16/07/2002  2
## 2739   16/07/2004  2
## 2740   16/08/2001  2
## 2741   16/08/2013  2
## 2742   16/10/1997  2
## 2743   16/10/1998  2
## 2744   16/10/2002  2
## 2745   16/10/2003  2
## 2746   16/10/2007  2
## 2747   16/10/2008  2
## 2748   16/10/2012  2
## 2749   16/11/2007  2
## 2750   16/11/2009  2
## 2751   16/11/2012  2
## 2752   16/12/2003  2
## 2753   16/12/2004  2
## 2754   16/12/2005  2
## 2755   17/01/1997  2
## 2756   17/01/2007  2
## 2757   17/01/2013  2
## 2758   17/02/1998  2
## 2759   17/02/2005  2
## 2760   17/03/1998  2
## 2761   17/03/2003  2
## 2762   17/04/2006  2
## 2763   17/05/1999  2
## 2764   17/05/2001  2
## 2765   17/05/2005  2
## 2766   17/06/1997  2
## 2767   17/06/2004  2
## 2768   17/06/2005  2
## 2769   17/06/2008  2
## 2770   17/06/2011  2
## 2771   17/06/2013  2
## 2772   17/07/1997  2
## 2773   17/07/1998  2
## 2774   17/08/1998  2
## 2775   17/09/1997  2
## 2776   17/10/2002  2
## 2777   17/10/2003  2
## 2778   17/10/2011  2
## 2779   17/10/2012  2
## 2780   17/11/1997  2
## 2781   17/11/2004  2
## 2782   17/11/2008  2
## 2783   17/11/2009  2
## 2784   17/12/1999  2
## 2785   17/12/2003  2
## 2786   17/12/2008  2
## 2787   17/12/2012  2
## 2788   18/01/2006  2
## 2789   18/01/2012  2
## 2790   18/02/2005  2
## 2791   18/02/2010  2
## 2792   18/03/1998  2
## 2793   18/03/1999  2
## 2794   18/03/2009  2
## 2795   18/03/2011  2
## 2796   18/03/2013  2
## 2797   18/04/1996  2
## 2798   18/04/2007  2
## 2799   18/04/2011  2
## 2800   18/05/2009  2
## 2801   18/05/2012  2
## 2802   18/06/1996  2
## 2803   18/06/1998  2
## 2804   18/06/2002  2
## 2805   18/06/2007  2
## 2806   18/07/2001  2
## 2807   18/07/2007  2
## 2808   18/07/2011  2
## 2809   18/07/2012  2
## 2810   18/08/1998  2
## 2811   18/08/2006  2
## 2812   18/08/2010  2
## 2813   18/08/2011  2
## 2814   18/09/1996  2
## 2815   18/09/1997  2
## 2816   18/09/2001  2
## 2817   18/09/2009  2
## 2818   18/09/2013  2
## 2819   18/10/1996  2
## 2820   18/10/2001  2
## 2821   18/10/2004  2
## 2822   18/10/2011  2
## 2823   18/11/1998  2
## 2824   18/11/2004  2
## 2825   19/01/1998  2
## 2826   19/01/1999  2
## 2827   19/01/2012  2
## 2828   19/02/1998  2
## 2829   19/02/2002  2
## 2830   19/02/2004  2
## 2831   19/02/2008  2
## 2832   19/02/2009  2
## 2833   19/03/1998  2
## 2834   19/03/2010  2
## 2835   19/03/2012  2
## 2836   19/04/1999  2
## 2837   19/04/2000  2
## 2838   19/04/2011  2
## 2839   19/04/2012  2
## 2840   19/05/1998  2
## 2841   19/05/2003  2
## 2842   19/05/2010  2
## 2843   19/06/1996  2
## 2844   19/06/1998  2
## 2845   19/06/2000  2
## 2846   19/06/2002  2
## 2847   19/06/2003  2
## 2848   19/06/2006  2
## 2849   19/06/2007  2
## 2850   19/06/2009  2
## 2851   19/07/2002  2
## 2852   19/07/2006  2
## 2853   19/07/2007  2
## 2854   19/07/2011  2
## 2855   19/08/1999  2
## 2856   19/08/2004  2
## 2857   19/08/2009  2
## 2858   19/08/2011  2
## 2859   19/09/2002  2
## 2860   19/09/2007  2
## 2861   19/09/2008  2
## 2862   19/09/2013  2
## 2863   19/10/1999  2
## 2864   19/10/2000  2
## 2865   19/10/2010  2
## 2866   19/11/1999  2
## 2867   19/12/2003  2
## 2868   19/12/2006  2
## 2869   19/12/2012  2
## 2870   20/01/2000  2
## 2871   20/01/2003  2
## 2872   20/01/2006  2
## 2873   20/01/2011  2
## 2874   20/02/2006  2
## 2875   20/03/2008  2
## 2876   20/03/2013  2
## 2877   20/04/2001  2
## 2878   20/04/2007  2
## 2879   20/05/2014  2
## 2880   20/06/1997  2
## 2881   20/06/2000  2
## 2882   20/06/2003  2
## 2883   20/06/2011  2
## 2884   20/06/2012  2
## 2885   20/07/1998  2
## 2886   20/07/1999  2
## 2887   20/07/2005  2
## 2888   20/07/2008  2
## 2889   20/07/2009  2
## 2890   20/07/2010  2
## 2891   20/08/1997  2
## 2892   20/08/2001  2
## 2893   20/08/2002  2
## 2894   20/08/2004  2
## 2895   20/08/2010  2
## 2896   20/08/2013  2
## 2897   20/09/2004  2
## 2898   20/09/2006  2
## 2899   20/10/1999  2
## 2900   20/10/2008  2
## 2901   20/10/2011  2
## 2902   20/11/1998  2
## 2903   20/11/2000  2
## 2904   20/11/2002  2
## 2905   20/11/2003  2
## 2906   20/11/2006  2
## 2907   20/11/2007  2
## 2908   20/11/2012  2
## 2909   20/12/2001  2
## 2910   20/12/2004  2
## 2911   21/01/1997  2
## 2912   21/01/2005  2
## 2913   21/01/2011  2
## 2914   21/02/2001  2
## 2915   21/02/2002  2
## 2916   21/02/2003  2
## 2917   21/02/2005  2
## 2918   21/02/2007  2
## 2919   21/02/2008  2
## 2920   21/02/2011  2
## 2921   21/03/2011  2
## 2922   21/04/2001  2
## 2923   21/04/2006  2
## 2924   21/04/2009  2
## 2925   21/05/2002  2
## 2926   21/05/2003  2
## 2927   21/05/2008  2
## 2928   21/05/2012  2
## 2929   21/06/1999  2
## 2930   21/06/2005  2
## 2931   21/06/2006  2
## 2932   21/06/2010  2
## 2933   21/07/2009  2
## 2934   21/08/1998  2
## 2935   21/10/1998  2
## 2936   21/10/1999  2
## 2937   21/10/2002  2
## 2938   21/10/2004  2
## 2939   21/10/2008  2
## 2940   21/10/2011  2
## 2941   21/11/2002  2
## 2942   21/11/2003  2
## 2943   21/11/2005  2
## 2944   21/11/2011  2
## 2945   21/12/2006  2
## 2946   21/12/2009  2
## 2947   21/12/2010  2
## 2948   22/01/2001  2
## 2949   22/02/2008  2
## 2950   22/02/2011  2
## 2951   22/03/2002  2
## 2952   22/03/2013  2
## 2953   22/04/1998  2
## 2954   22/04/2008  2
## 2955   22/04/2013  2
## 2956   22/05/2009  2
## 2957   22/06/2007  2
## 2958   22/06/2009  2
## 2959   22/06/2011  2
## 2960   22/07/2003  2
## 2961   22/08/2005  2
## 2962   22/09/2005  2
## 2963   22/09/2011  2
## 2964   22/10/1997  2
## 2965   22/10/2007  2
## 2966   22/10/2008  2
## 2967   22/11/1996  2
## 2968   22/12/1997  2
## 2969   22/12/1999  2
## 2970   22/12/2008  2
## 2971   23/01/2003  2
## 2972   23/01/2006  2
## 2973   23/01/2012  2
## 2974   23/03/2005  2
## 2975   23/03/2011  2
## 2976   23/04/1997  2
## 2977   23/04/1998  2
## 2978   23/05/1997  2
## 2979   23/05/2005  2
## 2980   23/05/2006  2
## 2981   23/05/2011  2
## 2982   23/06/1998  2
## 2983   23/06/2011  2
## 2984   23/06/2014  2
## 2985   23/07/2002  2
## 2986   23/07/2009  2
## 2987   23/08/2004  2
## 2988   23/09/1996  2
## 2989   23/09/2008  2
## 2990   23/09/2009  2
## 2991   23/10/1996  2
## 2992   23/10/2000  2
## 2993   23/10/2002  2
## 2994   23/10/2009  2
## 2995   23/11/1998  2
## 2996   23/11/1999  2
## 2997   23/11/2009  2
## 2998   23/12/2003  2
## 2999   23/12/2004  2
## 3000   24/01/2005  2
## 3001   24/01/2007  2
## 3002   24/01/2013  2
## 3003   24/02/1998  2
## 3004   24/02/1999  2
## 3005   24/02/2006  2
## 3006   24/02/2014  2
## 3007   24/03/2000  2
## 3008   24/03/2003  2
## 3009   24/03/2010  2
## 3010   24/04/1996  2
## 3011   24/04/2008  2
## 3012   24/04/2009  2
## 3013   24/04/2013  2
## 3014   24/05/2005  2
## 3015   24/05/2006  2
## 3016   24/05/2013  2
## 3017   24/06/2011  2
## 3018   24/07/2009  2
## 3019   24/08/1998  2
## 3020   24/09/2007  2
## 3021   24/09/2009  2
## 3022   24/10/1997  2
## 3023   24/11/2004  2
## 3024   25/01/2006  2
## 3025   25/01/2013  2
## 3026   25/02/1997  2
## 3027   25/02/2003  2
## 3028   25/02/2009  2
## 3029   25/02/2011  2
## 3030   25/04/2000  2
## 3031   25/04/2005  2
## 3032   25/04/2011  2
## 3033   25/04/2012  2
## 3034   25/04/2013  2
## 3035   25/05/2001  2
## 3036   25/05/2004  2
## 3037   25/06/2004  2
## 3038   25/07/2002  2
## 3039   25/07/2008  2
## 3040   25/08/1998  2
## 3041   25/08/1999  2
## 3042   25/08/2006  2
## 3043   25/08/2009  2
## 3044   25/09/2001  2
## 3045   25/09/2003  2
## 3046   25/09/2004  2
## 3047   25/09/2012  2
## 3048   25/10/1999  2
## 3049   25/10/2001  2
## 3050   25/10/2005  2
## 3051   25/10/2007  2
## 3052   25/10/2011  2
## 3053   25/10/2012  2
## 3054   25/10/2013  2
## 3055   25/11/2002  2
## 3056   26/01/1999  2
## 3057   26/01/2010  2
## 3058   26/02/1999  2
## 3059   26/02/2002  2
## 3060   26/02/2013  2
## 3061   26/03/1999  2
## 3062   26/03/2009  2
## 3063   26/03/2013  2
## 3064   26/04/2004  2
## 3065   26/05/1998  2
## 3066   26/05/1999  2
## 3067   26/05/2006  2
## 3068   26/05/2009  2
## 3069   26/05/2011  2
## 3070   26/06/2008  2
## 3071   26/07/2002  2
## 3072   26/07/2005  2
## 3073   26/07/2006  2
## 3074   26/07/2012  2
## 3075   26/08/1996  2
## 3076   26/08/1997  2
## 3077   26/08/1998  2
## 3078   26/08/2004  2
## 3079   26/08/2008  2
## 3080   26/08/2009  2
## 3081   26/09/2001  2
## 3082   26/09/2007  2
## 3083   26/09/2008  2
## 3084   26/09/2013  2
## 3085   26/10/2006  2
## 3086   26/11/1996  2
## 3087   26/11/1997  2
## 3088   26/11/2002  2
## 3089   26/11/2012  2
## 3090   27/01/2005  2
## 3091   27/01/2012  2
## 3092   27/02/1997  2
## 3093   27/02/1998  2
## 3094   27/02/2004  2
## 3095   27/02/2006  2
## 3096   27/02/2007  2
## 3097   27/02/2008  2
## 3098   27/03/2003  2
## 3099   27/03/2012  2
## 3100   27/03/2013  2
## 3101   27/04/2007  2
## 3102   27/04/2010  2
## 3103   27/05/2004  2
## 3104   27/05/2008  2
## 3105   27/05/2009  2
## 3106   27/05/2010  2
## 3107   27/05/2011  2
## 3108   27/06/2005  2
## 3109   27/06/2011  2
## 3110   27/07/2000  2
## 3111   27/07/2005  2
## 3112   27/07/2007  2
## 3113   27/07/2009  2
## 3114   27/08/1997  2
## 3115   27/08/2009  2
## 3116   27/09/2000  2
## 3117   27/09/2006  2
## 3118   27/09/2010  2
## 3119   27/09/2011  2
## 3120   27/09/2012  2
## 3121   27/10/2000  2
## 3122   27/10/2006  2
## 3123   27/10/2010  2
## 3124   27/11/2000  2
## 3125   27/11/2012  2
## 3126   27/12/2005  2
## 3127   27/12/2013  2
## 3128   28/01/1997  2
## 3129   28/01/2000  2
## 3130   28/01/2003  2
## 3131   28/01/2008  2
## 3132   28/01/2009  2
## 3133   28/02/2002  2
## 3134   28/02/2013  2
## 3135   28/04/1999  2
## 3136   28/04/2000  2
## 3137   28/04/2006  2
## 3138   28/04/2008  2
## 3139   28/04/2009  2
## 3140   28/04/2010  2
## 3141   28/04/2011  2
## 3142   28/05/1999  2
## 3143   28/05/2003  2
## 3144   28/05/2009  2
## 3145   28/05/2010  2
## 3146   28/06/2011  2
## 3147   28/06/2013  2
## 3148   28/07/1998  2
## 3149   28/07/2008  2
## 3150   28/08/2000  2
## 3151   28/08/2008  2
## 3152   28/08/2013  2
## 3153   28/09/2004  2
## 3154   28/09/2007  2
## 3155   28/09/2012  2
## 3156   28/11/2012  2
## 3157   28/12/1998  2
## 3158   28/12/1999  2
## 3159   28/12/2005  2
## 3160   28/12/2010  2
## 3161   28/12/2012  2
## 3162   29/03/1999  2
## 3163   29/03/2005  2
## 3164   29/03/2012  2
## 3165   29/04/1998  2
## 3166   29/04/2010  2
## 3167   29/05/1998  2
## 3168   29/05/2009  2
## 3169   29/05/2012  2
## 3170   29/06/2001  2
## 3171   29/06/2007  2
## 3172   29/06/2011  2
## 3173   29/07/1997  2
## 3174   29/07/2004  2
## 3175   29/07/2010  2
## 3176   29/08/2002  2
## 3177   29/09/2003  2
## 3178   29/10/1997  2
## 3179   29/11/2000  2
## 3180   29/11/2004  2
## 3181   29/11/2005  2
## 3182   29/12/1997  2
## 3183   29/12/2000  2
## 3184   29/12/2009  2
## 3185   29/12/2010  2
## 3186   29/12/2011  2
## 3187   30/01/2002  2
## 3188   30/03/1998  2
## 3189   30/03/2006  2
## 3190   30/03/2007  2
## 3191   30/03/2011  2
## 3192   30/04/1997  2
## 3193   30/04/2007  2
## 3194   30/04/2012  2
## 3195   30/05/2002  2
## 3196   30/05/2003  2
## 3197   30/06/2003  2
## 3198   30/06/2005  2
## 3199   30/06/2006  2
## 3200   30/07/1996  2
## 3201   30/07/1997  2
## 3202   30/07/1998  2
## 3203   30/07/2003  2
## 3204   30/07/2010  2
## 3205   30/08/1999  2
## 3206   30/08/2005  2
## 3207   30/08/2006  2
## 3208   30/08/2012  2
## 3209   30/09/1997  2
## 3210   30/09/2005  2
## 3211   30/10/1996  2
## 3212   30/10/2001  2
## 3213   30/10/2002  2
## 3214   30/10/2006  2
## 3215   30/10/2013  2
## 3216   30/12/1997  2
## 3217   30/12/2004  2
## 3218   30/12/2010  2
## 3219   30/12/2013  2
## 3220   31/01/1997  2
## 3221   31/01/2013  2
## 3222   31/03/2000  2
## 3223   31/03/2011  2
## 3224   31/03/2014  2
## 3225   31/05/2002  2
## 3226   31/05/2007  2
## 3227   31/07/1996  2
## 3228   31/07/1998  2
## 3229   31/07/2006  2
## 3230   31/08/2001  2
## 3231   31/08/2012  2
## 3232   31/10/2000  2
## 3233   31/10/2001  2
## 3234   31/10/2007  2
## 3235   31/10/2008  2
## 3236   31/12/1998  2
## 3237   31/12/2002  2
## 3238   01/02/2006  1
## 3239   01/03/2001  1
## 3240   01/03/2012  1
## 3241   01/04/2002  1
## 3242   01/04/2009  1
## 3243   01/05/1998  1
## 3244   01/05/2013  1
## 3245   01/06/1999  1
## 3246   01/06/2007  1
## 3247   01/06/2012  1
## 3248   01/07/2010  1
## 3249   01/08/2001  1
## 3250   01/08/2002  1
## 3251   01/09/2000  1
## 3252   01/09/2011  1
## 3253   01/10/2003  1
## 3254   01/10/2010  1
## 3255   01/11/2002  1
## 3256   01/11/2008  1
## 3257   01/11/2011  1
## 3258   01/12/1998  1
## 3259   02/01/1998  1
## 3260   02/01/2004  1
## 3261   02/01/2014  1
## 3262   02/02/2010  1
## 3263   02/03/1998  1
## 3264   02/03/2003  1
## 3265   02/03/2012  1
## 3266   02/04/1998  1
## 3267   02/04/2003  1
## 3268   02/04/2010  1
## 3269   02/05/2008  1
## 3270   02/05/2011  1
## 3271   02/05/2012  1
## 3272   02/06/2006  1
## 3273   02/06/2009  1
## 3274   02/07/2000  1
## 3275   02/07/2012  1
## 3276   02/08/2002  1
## 3277   02/08/2004  1
## 3278   02/09/1999  1
## 3279   02/09/2008  1
## 3280   02/09/2010  1
## 3281   02/09/2011  1
## 3282   02/10/1998  1
## 3283   02/10/2006  1
## 3284   02/10/2009  1
## 3285   02/11/2010  1
## 3286   02/12/1997  1
## 3287   02/12/2008  1
## 3288   02/12/2013  1
## 3289   03/01/2000  1
## 3290   03/01/2004  1
## 3291   03/01/2007  1
## 3292   03/02/2000  1
## 3293   03/02/2006  1
## 3294   03/03/2003  1
## 3295   03/03/2007  1
## 3296   03/04/2000  1
## 3297   03/04/2009  1
## 3298   03/04/2013  1
## 3299   03/05/2006  1
## 3300   03/05/2009  1
## 3301   03/06/1998  1
## 3302   03/07/1996  1
## 3303   03/07/2002  1
## 3304   03/07/2006  1
## 3305   03/07/2007  1
## 3306   03/07/2008  1
## 3307   03/08/2010  1
## 3308   03/09/1986  1
## 3309   03/09/2004  1
## 3310   03/10/1997  1
## 3311   03/10/1999  1
## 3312   03/10/2000  1
## 3313   03/10/2002  1
## 3314   03/11/1999  1
## 3315   03/11/2000  1
## 3316   03/11/2010  1
## 3317   03/12/2007  1
## 3318   04/01/1999  1
## 3319   04/01/2005  1
## 3320   04/01/2006  1
## 3321   04/01/2007  1
## 3322   04/01/2008  1
## 3323   04/01/2012  1
## 3324   04/02/1998  1
## 3325   04/02/2000  1
## 3326   04/02/2004  1
## 3327   04/02/2009  1
## 3328   04/02/2013  1
## 3329   04/03/1999  1
## 3330   04/04/2003  1
## 3331   04/04/2011  1
## 3332   04/05/1996  1
## 3333   04/06/1996  1
## 3334   04/06/1999  1
## 3335   04/06/2004  1
## 3336   04/06/2009  1
## 3337   04/06/2010  1
## 3338   04/08/1998  1
## 3339   04/08/2004  1
## 3340   04/09/1998  1
## 3341   04/10/2005  1
## 3342   04/10/2013  1
## 3343   04/11/1998  1
## 3344   04/11/2002  1
## 3345   04/11/2009  1
## 3346   04/11/2010  1
## 3347   04/12/2008  1
## 3348   05/01/1999  1
## 3349   05/01/2004  1
## 3350   05/01/2007  1
## 3351   05/01/2009  1
## 3352   05/01/2011  1
## 3353   05/02/2002  1
## 3354   05/03/1999  1
## 3355   05/03/2007  1
## 3356   05/03/2009  1
## 3357   05/04/2001  1
## 3358   05/04/2010  1
## 3359   05/05/1998  1
## 3360   05/05/2004  1
## 3361   05/05/2005  1
## 3362   05/05/2006  1
## 3363   05/06/1997  1
## 3364   05/06/2002  1
## 3365   05/06/2009  1
## 3366   05/07/1996  1
## 3367   05/07/2001  1
## 3368   05/07/2002  1
## 3369   05/07/2005  1
## 3370   05/07/2008  1
## 3371   05/08/1996  1
## 3372   05/08/2003  1
## 3373   05/08/2004  1
## 3374   05/08/2005  1
## 3375   05/08/2013  1
## 3376   05/09/1997  1
## 3377   05/09/2008  1
## 3378   05/10/2005  1
## 3379   05/10/2012  1
## 3380   05/11/1996  1
## 3381   05/11/1999  1
## 3382   05/11/2010  1
## 3383   05/12/1996  1
## 3384   05/12/2001  1
## 3385   05/12/2005  1
## 3386   05/12/2006  1
## 3387   05/12/2011  1
## 3388   06/01/1997  1
## 3389   06/01/2000  1
## 3390   06/01/2010  1
## 3391   06/01/2014  1
## 3392   06/02/1998  1
## 3393   06/02/2003  1
## 3394   06/02/2004  1
## 3395   06/03/2006  1
## 3396   06/04/2006  1
## 3397   06/05/1998  1
## 3398   06/05/2004  1
## 3399   06/06/1996  1
## 3400   06/06/2003  1
## 3401   06/06/2005  1
## 3402   06/06/2011  1
## 3403   06/07/2000  1
## 3404   06/07/2007  1
## 3405   06/07/2011  1
## 3406   06/07/2012  1
## 3407   06/08/1999  1
## 3408   06/08/2002  1
## 3409   06/08/2009  1
## 3410   06/08/2010  1
## 3411   06/09/2006  1
## 3412   06/10/1999  1
## 3413   06/10/2004  1
## 3414   06/10/2009  1
## 3415   06/10/2010  1
## 3416   06/11/2004  1
## 3417   06/11/2006  1
## 3418   06/11/2009  1
## 3419   06/12/1996  1
## 3420   06/12/2004  1
## 3421   06/12/2006  1
## 3422   06/12/2011  1
## 3423   07/01/1999  1
## 3424   07/01/2000  1
## 3425   07/01/2001  1
## 3426   07/01/2002  1
## 3427   07/01/2003  1
## 3428   07/01/2004  1
## 3429   07/01/2008  1
## 3430   07/01/2013  1
## 3431   07/02/2008  1
## 3432   07/03/1999  1
## 3433   07/04/1998  1
## 3434   07/04/2006  1
## 3435   07/04/2011  1
## 3436   07/05/2001  1
## 3437   07/06/1999  1
## 3438   07/06/2002  1
## 3439   07/06/2014  1
## 3440   07/07/1996  1
## 3441   07/07/1997  1
## 3442   07/07/2004  1
## 3443   07/08/2007  1
## 3444   07/09/2006  1
## 3445   07/09/2012  1
## 3446   07/10/1997  1
## 3447   07/10/1998  1
## 3448   07/10/2003  1
## 3449   07/10/2005  1
## 3450   07/10/2009  1
## 3451   07/11/2001  1
## 3452   07/12/1998  1
## 3453   07/12/2001  1
## 3454   07/12/2012  1
## 3455   08/01/2007  1
## 3456   08/01/2009  1
## 3457   08/01/2014  1
## 3458   08/02/2007  1
## 3459   08/02/2011  1
## 3460   08/03/2001  1
## 3461   08/03/2005  1
## 3462   08/04/2002  1
## 3463   08/04/2010  1
## 3464   08/05/1997  1
## 3465   08/05/2000  1
## 3466   08/05/2004  1
## 3467   08/05/2007  1
## 3468   08/06/2005  1
## 3469   08/06/2006  1
## 3470   08/06/2009  1
## 3471   08/07/1999  1
## 3472   08/07/2003  1
## 3473   08/07/2004  1
## 3474   08/07/2013  1
## 3475   08/08/2006  1
## 3476   08/09/2000  1
## 3477   08/10/2009  1
## 3478   08/11/1999  1
## 3479   08/11/2005  1
## 3480   08/11/2012  1
## 3481   08/12/1999  1
## 3482   08/12/2009  1
## 3483   09/01/1997  1
## 3484   09/01/2006  1
## 3485   09/01/2013  1
## 3486   09/02/2007  1
## 3487   09/02/2009  1
## 3488   09/04/1997  1
## 3489   09/04/1998  1
## 3490   09/04/1999  1
## 3491   09/04/2001  1
## 3492   09/04/2009  1
## 3493   09/04/2012  1
## 3494   09/04/2014  1
## 3495   09/05/2011  1
## 3496   09/06/1999  1
## 3497   09/06/2004  1
## 3498   09/06/2010  1
## 3499   09/07/2003  1
## 3500   09/07/2004  1
## 3501   09/08/2002  1
## 3502   09/08/2005  1
## 3503   09/09/1996  1
## 3504   09/09/2007  1
## 3505   09/10/1998  1
## 3506   09/10/2003  1
## 3507   09/10/2004  1
## 3508   09/10/2012  1
## 3509   09/11/1998  1
## 3510   09/11/1999  1
## 3511   09/11/2005  1
## 3512   09/12/1997  1
## 3513   09/12/2002  1
## 3514   09/12/2009  1
## 3515   10/02/2001  1
## 3516   10/02/2010  1
## 3517   10/04/2003  1
## 3518   10/05/2002  1
## 3519   10/05/2010  1
## 3520   10/07/2003  1
## 3521   10/07/2009  1
## 3522   10/07/2010  1
## 3523   10/09/2001  1
## 3524   10/09/2002  1
## 3525   10/11/1998  1
## 3526   10/11/2000  1
## 3527   10/12/2004  1
## 3528   11/01/1999  1
## 3529   11/01/2002  1
## 3530   11/01/2010  1
## 3531   11/01/2011  1
## 3532   11/02/1999  1
## 3533   11/02/2003  1
## 3534   11/03/2000  1
## 3535   11/03/2008  1
## 3536   11/03/2011  1
## 3537   11/04/2000  1
## 3538   11/05/1999  1
## 3539   11/05/2012  1
## 3540   11/06/2001  1
## 3541   11/06/2004  1
## 3542   11/06/2007  1
## 3543   11/06/2012  1
## 3544   11/06/2014  1
## 3545   11/07/2002  1
## 3546   11/07/2003  1
## 3547   11/07/2011  1
## 3548   11/08/1997  1
## 3549   11/08/2000  1
## 3550   11/08/2004  1
## 3551   11/08/2008  1
## 3552   11/09/1998  1
## 3553   11/09/2001  1
## 3554   11/10/2004  1
## 3555   11/10/2006  1
## 3556   11/10/2007  1
## 3557   11/11/1995  1
## 3558   11/11/1996  1
## 3559   11/11/2006  1
## 3560   11/11/2009  1
## 3561   11/11/2010  1
## 3562   11/11/2011  1
## 3563   11/11/2013  1
## 3564   11/12/1998  1
## 3565   11/12/2000  1
## 3566   11/12/2007  1
## 3567   11/12/2008  1
## 3568   11/12/2009  1
## 3569   12/01/2004  1
## 3570   12/01/2008  1
## 3571   12/02/1998  1
## 3572   12/02/2000  1
## 3573   12/02/2001  1
## 3574   12/02/2009  1
## 3575   12/02/2013  1
## 3576   12/02/2014  1
## 3577   12/03/1997  1
## 3578   12/03/1998  1
## 3579   12/04/2000  1
## 3580   12/04/2011  1
## 3581   12/05/2000  1
## 3582   12/06/1999  1
## 3583   12/06/2002  1
## 3584   12/06/2003  1
## 3585   12/06/2009  1
## 3586   12/07/2000  1
## 3587   12/07/2002  1
## 3588   12/08/2013  1
## 3589   12/09/2005  1
## 3590   12/09/2006  1
## 3591   12/09/2008  1
## 3592   12/09/2012  1
## 3593   12/11/1997  1
## 3594   12/11/1998  1
## 3595   12/11/2000  1
## 3596   12/11/2002  1
## 3597   12/12/2005  1
## 3598   12/12/2008  1
## 3599   13/01/2003  1
## 3600   13/01/2010  1
## 3601   13/02/2007  1
## 3602   13/02/2009  1
## 3603   13/02/2013  1
## 3604   13/03/2009  1
## 3605   13/03/2013  1
## 3606   13/04/2000  1
## 3607   13/04/2008  1
## 3608   13/05/1997  1
## 3609   13/05/2003  1
## 3610   13/05/2009  1
## 3611   13/05/2203  1
## 3612   13/06/1997  1
## 3613   13/06/2003  1
## 3614   13/06/2013  1
## 3615   13/07/2007  1
## 3616   13/08/1996  1
## 3617   13/08/1997  1
## 3618   13/08/2002  1
## 3619   13/08/2012  1
## 3620   13/09/2007  1
## 3621   13/09/2010  1
## 3622   13/10/1997  1
## 3623   13/10/1999  1
## 3624   13/10/2008  1
## 3625   13/10/2009  1
## 3626   13/11/2001  1
## 3627   13/11/2009  1
## 3628   13/11/2013  1
## 3629   13/12/2002  1
## 3630   13/12/2004  1
## 3631   14/01/2000  1
## 3632   14/01/2002  1
## 3633   14/01/2008  1
## 3634   14/01/2009  1
## 3635   14/01/2013  1
## 3636   14/02/2006  1
## 3637   14/02/2014  1
## 3638   14/03/1997  1
## 3639   14/03/2007  1
## 3640   14/03/2014  1
## 3641   14/04/2005  1
## 3642   14/04/2006  1
## 3643   14/04/2007  1
## 3644   14/04/2010  1
## 3645   14/04/2014  1
## 3646   14/05/1998  1
## 3647   14/05/2004  1
## 3648   14/05/2013  1
## 3649   14/07/2010  1
## 3650   14/08/2001  1
## 3651   14/08/2003  1
## 3652   14/08/2006  1
## 3653   14/08/2007  1
## 3654   14/09/2001  1
## 3655   14/09/2006  1
## 3656   14/09/2010  1
## 3657   14/10/1997  1
## 3658   14/10/1998  1
## 3659   14/10/2002  1
## 3660   14/11/2005  1
## 3661   14/11/2006  1
## 3662   14/11/2007  1
## 3663   14/12/1999  1
## 3664   14/12/2001  1
## 3665   14/12/2005  1
## 3666   15/01/1997  1
## 3667   15/01/1998  1
## 3668   15/01/2002  1
## 3669   15/01/2007  1
## 3670   15/02/2001  1
## 3671   15/02/2008  1
## 3672   15/02/2012  1
## 3673   15/02/2014  1
## 3674   15/03/2001  1
## 3675   15/03/2004  1
## 3676   15/03/2005  1
## 3677   15/03/2013  1
## 3678   15/04/2002  1
## 3679   15/04/2004  1
## 3680   15/04/2005  1
## 3681   15/05/2001  1
## 3682   15/05/2006  1
## 3683   15/05/2009  1
## 3684   15/06/2001  1
## 3685   15/06/2004  1
## 3686   15/06/2006  1
## 3687   15/06/2009  1
## 3688   15/07/2002  1
## 3689   15/07/2009  1
## 3690   15/07/2010  1
## 3691   15/07/2011  1
## 3692   15/07/2013  1
## 3693   15/08/1996  1
## 3694   15/08/2000  1
## 3695   15/08/2002  1
## 3696   15/08/2005  1
## 3697   15/08/2008  1
## 3698   15/09/1999  1
## 3699   15/09/2006  1
## 3700   15/09/2009  1
## 3701   15/10/2007  1
## 3702   15/10/2010  1
## 3703   15/11/1996  1
## 3704   15/11/2005  1
## 3705   15/11/2010  1
## 3706   15/12/1999  1
## 3707   15/12/2009  1
## 3708   16/01/2001  1
## 3709   16/01/2003  1
## 3710   16/02/2005  1
## 3711   16/02/2006  1
## 3712   16/03/2000  1
## 3713   16/03/2011  1
## 3714   16/04/1999  1
## 3715   16/04/2004  1
## 3716   16/04/2007  1
## 3717   16/05/2008  1
## 3718   16/05/2011  1
## 3719   16/06/1998  1
## 3720   16/06/2007  1
## 3721   16/06/2011  1
## 3722   16/07/1996  1
## 3723   16/07/1999  1
## 3724   16/07/2001  1
## 3725   16/07/2008  1
## 3726   16/08/1999  1
## 3727   16/08/2002  1
## 3728   16/08/2007  1
## 3729   16/09/1999  1
## 3730   16/10/2013  1
## 3731   16/11/2001  1
## 3732   16/11/2005  1
## 3733   16/11/2010  1
## 3734   16/12/1998  1
## 3735   16/12/2007  1
## 3736   16/12/2008  1
## 3737   16/12/2009  1
## 3738   16/12/2010  1
## 3739   17/01/2000  1
## 3740   17/01/2006  1
## 3741   17/02/2000  1
## 3742   17/02/2010  1
## 3743   17/03/2004  1
## 3744   17/03/2009  1
## 3745   17/03/2011  1
## 3746   17/03/2012  1
## 3747   17/04/2009  1
## 3748   17/04/2013  1
## 3749   17/04/2014  1
## 3750   17/05/2002  1
## 3751   17/06/1999  1
## 3752   17/06/2002  1
## 3753   17/07/2006  1
## 3754   17/07/2007  1
## 3755   17/07/2008  1
## 3756   17/07/2013  1
## 3757   17/08/2001  1
## 3758   17/08/2009  1
## 3759   17/09/2002  1
## 3760   17/09/2003  1
## 3761   17/09/2007  1
## 3762   17/09/2008  1
## 3763   17/09/2010  1
## 3764   17/09/2013  1
## 3765   17/10/1997  1
## 3766   17/10/2008  1
## 3767   17/11/1999  1
## 3768   17/11/2003  1
## 3769   17/11/2006  1
## 3770   17/12/2001  1
## 3771   17/12/2006  1
## 3772   17/12/2013  1
## 3773   18/01/1999  1
## 3774   18/01/2002  1
## 3775   18/01/2007  1
## 3776   18/02/2009  1
## 3777   18/02/2011  1
## 3778   18/02/2014  1
## 3779   18/03/2002  1
## 3780   18/03/2008  1
## 3781   18/04/1997  1
## 3782   18/04/2005  1
## 3783   18/04/2012  1
## 3784   18/04/2013  1
## 3785   18/05/1998  1
## 3786   18/05/2004  1
## 3787   18/05/2005  1
## 3788   18/06/1997  1
## 3789   18/06/1999  1
## 3790   18/06/2012  1
## 3791   18/07/2002  1
## 3792   18/07/2004  1
## 3793   18/07/2005  1
## 3794   18/08/1999  1
## 3795   18/08/2004  1
## 3796   18/09/2006  1
## 3797   18/09/2007  1
## 3798   18/09/2033  1
## 3799   18/10/2012  1
## 3800   18/11/2008  1
## 3801   18/11/2009  1
## 3802   18/12/1997  1
## 3803   18/12/2008  1
## 3804   18/12/2009  1
## 3805   19/01/2004  1
## 3806   19/01/2005  1
## 3807   19/01/2009  1
## 3808   19/01/2010  1
## 3809   19/03/2001  1
## 3810   19/03/2006  1
## 3811   19/03/2009  1
## 3812   19/04/2002  1
## 3813   19/04/2010  1
## 3814   19/04/2014  1
## 3815   19/05/2009  1
## 3816   19/05/2014  1
## 3817   19/06/2008  1
## 3818   19/06/2012  1
## 3819   19/07/2004  1
## 3820   19/07/2005  1
## 3821   19/07/2012  1
## 3822   19/08/1997  1
## 3823   19/08/2002  1
## 3824   19/09/2005  1
## 3825   19/10/2001  1
## 3826   19/10/2009  1
## 3827   19/10/2011  1
## 3828   19/11/1998  1
## 3829   19/11/2010  1
## 3830   19/11/2012  1
## 3831   19/12/2005  1
## 3832   19/12/2008  1
## 3833   20/01/1997  1
## 3834   20/01/1999  1
## 3835   20/01/2004  1
## 3836   20/02/1998  1
## 3837   20/02/2003  1
## 3838   20/02/2009  1
## 3839   20/03/1998  1
## 3840   20/03/2003  1
## 3841   20/03/2006  1
## 3842   20/03/2007  1
## 3843   20/03/2012  1
## 3844   20/04/2006  1
## 3845   20/04/2009  1
## 3846   20/04/2010  1
## 3847   20/05/2003  1
## 3848   20/06/2006  1
## 3849   20/07/2001  1
## 3850   20/07/2012  1
## 3851   20/08/2003  1
## 3852   20/08/2007  1
## 3853   20/09/2002  1
## 3854   20/09/2008  1
## 3855   20/10/1997  1
## 3856   20/10/2004  1
## 3857   20/10/2010  1
## 3858   20/12/2006  1
## 3859   20/12/2011  1
## 3860   21/01/2000  1
## 3861   21/01/2009  1
## 3862   21/01/2014  1
## 3863   21/01/9996  1
## 3864   21/03/2001  1
## 3865   21/03/2002  1
## 3866   21/03/2003  1
## 3867   21/03/2007  1
## 3868   21/04/1998  1
## 3869   21/04/2003  1
## 3870   21/04/2004  1
## 3871   21/04/2005  1
## 3872   21/04/2010  1
## 3873   21/05/2007  1
## 3874   21/06/2007  1
## 3875   21/06/2013  1
## 3876   21/07/1998  1
## 3877   21/07/2000  1
## 3878   21/07/2001  1
## 3879   21/07/2003  1
## 3880   21/07/2011  1
## 3881   21/07/9997  1
## 3882   21/08/2002  1
## 3883   21/08/2012  1
## 3884   21/09/2001  1
## 3885   21/09/2007  1
## 3886   21/09/2009  1
## 3887   21/09/2010  1
## 3888   21/09/2011  1
## 3889   21/09/2012  1
## 3890   21/11/1997  1
## 3891   21/11/2001  1
## 3892   21/12/1999  1
## 3893   21/12/2000  1
## 3894   21/12/2001  1
## 3895   21/12/2011  1
## 3896   22/01/1998  1
## 3897   22/01/2002  1
## 3898   22/01/2007  1
## 3899   22/01/2009  1
## 3900   22/01/2010  1
## 3901   22/02/1999  1
## 3902   22/02/2000  1
## 3903   22/02/2006  1
## 3904   22/02/2007  1
## 3905   22/02/2009  1
## 3906   22/03/2001  1
## 3907   22/03/2005  1
## 3908   22/03/2010  1
## 3909   22/04/2002  1
## 3910   22/05/1998  1
## 3911   22/05/2001  1
## 3912   22/05/2008  1
## 3913   22/06/1998  1
## 3914   22/07/2011  1
## 3915   22/08/2012  1
## 3916   22/09/1997  1
## 3917   22/09/2008  1
## 3918   22/10/2009  1
## 3919   22/10/2010  1
## 3920   22/11/1999  1
## 3921   22/12/1998  1
## 3922   22/12/2000  1
## 3923   22/12/2011  1
## 3924   23/01/2008  1
## 3925   23/01/2014  1
## 3926   23/02/1998  1
## 3927   23/02/1999  1
## 3928   23/02/2000  1
## 3929   23/02/2005  1
## 3930   23/02/2007  1
## 3931   23/02/2009  1
## 3932   23/03/1999  1
## 3933   23/03/2008  1
## 3934   23/04/1996  1
## 3935   23/04/2004  1
## 3936   23/04/2010  1
## 3937   23/05/2012  1
## 3938   23/05/2013  1
## 3939   23/05/2202  1
## 3940   23/06/1994  1
## 3941   23/06/2003  1
## 3942   23/06/2004  1
## 3943   23/06/2005  1
## 3944   23/06/2008  1
## 3945   23/06/2009  1
## 3946   23/07/1996  1
## 3947   23/07/1999  1
## 3948   23/07/2003  1
## 3949   23/07/2010  1
## 3950   23/08/1997  1
## 3951   23/08/2005  1
## 3952   23/08/2010  1
## 3953   23/09/2002  1
## 3954   23/09/2004  1
## 3955   23/09/2010  1
## 3956   23/10/2001  1
## 3957   23/10/2006  1
## 3958   23/11/2011  1
## 3959   23/12/1998  1
## 3960   23/12/1999  1
## 3961   23/12/2002  1
## 3962   23/12/2011  1
## 3963   23/12/2013  1
## 3964   24/01/2000  1
## 3965   24/01/2001  1
## 3966   24/01/2008  1
## 3967   24/01/2011  1
## 3968   24/02/2008  1
## 3969   24/02/2010  1
## 3970   24/03/2001  1
## 3971   24/03/2004  1
## 3972   24/03/2008  1
## 3973   24/03/2009  1
## 3974   24/03/2011  1
## 3975   24/04/1998  1
## 3976   24/04/2007  1
## 3977   24/05/2010  1
## 3978   24/06/1998  1
## 3979   24/06/2003  1
## 3980   24/06/2005  1
## 3981   24/06/2008  1
## 3982   24/07/2000  1
## 3983   24/08/2010  1
## 3984   24/08/2011  1
## 3985   24/08/2012  1
## 3986   24/09/2011  1
## 3987   24/10/1996  1
## 3988   24/10/2002  1
## 3989   24/10/2006  1
## 3990   24/10/2011  1
## 3991   24/11/2008  1
## 3992   24/11/2010  1
## 3993   25/01/2012  1
## 3994   25/01/2014  1
## 3995   25/03/2002  1
## 3996   25/03/2008  1
## 3997   25/03/2010  1
## 3998   25/04/1997  1
## 3999   25/04/2002  1
## 4000   25/05/2005  1
## 4001   25/05/2006  1
## 4002   25/05/2007  1
## 4003   25/05/2008  1
## 4004   25/06/1998  1
## 4005   25/07/2005  1
## 4006   25/07/2012  1
## 4007   25/08/2001  1
## 4008   25/08/2004  1
## 4009   25/08/2011  1
## 4010   25/09/1997  1
## 4011   25/09/1999  1
## 4012   25/09/2000  1
## 4013   25/10/2010  1
## 4014   25/11/2009  1
## 4015   26/01/2000  1
## 4016   26/01/2006  1
## 4017   26/02/1998  1
## 4018   26/02/2008  1
## 4019   26/02/2009  1
## 4020   26/03/1997  1
## 4021   26/03/2007  1
## 4022   26/04/1999  1
## 4023   26/04/2001  1
## 4024   26/04/2012  1
## 4025   26/05/2005  1
## 4026   26/05/2008  1
## 4027   26/05/2014  1
## 4028   26/06/2009  1
## 4029   26/07/2007  1
## 4030   26/08/1999  1
## 4031   26/08/2002  1
## 4032   26/09/2002  1
## 4033   26/09/2003  1
## 4034   26/10/2005  1
## 4035   26/10/2009  1
## 4036   26/11/2001  1
## 4037   26/11/2013  1
## 4038   26/12/2001  1
## 4039   27/01/2000  1
## 4040   27/01/2003  1
## 4041   27/01/2004  1
## 4042   27/01/2006  1
## 4043   27/01/2011  1
## 4044   27/02/2002  1
## 4045   27/02/2009  1
## 4046   27/03/1998  1
## 4047   27/03/2000  1
## 4048   27/03/2008  1
## 4049   27/03/2009  1
## 4050   27/05/2003  1
## 4051   27/07/2011  1
## 4052   27/07/2012  1
## 4053   27/08/1998  1
## 4054   27/08/2007  1
## 4055   27/08/2010  1
## 4056   27/08/2012  1
## 4057   27/09/2004  1
## 4058   27/10/2003  1
## 4059   27/10/2011  1
## 4060   27/11/2001  1
## 4061   27/12/2001  1
## 4062   27/12/2002  1
## 4063   28/01/1999  1
## 4064   28/01/2002  1
## 4065   28/01/2004  1
## 4066   28/01/2006  1
## 4067   28/02/2000  1
## 4068   28/02/2003  1
## 4069   28/02/2005  1
## 4070   28/02/2006  1
## 4071   28/03/2005  1
## 4072   28/03/2006  1
## 4073   28/03/2011  1
## 4074   28/04/1998  1
## 4075   28/06/1996  1
## 4076   28/06/2002  1
## 4077   28/07/2001  1
## 4078   28/08/1998  1
## 4079   28/08/2007  1
## 4080   28/08/2009  1
## 4081   28/08/2012  1
## 4082   28/10/1998  1
## 4083   28/10/1999  1
## 4084   28/10/2005  1
## 4085   28/10/2010  1
## 4086   28/11/2005  1
## 4087   28/11/2007  1
## 4088   28/12/2006  1
## 4089   28/12/2007  1
## 4090   28/12/2009  1
## 4091   28/12/2011  1
## 4092   29/01/1997  1
## 4093   29/01/2001  1
## 4094   29/01/2014  1
## 4095   29/02/2008  1
## 4096   29/03/2001  1
## 4097   29/03/2004  1
## 4098   29/03/2006  1
## 4099   29/03/2010  1
## 4100   29/03/2011  1
## 4101   29/04/1996  1
## 4102   29/04/1999  1
## 4103   29/04/2005  1
## 4104   29/04/2009  1
## 4105   29/04/2011  1
## 4106   29/05/1997  1
## 4107   29/05/2007  1
## 4108   29/06/2005  1
## 4109   29/06/2006  1
## 4110   29/06/2008  1
## 4111   29/07/2003  1
## 4112   29/07/2009  1
## 4113   29/08/2011  1
## 4114   29/09/1998  1
## 4115   29/09/1999  1
## 4116   29/09/2007  1
## 4117   29/10/2001  1
## 4118   29/10/2002  1
## 4119   29/10/2010  1
## 4120   29/11/2006  1
## 4121   29/11/2012  1
## 4122   29/12/2006  1
## 4123   30/01/1998  1
## 4124   30/01/2007  1
## 4125   30/03/1999  1
## 4126   30/03/2000  1
## 4127   30/03/2009  1
## 4128   30/04/1998  1
## 4129   30/04/2004  1
## 4130   30/04/2009  1
## 4131   30/04/2014  1
## 4132   30/05/2009  1
## 4133   30/06/2004  1
## 4134   30/06/2008  1
## 4135   30/07/2002  1
## 4136   30/08/2007  1
## 4137   30/08/2010  1
## 4138   30/09/1999  1
## 4139   30/09/2002  1
## 4140   30/09/2004  1
## 4141   30/09/2008  1
## 4142   30/09/2011  1
## 4143   30/10/2000  1
## 4144   30/10/2003  1
## 4145   30/10/2007  1
## 4146   30/11/1999  1
## 4147   30/11/2005  1
## 4148   30/11/2006  1
## 4149   30/11/2009  1
## 4150   30/11/2010  1
## 4151   30/12/1996  1
## 4152   30/12/2005  1
## 4153   30/12/2009  1
## 4154   31/01/2001  1
## 4155   31/01/2003  1
## 4156   31/01/2004  1
## 4157   31/01/2011  1
## 4158   31/03/2009  1
## 4159   31/05/2004  1
## 4160   31/05/2006  1
## 4161   31/05/2012  1
## 4162   31/07/2003  1
## 4163   31/07/2009  1
## 4164   31/07/2012  1
## 4165   31/08/2005  1
## 4166   31/08/2010  1
## 4167   31/08/2011  1
## 4168   31/10/2005  1
## 4169   31/10/2011  1
## 4170   31/12/2003  1
## 4171   31/12/2004  1
count(dfmerge, ClaimantAge_at_DOI, sort=TRUE)
##    ClaimantAge_at_DOI    n
## 1                NULL 3651
## 2                  48  268
## 3                  41  263
## 4                  46  262
## 5                  43  260
## 6                  28  259
## 7                  42  248
## 8                  44  248
## 9                  50  248
## 10                 33  238
## 11                 47  238
## 12                 53  237
## 13                 54  236
## 14                 38  234
## 15                 45  234
## 16                 37  232
## 17                 52  232
## 18                 34  230
## 19                 25  225
## 20                 36  223
## 21                 26  221
## 22                 35  217
## 23                 39  217
## 24                 51  214
## 25                 29  211
## 26                 55  210
## 27                 32  208
## 28                 27  205
## 29                 49  202
## 30                 40  198
## 31                 30  195
## 32                 31  195
## 33                 57  178
## 34                 23  173
## 35                 24  173
## 36                 56  170
## 37                 22  156
## 38                 58  152
## 39                 59  148
## 40                 60  132
## 41                 21  114
## 42                 61   99
## 43                 62   93
## 44                 20   77
## 45                 19   63
## 46                 63   61
## 47                 64   57
## 48                 65   34
## 49                 67   28
## 50                 66   19
## 51                 18   16
## 52                 68   14
## 53                 69   11
## 54                  0   10
## 55                 71    9
## 56                 73    9
## 57                 74    9
## 58                 72    8
## 59                 75    7
## 60                 17    5
## 61                 70    5
## 62                 76    5
## 63                 77    5
## 64                 -1    4
## 65                 16    4
## 66                  6    4
## 67                  1    2
## 68                  5    2
## 69                 78    2
## 70               -193    1
## 71              -2956    1
## 72                -45    1
## 73                 -5    1
## 74              -5973    1
## 75              -7161    1
## 76              -7951    1
## 77                 11    1
## 78                 12    1
## 79                 13    1
## 80                  4    1
## 81                  7    1
## 82                 79    1
## 83                 81    1
## 84                 87    1
count(dfmerge, Gender, sort=TRUE)
##          Gender    n
## 1          Male 7540
## 2        Female 5199
## 3 Not Available   93
count(dfmerge, ClaimantType, sort=TRUE)
##   ClaimantType     n
## 1 Medical Only 10189
## 2    Indemnity  1672
## 3  Report Only   971
count(dfmerge, InjuryNature, sort=TRUE)
##                                                   InjuryNature    n
## 1                                                    Contusion 4040
## 2                                                 Foreign Body 2473
## 3                                                   Laceration 1541
## 4                             All Other Specific Injuries, Noc 1504
## 5                                                   Concussion  366
## 6                                                 Inflammation  340
## 7                                           No Physical Injury  294
## 8                                                     Puncture  294
## 9                                                     Fracture  291
## 10                                                        Burn  269
## 11                                           Non-Standard Code  177
## 12                             Multiple Physical Injuries Only  149
## 13                                                      Strain  138
## 14                                                  Dermatitis  124
## 15                      Poisoning?Chemical (Other Than Metals)  100
## 16                                                   Infection   99
## 17                                       Respiratory Disorders   86
## 18                                  Hearing Loss Or Impairment   82
## 19                                          Contagious Disease   67
## 20                                             Loss of Hearing   66
## 21                                               Not Available   59
## 22                                                     Syncope   43
## 23                                                 Vision Loss   37
## 24                                                      Sprain   29
## 25                                                   Severance   26
## 26                                               Mental Stress   25
## 27             Poisoning?General (NOT OD or Cumulative Injury)   19
## 28                                                    Crushing   12
## 29                                                     Rupture   12
## 30                  All Other Occupational Disease Injury, NOC   11
## 31                                                 Dislocation   11
## 32                                           Dust Disease, NOC    9
## 33                                                   Radiation    8
## 34                                            Heat Prostration    7
## 35 Multiple Injuries Including Both Physical and Psychological    6
## 36                                              Electric Shock    5
## 37                                                      Cancer    4
## 38                                             Mental Disorder    3
## 39                                                  Asbestosis    2
## 40                                                Asphyxiation    1
## 41                                                  Black Lung    1
## 42                                      Carpal Tunnel Syndrome    1
## 43                                                   Silicosis    1
count(dfmerge, BodyPartRegion, sort=TRUE)
##   BodyPartRegion     n
## 1           Head 12832
count(dfmerge, BodyPart, sort=TRUE)
##                BodyPart    n
## 1                  Eyes 5083
## 2  Multiple Head Injury 2906
## 3          Facial Bones 1073
## 4      Soft Tissue-Head  956
## 5                 Skull  750
## 6                 Mouth  620
## 7                  Nose  556
## 8                Ear(S)  550
## 9                 Teeth  292
## 10                Brain   46

Observaciones:
1. Hay pagos que aparecen en números negativos (BillReviewALE, Hospital, PhysicianOutpatient).
2. Los máximos en los pagos son números muy altos que están bastante alejados de la media.
3. ClaimStatus aparece como caracter cuando su respuesta es binaria.
4. AverageWeeklyWage aparece como caracter cuando su respuesta es numérica, lo mismo sucede con ClaimantAge_at_DOI. Esto pasa porque en celdas donde no hay número dice “NULL”.
5. Las variables de fecha (IncidentDate, ReturnToWorkDate, ClaimantOpenedDate, ClaimantClosedDate, EmployerNotificationDate, ReceivedDate) aparecen como caracter. Esto podría deberse a que hay celdas con “#¡VALOR!” o NAs.

1.3 Arreglar la Base de Datos

A continuación se procederá a arreglar la base de datos, como volver las fechas a “as.Date” y agregar dos columnas faltantes: Tiempo de Procesamiento y Costo Total Incurrido.

Actualización #2.
Hay 2 observaciones nuevas:
1. Hay 369 NAs en la fecha de cierre del reclamo. Se eliminarán esas filas, ya que el 50% pertenece a registros que se abrieron ese mismo año y cambiar los NAs a la fecha de hoy va a sesgar y dar resultados erróneos.
2. Hay fechas que están actuando mal porque están registradas como si el reclamo se hubiera cerrado mucho antes de siquiera abrirse. Se eliminarán esas filas para que se dé un modelo más certero.
3. En el Costo Total Incurrido hay números negativos, por lo que se eliminarán al ser atípicos.

# Se usará la función as.Date para 2 columnas: 
# ClaimantOpenedDate y ClaimantClosedDate. 

dfmerge$ClaimantOpenedDate <- as.Date(dfmerge$ClaimantOpenedDate, format="%d/%m/%y")
dfmerge$ClaimantClosedDate <- as.Date(dfmerge$ClaimantClosedDate, format="%d/%m/%y")

# Teniendo el formato correcto, se agregará la columna de 
# diferencia de fecha para obtener el tiempo tomado en procesarse.

dfmerge$TiempoProcesamiento <- difftime(dfmerge$ClaimantClosedDate, dfmerge$ClaimantOpenedDate, units="days")

dfmerge$TiempoProcesamiento <- as.numeric(dfmerge$TiempoProcesamiento)

# Actualización 2: Se filtrarán para únicamente tener 
# tiempos de 0 y +.

dfmerge <- subset(dfmerge, TiempoProcesamiento >= 0)

# Se agregará la columna del costo total de los reclamos.
dfmerge$CostoTotalIncurrido <- dfmerge$TotalReserves + dfmerge$TotalPaid - dfmerge$TotalRecovery

# Actualización 2: Se filtrarán para únicamente tener 
# costos de 0 y +.

dfmerge <- subset(dfmerge, CostoTotalIncurrido >= 0)

# Otros

dfmerge$IsDenied <- as.factor(dfmerge$IsDenied)
dfmerge$ClaimantAge_at_DOI <- as.factor(dfmerge$ClaimantAge_at_DOI)

summary(dfmerge)
##     ClaimID         BillReviewALE        Hospital        PhysicianOutpatient
##  Min.   :  777635   Min.   : -456.0   Min.   :     0.0   Min.   :  -549.5   
##  1st Qu.:  824348   1st Qu.:   16.0   1st Qu.:   181.4   1st Qu.:   109.5   
##  Median :  848710   Median :   24.6   Median :   535.7   Median :   216.1   
##  Mean   :10860161   Mean   :  195.5   Mean   :  3498.3   Mean   :  1650.8   
##  3rd Qu.:22722877   3rd Qu.:   87.9   3rd Qu.:  2097.8   3rd Qu.:   712.8   
##  Max.   :62203645   Max.   :16208.9   Max.   :138842.9   Max.   :310220.3   
##                     NA's   :7070      NA's   :7026       NA's   :5572       
##        Rx              TotalPaid        TotalReserves TotalRecovery     
##  Min.   :     0.00   Min.   :     0.0   Min.   :0     Min.   :    0.00  
##  1st Qu.:    21.82   1st Qu.:     0.0   1st Qu.:0     1st Qu.:    0.00  
##  Median :    54.11   Median :   128.3   Median :0     Median :    0.00  
##  Mean   :  1432.84   Mean   :  1846.1   Mean   :0     Mean   :   32.82  
##  3rd Qu.:   181.42   3rd Qu.:   382.6   3rd Qu.:0     3rd Qu.:    0.00  
##  Max.   :157475.29   Max.   :581165.9   Max.   :0     Max.   :80049.48  
##  NA's   :7154                                                           
##  IndemnityPaid        OtherPaid        ClaimStatus        IncidentDate      
##  Min.   :     0.0   Min.   :     0.0   Length:8036        Length:8036       
##  1st Qu.:     0.0   1st Qu.:     0.0   Class :character   Class :character  
##  Median :     0.0   Median :   127.8   Mode  :character   Mode  :character  
##  Mean   :   840.1   Mean   :  1006.0                                        
##  3rd Qu.:     0.0   3rd Qu.:   375.7                                        
##  Max.   :276874.9   Max.   :379288.2                                        
##                                                                             
##  IncidentDescription ReturnToWorkDate   AverageWeeklyWage  ClaimantOpenedDate  
##  Length:8036         Length:8036        Length:8036        Min.   :2019-01-02  
##  Class :character    Class :character   Class :character   1st Qu.:2019-09-18  
##  Mode  :character    Mode  :character   Mode  :character   Median :2020-02-17  
##                                                            Mean   :2020-01-18  
##                                                            3rd Qu.:2020-05-19  
##                                                            Max.   :2020-12-31  
##                                                                                
##  ClaimantClosedDate   EmployerNotificationDate ReceivedDate       IsDenied
##  Min.   :2020-01-02   Length:8036              Length:8036        0:7811  
##  1st Qu.:2020-03-31   Class :character         Class :character   1: 225  
##  Median :2020-05-29   Mode  :character         Mode  :character           
##  Mean   :2020-06-25                                                       
##  3rd Qu.:2020-09-21                                                       
##  Max.   :2020-12-31                                                       
##                                                                           
##  ClaimantAge_at_DOI    Gender          ClaimantType       InjuryNature      
##  NULL   :2662       Length:8036        Length:8036        Length:8036       
##  48     : 171       Class :character   Class :character   Class :character  
##  28     : 166       Mode  :character   Mode  :character   Mode  :character  
##  41     : 160                                                               
##  42     : 153                                                               
##  43     : 153                                                               
##  (Other):4571                                                               
##  BodyPartRegion       BodyPart         TiempoProcesamiento CostoTotalIncurrido
##  Length:8036        Length:8036        Min.   :  0.0       Min.   :     0.0   
##  Class :character   Class :character   1st Qu.: 62.0       1st Qu.:     0.0   
##  Mode  :character   Mode  :character   Median :114.0       Median :   127.8   
##                                        Mean   :158.2       Mean   :  1813.3   
##                                        3rd Qu.:232.2       3rd Qu.:   378.9   
##                                        Max.   :685.0       Max.   :581165.9   
## 
LS0tDQp0aXRsZTogIkFjdGl2aWRhZCBNZWRpbyBUw6lybWlubyINCmF1dGhvcjogIkxlaXNseSBDcnV6Ig0KZGF0ZTogIjAxLTEwLTIwMjMiDQpvdXRwdXQ6IA0KICBodG1sX2RvY3VtZW50Og0KICAgIHRvYzogVFJVRQ0KICAgIHRvY19mbG9hdDogVFJVRQ0KICAgIGNvZGVfZG93bmxvYWQ6IFRSVUUNCiAgICB0aGVtZTogInlldGkiDQogICAgaGlnaGxpZ2h0OiAidGFuZ28iDQotLS0NCg0KIVtdKEM6XFxVc2Vyc1xca2FyaW1cXE9uZURyaXZlXFxQaWN0dXJlc1xcZ2lmZW1wcmVzYS5naWYpDQoNCiMgPHNwYW4gc3R5bGU9ImNvbG9yOmRhcmtibHVlOyI+Q29udGV4dG88L3NwYW4+ICANClVuYSBlbXByZXNhIGRlIENhcm9saW5hIGRlbCBOb3J0ZSwgRUUuVVUuLCBnZXN0aW9uYSByZWNsYW1hY2lvbmVzIGRlIGNvbXBlbnNhY2lvbmVzIGxhYm9yYWxlcyBwYXJhIHN1cyBjbGllbnRlcy4gQSBjb250aW51YWNpw7NuIHNlIHByb3ZlZSB1biBhbsOhbGlzaXMgZGUgZGF0b3MgcGFyYSBpZGVudGlmaWNhciBsb3MgcHJpbmNpcGFsZXMgY29zdG9zIGRlIGxvcyByZWNsYW1vcyB5IGVsIHRpZW1wbyBuZWNlc2FyaW8gcGFyYSBwcm9jZXNhcmxvcywgYnJpbmRhbmRvIGFzw60gdW4gcHJvZ3JhbWEgcXVlIHZ1ZWx2YSBtw6FzIGVmaWNpZW50ZSBlbCB0cmFiYWpvIHkgY29udmllcnRhIGEgbGEgZW1wcmVzYSBlbiB1bmEgbcOhcyByZWNlcHRpdmEgaGFjaWEgbG9zIHJlY2xhbWFudGVzLiAgDQoNCkN1YW5kbyB1biB0cmFiYWphZG9yIGRlIHVuYSBlbXByZXNhIHBhcnRpY2lwYW50ZSBzZSBsZXNpb25hIGVuIHN1IHRyYWJham8sIHB1ZWRlIHByZXNlbnRhciB1biByZWNsYW1vIHBhcmEgY3VicmlyIGxvcyBnYXN0b3MgbcOpZGljb3MgeSBsYSBww6lyZGlkYSBkZSBzYWxhcmlvcyByZWxhY2lvbmFkb3MgY29uIGxhIGxlc2nDs24uIEN1YW5kbyBzZSBwcmVzZW50YSB1biByZWNsYW1vIHBvciBwcmltZXJhIHZleiwgc2UgY3JlYSB1biBpZGVudGlmaWNhZG9yIMO6bmljbyBwYXJhIGVsIHJlY2xhbW8geSBzZSByZWdpc3RyYW4gbG9zIGRldGFsbGVzIGRlbCBtaXNtby4gTG9zIGRldGFsbGVzIGRlbCByZWNsYW1vIHNlIGFjdHVhbGl6YW4gYSBtZWRpZGEgcXVlIHNlIHJlYWxpemFuIHBhZ29zIHBhcmEgcmVzb2x2ZXIgZWwgcmVjbGFtby4gTG9zIHBhZ29zIHB1ZWRlbiByZWFsaXphcnNlIHBvciBkaXZlcnNhcyBhY3RpdmlkYWRlcyByZWxhY2lvbmFkYXMgY29uIGVsIHJlY2xhbW8sIGNvbW8gdmlzaXRhcyBtw6lkaWNhcywgZmFybWFjaWEsIGV0Yy4gIA0KDQojIDxzcGFuIHN0eWxlPSJjb2xvcjpkYXJrYmx1ZTsiPjEuIFByZXBhcmFyIGxhIEJhc2UgZGUgRGF0b3M8L3NwYW4+ICANCg0KIyMgPHNwYW4gc3R5bGU9ImNvbG9yOmxpZ2h0Ymx1ZTsiPjEuMSBUcmFlciBsYXMgQmFzZXMgZGUgRGF0b3M8L3NwYW4+ICANCg0KTGEgZW1wcmVzYSBjdWVudGEgY29uIDIgYmFzZXMgZGUgZGF0b3M6IGxhIHByaW5jaXBhbCBxdWUgY29udGllbmUgbGEgZGVzY3JpcGNpw7NuIGRlIGNhZGEgcmVjbGFtbyB5IGxhIHNlY3VuZGFyaWEgY29uIHRvZGEgbGEgaW5mb3JtYWNpw7NuIGRlIHRyYW5zYWNjaW9uZXMgZWNvbsOzbWljYXMgcmVhbGl6YWRhcy4gQXF1w60gc2UgdmFuIGEgZnVzaW9uYXIgYW1iYXMgYSB0cmF2w6lzIGRlbCBJZGVudGlmaWNhZG9yIGRlbCBSZWNsYW1vLiAgDQoNCmBgYHtyfQ0KdHJhbnNhY3Rpb24gPC0gcmVhZC5jc3YoIkM6XFxVc2Vyc1xca2FyaW1cXE9uZURyaXZlXFxFc2NyaXRvcmlvXFxFamVyY2ljaW9zIFJcXEFjdGl2aWRhZCA0LjEgSW50ZW5zaXZhXFxUcmFuc2FjdGlvbnNTdW1tYXJ5MjAxOC5jc3YiKQ0KY2xhaW1zIDwtIHJlYWQuY3N2KCJDOlxcVXNlcnNcXGthcmltXFxPbmVEcml2ZVxcRXNjcml0b3Jpb1xcRWplcmNpY2lvcyBSXFxBY3RpdmlkYWQgNC4xIEludGVuc2l2YVxcQ2xhaW1zRGF0YTIwMTguY3N2IikNCg0KIyBTZSBqdW50YW4gYW1iYXMgYmFzZXMgY29uICJDbGFpbUlEIiANCmRmbWVyZ2UwIDwtIG1lcmdlKHRyYW5zYWN0aW9uLCBjbGFpbXMsIGJ5ID0gIkNsYWltSUQiLCBhbGwgPSBUUlVFKQ0KYGBgDQoNCiMjIyA8c3BhbiBzdHlsZT0iY29sb3I6bGlnaHRibHVlOyI+RmlsdHJhciBtaSBCYXNlIGRlIERhdG9zPC9zcGFuPg0KDQpBbnRlcyBkZSBjb21lbnphciBhIHByZXBhcmFyIGxhIGJhc2UgZGUgZGF0b3MsIHNlIGluaWNpYXLDoSBjb24gZWwgZmlsdHJvIHBlcnNvbmFsaXphZG8gYXNpZ25hZG8gYSBlc3RlIHRyYWJham8uIExhIGluZGljYWNpw7NuIGRhZGEgZnVlIHRyYWJhamFyIMO6bmljYW1lbnRlIGNvbiBsYSByZWdpw7NuIGRlbCBjdWVycG8gKEJvZHlQYXJ0UmVnaW9uKTogY2FiZXphIChIZWFkKS4gICANCg0KYGBge3J9DQpkZm1lcmdlIDwtIHN1YnNldChkZm1lcmdlMCwgQm9keVBhcnRSZWdpb24gPT0gIkhlYWQiKQ0KYGBgDQoNCiMjIDxzcGFuIHN0eWxlPSJjb2xvcjpsaWdodGJsdWU7Ij4xLjIgRW50ZW5kZXIgbGEgQmFzZSBkZSBEYXRvczwvc3Bhbj4NCg0KYGBge3J9DQpzdW1tYXJ5KGRmbWVyZ2UpDQoNCiMgU2UgZGVzZ2xvc2FuIGxhcyB2YXJpYWJsZXMgZGUgY2FyYWN0ZXIgcGFyYSB0YW1iacOpbiBhbmFsaXphcmxhcy4NCmxpYnJhcnkoZHBseXIpDQoNCmNvdW50KGRmbWVyZ2UsIENsYWltU3RhdHVzLCBzb3J0PVRSVUUpDQpjb3VudChkZm1lcmdlLCBJbmNpZGVudERhdGUsIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIEluY2lkZW50RGVzY3JpcHRpb24sIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIFJldHVyblRvV29ya0RhdGUsIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIEF2ZXJhZ2VXZWVrbHlXYWdlLCBzb3J0PVRSVUUpDQpjb3VudChkZm1lcmdlLCBDbGFpbWFudE9wZW5lZERhdGUsIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIENsYWltYW50Q2xvc2VkRGF0ZSwgc29ydD1UUlVFKQ0KY291bnQoZGZtZXJnZSwgRW1wbG95ZXJOb3RpZmljYXRpb25EYXRlLCBzb3J0PVRSVUUpDQpjb3VudChkZm1lcmdlLCBSZWNlaXZlZERhdGUsIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIENsYWltYW50QWdlX2F0X0RPSSwgc29ydD1UUlVFKQ0KY291bnQoZGZtZXJnZSwgR2VuZGVyLCBzb3J0PVRSVUUpDQpjb3VudChkZm1lcmdlLCBDbGFpbWFudFR5cGUsIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIEluanVyeU5hdHVyZSwgc29ydD1UUlVFKQ0KY291bnQoZGZtZXJnZSwgQm9keVBhcnRSZWdpb24sIHNvcnQ9VFJVRSkNCmNvdW50KGRmbWVyZ2UsIEJvZHlQYXJ0LCBzb3J0PVRSVUUpDQpgYGANCg0KT2JzZXJ2YWNpb25lczogIA0KMS4gSGF5IHBhZ29zIHF1ZSBhcGFyZWNlbiBlbiBuw7ptZXJvcyBuZWdhdGl2b3MgKEJpbGxSZXZpZXdBTEUsIEhvc3BpdGFsLCBQaHlzaWNpYW5PdXRwYXRpZW50KS4gIA0KMi4gTG9zIG3DoXhpbW9zIGVuIGxvcyBwYWdvcyBzb24gbsO6bWVyb3MgbXV5IGFsdG9zIHF1ZSBlc3TDoW4gYmFzdGFudGUgYWxlamFkb3MgZGUgbGEgbWVkaWEuICANCjMuIENsYWltU3RhdHVzIGFwYXJlY2UgY29tbyBjYXJhY3RlciBjdWFuZG8gc3UgcmVzcHVlc3RhIGVzIGJpbmFyaWEuICANCjQuIEF2ZXJhZ2VXZWVrbHlXYWdlIGFwYXJlY2UgY29tbyBjYXJhY3RlciBjdWFuZG8gc3UgcmVzcHVlc3RhIGVzIG51bcOpcmljYSwgbG8gbWlzbW8gc3VjZWRlIGNvbiBDbGFpbWFudEFnZV9hdF9ET0kuIEVzdG8gcGFzYSBwb3JxdWUgZW4gY2VsZGFzIGRvbmRlIG5vIGhheSBuw7ptZXJvIGRpY2UgIk5VTEwiLiAgDQo1LiBMYXMgdmFyaWFibGVzIGRlIGZlY2hhIChJbmNpZGVudERhdGUsIFJldHVyblRvV29ya0RhdGUsIENsYWltYW50T3BlbmVkRGF0ZSwgIENsYWltYW50Q2xvc2VkRGF0ZSwgRW1wbG95ZXJOb3RpZmljYXRpb25EYXRlLCBSZWNlaXZlZERhdGUpIGFwYXJlY2VuIGNvbW8gY2FyYWN0ZXIuIEVzdG8gcG9kcsOtYSBkZWJlcnNlIGEgcXVlIGhheSBjZWxkYXMgY29uICIjwqFWQUxPUiEiIG8gTkFzLiAgICANCg0KIyMgPHNwYW4gc3R5bGU9ImNvbG9yOmxpZ2h0Ymx1ZTsiPjEuMyBBcnJlZ2xhciBsYSBCYXNlIGRlIERhdG9zPC9zcGFuPg0KDQpBIGNvbnRpbnVhY2nDs24gc2UgcHJvY2VkZXLDoSBhIGFycmVnbGFyIGxhIGJhc2UgZGUgZGF0b3MsIGNvbW8gdm9sdmVyIGxhcyBmZWNoYXMgYSAiYXMuRGF0ZSIgeSBhZ3JlZ2FyIGRvcyBjb2x1bW5hcyBmYWx0YW50ZXM6IFRpZW1wbyBkZSBQcm9jZXNhbWllbnRvIHkgQ29zdG8gVG90YWwgSW5jdXJyaWRvLiAgDQoNCkFjdHVhbGl6YWNpw7NuICMyLiAgDQpIYXkgMiBvYnNlcnZhY2lvbmVzIG51ZXZhczogICANCjEuIEhheSAzNjkgTkFzIGVuIGxhIGZlY2hhIGRlIGNpZXJyZSBkZWwgcmVjbGFtby4gU2UgZWxpbWluYXLDoW4gZXNhcyBmaWxhcywgeWEgcXVlIGVsIDUwJSBwZXJ0ZW5lY2UgYSByZWdpc3Ryb3MgcXVlIHNlIGFicmllcm9uIGVzZSBtaXNtbyBhw7FvIHkgY2FtYmlhciBsb3MgTkFzIGEgbGEgZmVjaGEgZGUgaG95IHZhIGEgc2VzZ2FyIHkgZGFyIHJlc3VsdGFkb3MgZXJyw7NuZW9zLiAgIA0KMi4gSGF5IGZlY2hhcyBxdWUgZXN0w6FuIGFjdHVhbmRvIG1hbCBwb3JxdWUgZXN0w6FuIHJlZ2lzdHJhZGFzIGNvbW8gc2kgZWwgcmVjbGFtbyBzZSBodWJpZXJhIGNlcnJhZG8gbXVjaG8gYW50ZXMgZGUgc2lxdWllcmEgYWJyaXJzZS4gU2UgZWxpbWluYXLDoW4gZXNhcyBmaWxhcyBwYXJhIHF1ZSBzZSBkw6kgdW4gbW9kZWxvIG3DoXMgY2VydGVyby4gICANCjMuIEVuIGVsIENvc3RvIFRvdGFsIEluY3VycmlkbyBoYXkgbsO6bWVyb3MgbmVnYXRpdm9zLCBwb3IgbG8gcXVlIHNlIGVsaW1pbmFyw6FuIGFsIHNlciBhdMOtcGljb3MuICAgDQoNCmBgYHtyfQ0KIyBTZSB1c2Fyw6EgbGEgZnVuY2nDs24gYXMuRGF0ZSBwYXJhIDIgY29sdW1uYXM6IA0KIyBDbGFpbWFudE9wZW5lZERhdGUgeSBDbGFpbWFudENsb3NlZERhdGUuIA0KDQpkZm1lcmdlJENsYWltYW50T3BlbmVkRGF0ZSA8LSBhcy5EYXRlKGRmbWVyZ2UkQ2xhaW1hbnRPcGVuZWREYXRlLCBmb3JtYXQ9IiVkLyVtLyV5IikNCmRmbWVyZ2UkQ2xhaW1hbnRDbG9zZWREYXRlIDwtIGFzLkRhdGUoZGZtZXJnZSRDbGFpbWFudENsb3NlZERhdGUsIGZvcm1hdD0iJWQvJW0vJXkiKQ0KDQojIFRlbmllbmRvIGVsIGZvcm1hdG8gY29ycmVjdG8sIHNlIGFncmVnYXLDoSBsYSBjb2x1bW5hIGRlIA0KIyBkaWZlcmVuY2lhIGRlIGZlY2hhIHBhcmEgb2J0ZW5lciBlbCB0aWVtcG8gdG9tYWRvIGVuIHByb2Nlc2Fyc2UuDQoNCmRmbWVyZ2UkVGllbXBvUHJvY2VzYW1pZW50byA8LSBkaWZmdGltZShkZm1lcmdlJENsYWltYW50Q2xvc2VkRGF0ZSwgZGZtZXJnZSRDbGFpbWFudE9wZW5lZERhdGUsIHVuaXRzPSJkYXlzIikNCg0KZGZtZXJnZSRUaWVtcG9Qcm9jZXNhbWllbnRvIDwtIGFzLm51bWVyaWMoZGZtZXJnZSRUaWVtcG9Qcm9jZXNhbWllbnRvKQ0KDQojIEFjdHVhbGl6YWNpw7NuIDI6IFNlIGZpbHRyYXLDoW4gcGFyYSDDum5pY2FtZW50ZSB0ZW5lciANCiMgdGllbXBvcyBkZSAwIHkgKy4NCg0KZGZtZXJnZSA8LSBzdWJzZXQoZGZtZXJnZSwgVGllbXBvUHJvY2VzYW1pZW50byA+PSAwKQ0KDQojIFNlIGFncmVnYXLDoSBsYSBjb2x1bW5hIGRlbCBjb3N0byB0b3RhbCBkZSBsb3MgcmVjbGFtb3MuDQpkZm1lcmdlJENvc3RvVG90YWxJbmN1cnJpZG8gPC0gZGZtZXJnZSRUb3RhbFJlc2VydmVzICsgZGZtZXJnZSRUb3RhbFBhaWQgLSBkZm1lcmdlJFRvdGFsUmVjb3ZlcnkNCg0KIyBBY3R1YWxpemFjacOzbiAyOiBTZSBmaWx0cmFyw6FuIHBhcmEgw7puaWNhbWVudGUgdGVuZXIgDQojIGNvc3RvcyBkZSAwIHkgKy4NCg0KZGZtZXJnZSA8LSBzdWJzZXQoZGZtZXJnZSwgQ29zdG9Ub3RhbEluY3VycmlkbyA+PSAwKQ0KDQojIE90cm9zDQoNCmRmbWVyZ2UkSXNEZW5pZWQgPC0gYXMuZmFjdG9yKGRmbWVyZ2UkSXNEZW5pZWQpDQpkZm1lcmdlJENsYWltYW50QWdlX2F0X0RPSSA8LSBhcy5mYWN0b3IoZGZtZXJnZSRDbGFpbWFudEFnZV9hdF9ET0kpDQoNCnN1bW1hcnkoZGZtZXJnZSkNCmBgYA0KDQoNCg0KDQoNCg0KDQo=