import requests
import lxml.html as lh
import pandas as pd
from bs4 import BeautifulSoup as bs
url="https://www.tdcj.texas.gov/death_row/dr_executed_offenders.html"
#Create a handle, page, to handle the contents of the website
page = requests.get(url)
print(page.status_code) #It should show 200 to verify that I collected the data from the website
200
#Creating the soup
#Using beautiful soups prettify() function to print the data in a readable html format
soup= bs(page.content, "html.parser")
# print(soup.prettify())
# The table we want is in the tag table and class "tdcj_table indent"
table = soup.find("table", class_="tdcj_table indent")
info = table.find("tr")
headers = info.text.split('\n')[1:-1]
headers
['Execution', 'Link', 'Link', 'Last Name', 'First Name', 'TDCJNumber', 'Age', 'Date', 'Race', 'County']
all_info = table.find_all("tr")
all_dics = []
for info in all_info:
row = info.find_all("td")
row_obj = {}
for i,column_value in enumerate(row):
if i == 1:
row_obj.update({column_value.find('a').text : column_value.find('a').get('href')})
elif i == 2:
row_obj.update({column_value.find('a').text : column_value.find('a').get('href')})
else:
row_obj.update({headers[i] : column_value.text})
all_dics.append(row_obj)
# all_dics
df = pd.DataFrame(all_dics)
df
Execution | Offender Information | Last Statement | Last Name | First Name | TDCJNumber | Age | Date | Race | County | Offender Information | Last Statement | Last Statemen | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | 566 | dr_info/halljusten.html | dr_info/halljustenlast.html | Hall | Justen | 999497 | 38 | 11/6/2019 | White | El Paso | NaN | NaN | NaN |
2 | 565 | dr_info/sparksrobert.html | dr_info/sparksrobertlast.html | Sparks | Robert | 999542 | 45 | 9/25/2019 | Black | Dallas | NaN | NaN | NaN |
3 | 564 | dr_info/solizmarkanthony.html | dr_info/solizmarkanthonylast.html | Soliz | Mark | 999571 | 37 | 9/10/2019 | Hispanic | Johnson | NaN | NaN | NaN |
4 | 563 | dr_info/crutsingerbilly.html | dr_info/crutsingerbillylast.html | Crutsinger | Billy | 999459 | 64 | 9/4/2019 | White | Tarrant | NaN | NaN | NaN |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
562 | 5 | dr_info/skillerndoyle.jpg | dr_info/skillerndoylelast.html | Skillern | Doyle | 518 | 49 | 01/16/1985 | White | Lubbock | NaN | NaN | NaN |
563 | 4 | dr_info/barefootthomas.jpg | dr_info/barefootthomaslast.html | Barefoot | Thomas | 621 | 39 | 10/30/1984 | White | Bell | NaN | NaN | NaN |
564 | 3 | dr_info/obryanronald.jpg | dr_info/obryanronaldlast.html | O'Bryan | Ronald | 529 | 39 | 03/31/1984 | White | Harris | NaN | NaN | NaN |
565 | 2 | dr_info/autryjames.html | dr_info/no_last_statement.html | Autry | James | 670 | 29 | 03/14/1984 | White | Jefferson | NaN | NaN | NaN |
566 | 1 | dr_info/brookscharlie.html | dr_info/brookscharlielast.html | Brooks, Jr. | Charlie | 592 | 40 | 12/07/1982 | Black | Tarrant | NaN | NaN | NaN |
567 rows × 13 columns
clean_df = df.copy()[1:]
clean_df = clean_df[clean_df.columns[:-3]]
clean_df
Execution | Offender Information | Last Statement | Last Name | First Name | TDCJNumber | Age | Date | Race | County | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 566 | dr_info/halljusten.html | dr_info/halljustenlast.html | Hall | Justen | 999497 | 38 | 11/6/2019 | White | El Paso |
2 | 565 | dr_info/sparksrobert.html | dr_info/sparksrobertlast.html | Sparks | Robert | 999542 | 45 | 9/25/2019 | Black | Dallas |
3 | 564 | dr_info/solizmarkanthony.html | dr_info/solizmarkanthonylast.html | Soliz | Mark | 999571 | 37 | 9/10/2019 | Hispanic | Johnson |
4 | 563 | dr_info/crutsingerbilly.html | dr_info/crutsingerbillylast.html | Crutsinger | Billy | 999459 | 64 | 9/4/2019 | White | Tarrant |
5 | 562 | dr_info/swearingenlarry.html | dr_info/swearingenlarrylast.html | Swearingen | Larry | 999361 | 48 | 8/21/2019 | White | Montgomery |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
562 | 5 | dr_info/skillerndoyle.jpg | dr_info/skillerndoylelast.html | Skillern | Doyle | 518 | 49 | 01/16/1985 | White | Lubbock |
563 | 4 | dr_info/barefootthomas.jpg | dr_info/barefootthomaslast.html | Barefoot | Thomas | 621 | 39 | 10/30/1984 | White | Bell |
564 | 3 | dr_info/obryanronald.jpg | dr_info/obryanronaldlast.html | O'Bryan | Ronald | 529 | 39 | 03/31/1984 | White | Harris |
565 | 2 | dr_info/autryjames.html | dr_info/no_last_statement.html | Autry | James | 670 | 29 | 03/14/1984 | White | Jefferson |
566 | 1 | dr_info/brookscharlie.html | dr_info/brookscharlielast.html | Brooks, Jr. | Charlie | 592 | 40 | 12/07/1982 | Black | Tarrant |
566 rows × 10 columns
clean_df = df.copy()[1:]
clean_df = clean_df[clean_df.columns[:-3]]
clean_df
Execution | Offender Information | Last Statement | Last Name | First Name | TDCJNumber | Age | Date | Race | County | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 566 | dr_info/halljusten.html | dr_info/halljustenlast.html | Hall | Justen | 999497 | 38 | 11/6/2019 | White | El Paso |
2 | 565 | dr_info/sparksrobert.html | dr_info/sparksrobertlast.html | Sparks | Robert | 999542 | 45 | 9/25/2019 | Black | Dallas |
3 | 564 | dr_info/solizmarkanthony.html | dr_info/solizmarkanthonylast.html | Soliz | Mark | 999571 | 37 | 9/10/2019 | Hispanic | Johnson |
4 | 563 | dr_info/crutsingerbilly.html | dr_info/crutsingerbillylast.html | Crutsinger | Billy | 999459 | 64 | 9/4/2019 | White | Tarrant |
5 | 562 | dr_info/swearingenlarry.html | dr_info/swearingenlarrylast.html | Swearingen | Larry | 999361 | 48 | 8/21/2019 | White | Montgomery |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
562 | 5 | dr_info/skillerndoyle.jpg | dr_info/skillerndoylelast.html | Skillern | Doyle | 518 | 49 | 01/16/1985 | White | Lubbock |
563 | 4 | dr_info/barefootthomas.jpg | dr_info/barefootthomaslast.html | Barefoot | Thomas | 621 | 39 | 10/30/1984 | White | Bell |
564 | 3 | dr_info/obryanronald.jpg | dr_info/obryanronaldlast.html | O'Bryan | Ronald | 529 | 39 | 03/31/1984 | White | Harris |
565 | 2 | dr_info/autryjames.html | dr_info/no_last_statement.html | Autry | James | 670 | 29 | 03/14/1984 | White | Jefferson |
566 | 1 | dr_info/brookscharlie.html | dr_info/brookscharlielast.html | Brooks, Jr. | Charlie | 592 | 40 | 12/07/1982 | Black | Tarrant |
566 rows × 10 columns
# for testing
# clean_df = clean_df[:5]
# for link in clean_df['Last Statement'].tolist():
def get_last_statement(link):
try:
url="https://www.tdcj.texas.gov/death_row/" + link
page = requests.get(url)
soup= bs(page.content, "html.parser")
p_tags = soup.find_all("p")
for p in p_tags:
print
try:
if 'Last Statement' in p.text:
# print(p)
return p.next_sibling.next_sibling.text
except:
return 'no statement'
except:
return 'no link'
clean_df['Last Statement Text'] = clean_df.apply(lambda x: get_last_statement(x['Last Statement']), axis=1)
clean_df
clean_df.to_csv('V1_with_statements.csv')
test_df = clean_df.copy()
def get_last_statement(link):
try:
url="https://www.tdcj.texas.gov/death_row/" + link
page = requests.get(url)
soup= bs(page.content, "html.parser")
tr_tags = soup.find_all("tr")
offender_obj = {}
for t in tr_tags:
# print(t)
info = t.find_all('td')
row_array = []
for i in info:
string = i.text.replace(u'\xa0', u'')
if len(string) > 0:
row_array.append(i.text)
print(row_array)
try:
if len(row_array) > 1:
offender_obj.update({row_array[0]: row_array[1]})
except:
return 'no field'
return offender_obj
except:
return 'no link'
test_df['Offender Info'] = test_df.apply(lambda x: get_last_statement(x['Offender Information']), axis=1)
['Name', 'Hall, Justen Grant'] ['TDCJ Number', '999497'] ['Date of Birth', '06/16/1981'] ['Date Received', '05/11/2005'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '10/28/2002'] ['Age (at the time of Offense)', '21'] ['County', 'El Paso'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′5″'] ['Weight (in Pounds)', '197'] ['Eye Color', 'Hazel'] ['Native County', 'El Paso'] ['Native State', 'Texas'] ['Name', 'Sparks, Robert'] ['TDCJ Number', '999542'] ['Date of Birth', '02/13/1974'] ['Date Received', '01/08/2009'] ['Age (when Received)', '34'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '09/15/2007'] ['Age (at the time of Offense)', '33'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '247'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Soliz, Mark Anthony'] ['TDCJ Number', '999571'] ['Date of Birth', '01/27/1982'] ['Date Received', '03/28/2012'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '06/29/2010'] ['Age (at the time of Offense)', '28'] ['County', 'Johnson'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '177'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas'] ['Name', 'Crutsinger, Billy Jack'] ['TDCJ Number', '999459'] ['Date of Birth', '10/05/1954'] ['Date Received', '10/08/2003'] ['Age (when Received)', '49'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '04/06/2003'] ['Age (at the time of Offense)', '48'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Gray'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '217'] ['Eye Color', 'Green'] ['Native County', 'Tarrant'] ['Native State', 'Texas'] ['Name', 'Larry Ray Swearingen'] ['TDCJ Number', '999361'] ['Date of Birth', '5/21/1971'] ['Date Received', '7/12/2000'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '12/8/1998'] ['Age (at the time of Offense)', '27'] ['County', 'Montgomery'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '194'] ['Eye Color', 'Blue'] ['Native County', 'Montgomery'] ['Native State', 'Texas'] [] ['Name', 'King, John William'] ['TDCJ Number', '999295'] ['Date of Birth', '11/03/1974'] ['Date Received', '02/25/1999'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '06/07/1998'] ['Age (at the time of Offense)', '23'] ['County', 'Jasper'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '198'] ['Eye Color', 'Brown'] ['Native County', 'Atlanta'] ['Native State', 'Georgia']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Braziel, Alvin Avon Jr.'] ['TDCJ Number', '999393'] ['Date of Birth', '3/16/1975'] ['Date Received', '8/9/2001'] ['Age (when Received)', '26'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '9/21/1993'] ['Age (at the time of Offense)', '18'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '166'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Garcia, Joseph Christopher'] ['TDCJ Number', '999441'] ['Date of Birth', '11/06/1971'] ['Date Received', '02/14/2003'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/24/2000'] ['Age (at the time of Offense)', '29'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '202'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Acker, Daniel Clate'] ['TDCJ Number', '999381'] ['Date of Birth', '10/09/1971'] ['Date Received', '04/02/2001'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '03/12/2000'] ['Age (at the time of Offense)', '28'] ['County', 'Hopkins'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '295'] ['Eye Color', 'Brown'] ['Native County', 'Hunt'] ['Native State', 'Texas'] ['Name', 'Clark, Troy'] ['TDCJ Number', '999351'] ['Date of Birth', '9/2/1967'] ['Date Received', '3/31/2000'] ['Age (when Received)', '32'] ['Education Level (Highest Grade Completed)', '6 years'] ['Date of Offense', '5/19/1998'] ['Age (at the time of Offense)', '30'] ['County', 'Smith'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '159'] ['Eye Color', 'Blue'] ['Native County', 'Bexar County'] ['Native State', 'Texas'] ['Name', 'Young, Christopher Anthony'] ['TDCJ Number', '999508'] ['Date of Birth', '09/24/1983'] ['Date Received', '03/31/2006'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '09'] ['Date of Offense', '11/21/2004'] ['Age (at the time of Offense)', '21'] ['County', 'Bexar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 1″'] ['Weight (in Pounds)', '216'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Bible, Danny Paul'] ['TDCJ Number', '999455'] ['Date of Birth', '08/28/1951'] ['Date Received', '07/17/2003'] ['Age (when Received)', '51'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '05/27/1979'] ['Age (at the time of Offense)', '27'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Gray'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '194'] ['Eye Color', 'Blue'] ['Native County', 'Brazoria'] ['Native State', 'Texas'] ['Name', 'Castillo, Juan Edward'] ['TDCJ Number', '999502'] ['Date of Birth', '04/03/1981'] ['Date Received', '09/27/2005'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '12/03/2003'] ['Age (at the time of Offense)', '22'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Davila, Erick Daniel'] ['TDCJ Number', '999545'] ['Date of Birth', '04/04/1987'] ['Date Received', '02/27/2009'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '11th Grade'] ['Date of Offense', '04/06/2008'] ['Age (at the time of Offense)', '21'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '161'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas'] ['Name', 'Rodriguez III, Rosendo'] ['TDCJ Number', '999534'] ['Date of Birth', '03/26/1980'] ['Date Received', '05/14/2008'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '12th Grade'] ['Date of Offense', '09/13/2005'] ['Age (at the time of Offense)', '25'] ['County', 'Lubbock'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '198'] ['Eye Color', 'Brown'] ['Native County', 'Wichita'] ['Native State', 'TX'] ['Name', 'Battaglia, John David'] ['TDCJ Number', '999412'] ['Date of Birth', '08/02/1955'] ['Date Received', '05/01/2002'] ['Age (when Received)', '46'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '05/02/2001'] ['Age (at the time of Offense)', '45'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Grey'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '188'] ['Eye Color', 'Green'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Rayford, William Earl'] ['TDCJ Number', '999371'] ['Date of Birth', '5/21/1953'] ['Date Received', '1/4/2001'] ['Age (when Received)', '47'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '11/16/99'] ['Age (at the time of Offense)', '46'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 4″'] ['Weight (in Pounds)', '179'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Shore, Anthony'] ['TDCJ Number', '999488'] ['Date of Birth', '06/25/1962'] ['Date Received', '11/15/2004'] ['Age (when Received)', '42'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '04/16/1992'] ['Age (at the time of Offense)', '29'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Gray'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '198'] ['Eye Color', 'Brown'] ['Native County', 'Pennington'] ['Native State', 'South Dakota'] ['Name', 'Cardenas, Ruben Ramirez'] ['TDCJ Number', '999275'] ['Date of Birth', '04/07/1970'] ['Date Received', '07/29/1998'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '02/22/1997'] ['Age (at the time of Offense)', '26'] ['County', 'Hidalgo'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '204'] ['Eye Color', 'Brown'] ['Native County', 'Guanajuato'] ['Native State', 'Mexico'] ['Name', 'Preyor, Taichin'] ['TDCJ Number', '999494'] ['Date of Birth', '09/02/1970'] ['Date Received', '03/30/2005'] ['Age (when Received)', '34'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '02/26/2004'] ['Age (at the time of Offense)', '33'] ['County', 'Bexar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '219'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Edwards, Terry'] ['TDCJ Number', '999463'] ['Date of Birth', '08/10/1973'] ['Date Received', '12/04/2003'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '12th grade'] ['Date of Offense', '07/08/2002'] ['Age (at the time of Offense)', '28'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '157'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Wilkins, Christopher'] ['TDCJ Number', '999533'] ['Date of Birth', '09/29/1968'] ['Date Received', '03/12/2008'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12th Grade'] ['Date of Offense', '10/28/2005'] ['Age (at the time of Offense)', '37'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '196 lbs'] ['Eye Color', 'Green'] ['Native County', 'Harris County'] ['Native State', 'Texas'] ['Name', 'Fuller Jr., Barney Ronald'] ['TDCJ Number', '999481'] ['Date of Birth', '08/12/1958'] ['Date Received', '07/21/2004'] ['Age (when Received)', '45'] ['Education Level (Highest Grade Completed)', '09'] ['Date of Offense', '05/14/2003'] ['Age (at the time of Offense)', '44'] ['County', 'Houston'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '225'] ['Eye Color', 'Brown'] ['Native County', 'Summit'] ['Native State', 'Ohio'] ['Name', 'Vasquez, Pablo Lucio'] ['TDCJ Number', '999297'] ['Date of Birth', '08/11/1977'] ['Date Received', '03/30/1999'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '04/18/1998'] ['Age (at the time of Offense)', '20'] ['County', 'Hidalgo'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '174'] ['Eye Color', 'Brown'] ['Native County', 'Dawson'] ['Native State', 'Texas'] ['Name', 'Ward, Adam Kelly'] ['TDCJ Number', '999525'] ['Date of Birth', '08/11/1982'] ['Date Received', '06/27/2007'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', 'Not available.'] ['Date of Offense', '06/13/2005'] ['Age (at the time of Offense)', '22'] ['County', 'Hunt'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '149 lbs.'] ['Eye Color', 'Hazel'] ['Native County', 'Hunt County'] ['Native State', 'Texas'] ['Name', 'Wesbrook, Coy Wayne'] ['TDCJ Number', '999281'] ['Date of Birth', '2/1/58'] ['Date Received', '9/2/98'] ['Age (when Received)', '40'] ['Education Level (Highest Grade Completed)', '8 years'] ['Date of Offense', '11/13/97'] ['Age (at the time of Offense)', '39'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '296'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Freeman, James'] ['TDCJ Number', '999539'] ['Date of Birth', '11/12/1980'] ['Date Received', '11/10/2008'] ['Age (when Received)', '27'] ['Education Level (Highest Grade Completed)', '12th Grade'] ['Date of Offense', '03/17/2007'] ['Age (at the time of Offense)', '26'] ['County', 'Wharton'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '155'] ['Eye Color', 'Brown'] ['Native County', 'Wharton County'] ['Native State', 'Texas'] ['Name', 'Masterson, Richard Allen'] ['TDCJ Number', '999414'] ['Date of Birth', '03/05/1972'] ['Date Received', '05/15/2002'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '6'] ['Date of Offense', '02/09/2001'] ['Age (at the time of Offense)', '28'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '233'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Holiday, Raphael Deon'] ['TDCJ Number', '999419'] ['Date of Birth', '07/20/1979'] ['Date Received', '06/21/2002'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '09/06/2000'] ['Age (at the time of Offense)', '21'] ['County', 'Walker, on change of venue from Madison County'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '194'] ['Eye Color', 'Brown'] ['Native County', 'Grimes'] ['Native State', 'Texas'] ['Name', 'Escamilla, Licho'] ['TDCJ Number', '999432'] ['Date of Birth', '07/03/1982'] ['Date Received', '11/01/2002'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '11/25/2001'] ['Age (at the time of Offense)', '20'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '156'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Garcia, Juan Martin'] ['TDCJ Number', '999360'] ['Date of Birth', '2/18/1980'] ['Date Received', '6/21/2000'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '9/17/1998'] ['Age (at the time of Offense)', '18'] ['County', 'Harris'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '183'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Lopez, Daniel'] ['TDCJ Number', '999555'] ['Date of Birth', '09/15/1987'] ['Date Received', '03/16/2010'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '10th grade'] ['Date of Offense', '03/11/2009'] ['Age (at the time of Offense)', '21'] ['County', 'Nueces'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '140 lbs.'] ['Eye Color', 'Brown'] ['Native County', 'Nueces County'] ['Native State', 'Texas'] ['Name', 'Russeau, Gregory Lynn'] ['TDCJ Number', '999430'] ['Date of Birth', '10/11/1969'] ['Date Received', '10/15/2002'] ['Age (when Received)', '33'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '05/30/2001'] ['Age (at the time of Offense)', '31'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '299'] ['Eye Color', 'Brown'] ['Native County', 'Smith'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Charles, Derrick Dewayne'] ['TDCJ Number', '999451'] ['Date of Birth', '09/06/1982'] ['Date Received', '05/27/2003'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '07/02/2002'] ['Age (at the time of Offense)', '19'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '05′ 9″'] ['Weight (in Pounds)', '179'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Garza, Jr., Manuel'] ['TDCJ Number', '999434'] ['Date of Birth', '08/08/1980'] ['Date Received', '11/08/2002'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '02/02/2001'] ['Age (at the time of Offense)', '20'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '157'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Sprouse, Kent William'] ['TDCJ Number', '999471'] ['Date of Birth', '8/9/1972'] ['Date Received', '3/1/2004'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '10/6/2002'] ['Age (at the time of Offense)', '30'] ['County', 'Ellis'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '222'] ['Eye Color', 'Hazel'] ['Native County', 'Boone'] ['Native State', 'Missouri'] ['Name', 'Vasquez, Manuel'] ['TDCJ Number', '999336'] ['Date of Birth', '06/16/1968'] ['Date Received', '11/30/1999'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '03/19/1998'] ['Age (at the time of Offense)', '29'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '195'] ['Eye Color', 'Brown'] ['Native County', 'Jerome'] ['Native State', 'Idaho'] ['Name', 'Donald Newbury'] ['TDCJ Number', '999403'] ['Date of Birth', '05/18/1962'] ['Date Received', '01/28/2002'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '6'] ['Date of Offense', '12/24/2000'] ['Age (at the time of Offense)', '38'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '215'] ['Eye Color', 'Brown'] ['Native County', 'Bernalillo'] ['Native State', 'New Mexico'] ['Name', 'Ladd, Robert Charles'] ['TDCJ Number', '999237'] ['Date of Birth', '3/19/57'] ['Date Received', '8/29/97'] ['Age (when Received)', '40'] ['Education Level (Highest Grade Completed)', '10 years'] ['Date of Offense', '9/25/96'] ['Age (at the time of Offense)', '39'] ['County', 'Smith'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)'] ['Weight (in Pounds)', '232'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Paredes, Miguel Angel'] ['TDCJ Number', '999400'] ['Date of Birth', '08/08/1982'] ['Date Received', '11/09/2001'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '09/17/2000'] ['Age (at the time of Offense)', '18'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '254'] ['Eye Color', 'Brown'] ['Native County', 'Cook'] ['Native State', 'Illinois'] ['Name', 'Coleman, Lisa'] ['TDCJ Number', '999511'] ['Date of Birth', '10/06/1975'] ['Date Received', '06/22/2006'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '07/26/2004'] ['Age (at the time of Offense)', '28'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Female'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '189'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Villegas, Jr., Jose Luis'] ['TDCJ Number', '999417'] ['Date of Birth', '04/14/1975'] ['Date Received', '05/21/2002'] ['Age (when Received)', '27'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '01/22/2001'] ['Age (at the time of Offense)', '27'] ['County', 'Nueces'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '186'] ['Eye Color', 'Brown'] ['Native County', 'Nueces'] ['Native State', 'Texas'] ['Name', 'Hernandez, Ramiro'] ['TDCJ Number', '999342'] ['Date of Birth', '10/05/1969'] ['Date Received', '02/11/2000'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '4'] ['Date of Offense', '10/15/1997'] ['Age (at the time of Offense)', '28'] ['County', 'Bandera'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 2″'] ['Weight (in Pounds)', '190'] ['Eye Color', 'Brown'] ['Native County', 'Tamaulipas (Mexico)'] ['Native State', 'n/a'] ['Name', 'Tommy Lynn Sells'] ['TDCJ Number', '999367'] ['Date of Birth', '6/28/1964'] ['Date Received', '11/8/2000'] ['Age (when Received)', '36'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '12/31/1999'] ['Age (at the time of Offense)', '35'] ['County', 'Val Verde'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '195'] ['Eye Color', 'Hazel'] ['Native County', 'Alameda'] ['Native State', 'California'] ['Name', 'Doyle, Anthony Dewayne'] ['TDCJ Number', '999478'] ['Date of Birth', '10/16/1984'] ['Date Received', '05/28/2004'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '01/16/2003'] ['Age (at the time of Offense)', '18'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 07″'] ['Weight (in Pounds)', '182'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Jasper, Ray'] ['TDCJ Number', '999341'] ['Date of Birth', '08/25/1980'] ['Date Received', '02/04/2000'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '11/29/1998'] ['Age (at the time of Offense)', '19'] ['County', 'Bexar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '139'] ['Eye Color', 'Brown'] ['Native Country', 'Netherlands'] ['Native State', 'n/a'] ['Name', 'Basso, Suzanne Margaret'] ['TDCJ Number', '999329'] ['Date of Birth', '05/15/1954'] ['Date Received', '10/28/1999'] ['Age (when Received)', '45'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '08/25/1998'] ['Age (at the time of Offense)', '44'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Female'] ['Hair Color', 'Grey'] ['Height (in Feet and Inches)', '5′ 2″'] ['Weight (in Pounds)', '141'] ['Eye Color', 'Blue'] ['Native County', 'Albany'] ['Native State', 'New York']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Martin, Jerry Duane'] ['TDCJ Number', '999552'] ['Date of Birth', '03/28/1970'] ['Date Received', '02/17/2009'] ['Age (when Received)', '38'] ['Education Level (Highest Grade Completed)', '10th Grade'] ['Date of Offense', '09/24/2007'] ['Age (at the time of Offense)', '37'] ['County', 'Leon C/V from Walker'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '169 lbs.'] ['Eye Color', 'Brown'] ['Native County', 'Collin'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Yowell, Michael J.'] ['TDCJ Number', '999334'] ['Date of Birth', '01/25/1970'] ['Date Received', '11/23/1999'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '05/09/1998'] ['Age (at the time of Offense)', '28'] ['County', 'Lubbock'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '188'] ['Eye Color', 'Hazel'] ['Native County', 'Lubbock'] ['Native State', 'Texas'] ['Name', 'Diaz, Arturo Eleazar'] ['TDCJ Number', '999345'] ['Date of Birth', '12/27/1975'] ['Date Received', '2/20/2000'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '04/03/1999'] ['Age (at the time of Offense)', '23'] ['County', 'Hidalgo'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '200'] ['Eye Color', 'Brown'] ['Native County', 'Hidalgo'] ['Native State', 'Texas'] ['Name', 'Garza, Robert'] ['TDCJ Number', '999466'] ['Date of Birth', '05/15/1982'] ['Date Received', '12/18/2003'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '08'] ['Date of Offense', '09/05/2002'] ['Age (at the time of Offense)', '20'] ['County', 'Harris'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '147'] ['Eye Color', 'Brown'] ['Native County', 'Hidalgo Co.'] ['Native State', 'Texas'] ['Name', 'Feldman, Douglas Alan'] ['TDCJ Number', '999326'] ['Date of Birth', '06/19/1958'] ['Date Received', '09/22/1999'] ['Age (when Received)', '41'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '08/25/1998'] ['Age (at the time of Offense)', '40'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '198'] ['Eye Color', 'Blue'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Ross, Vaughn'] ['TDCJ Number', '999429'] ['Date of Birth', '09/04/1971'] ['Date Received', '10/01/2002'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '01/31/2001'] ['Age (at the time of Offense)', '29'] ['County', 'Lubbock'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Brown'] ['Native County', 'Saint Louis'] ['Native State', 'Missouri'] ['Name', 'Quintanilla, Jr., John Manuel'] ['TDCJ Number', '999491'] ['Date of Birth', '12/09/1976'] ['Date Received', '12/08/2004'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '08'] ['Date of Offense', '11/24/2002'] ['Age (at the time of Offense)', '25'] ['County', 'Victoria'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '153'] ['Eye Color', 'Brown'] ['Native County', 'Calhoun'] ['Native State', 'Texas'] ['Name', 'McCarthy, Kimberly Lagayle'] ['TDCJ Number', '999287'] ['Date of Birth', '05/11/1961'] ['Date Received', '12/07/1998'] ['Age (when Received)', '37'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '07/21/1997'] ['Age (at the time of Offense)', '36'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Female'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '188'] ['Eye Color', 'Brown'] ['Native County', 'Hunt'] ['Native State', 'Texas'] ['Name', 'Elroy Chester'] ['TDCJ Number', '999280'] ['Date of Birth', '6/14/1969'] ['Date Received', '9/26/1998'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '2/6/1998'] ['Age (at the time of Offense)', '28'] ['County', 'Jefferson'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '160'] ['Eye Color', 'Brown'] ['Native County', 'Jefferson'] ['Native State', 'Texas'] ['Name', 'Williams, Jefferey Demond'] ['TDCJ Number', '999350'] ['Date of Birth', '12/16/1975'] ['Date Received', '3/29/2000'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '5/19/1999'] ['Age (at the time of Offense)', '23'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '153 lbs.'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Parr, Carroll Joe'] ['TDCJ Number', '999479'] ['Date of Birth', '10/18/1977'] ['Date Received', '06/04/2004'] ['Age (when Received)', '26'] ['Education Level (Highest Grade Completed)', '03'] ['Date of Offense', '01/11/2003'] ['Age (at the time of Offense)', '25'] ['County', 'McLennan'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '178'] ['Eye Color', 'Brown'] ['Native County', 'McLennan'] ['Native State', 'Texas'] ['Name', 'Cobb,Richard Aaron'] ['TDCJ Number', '999467'] ['Date of Birth', '04/02/1984'] ['Date Received', '01/23/2004'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '09/02/2002'] ['Age (at the time of Offense)', '18'] ['County', 'Cherokee'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '05′ 10″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Blue'] ['Native County', 'Smith'] ['Native State', 'Texas'] ['Name', 'Threadgill, Ronnie Paul'] ['TDCJ Number', '999424'] ['Date of Birth', '02/20/1973'] ['Date Received', '07/22/2002'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '04/14/2001'] ['Age (at the time of Offense)', '28'] ['County', 'Navarro'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '174'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Lewis, Rickey Lynn'] ['TDCJ Number', '999097'] ['Date of Birth', '07/21/1962'] ['Date Received', '05/06/1994'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '09/17/1990'] ['Age (at the time of Offense)', '28'] ['County', 'Smith'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '146'] ['Eye Color', 'Brown'] ['Native County', 'Smith'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Hernandez, Ramon Torres'] ['TDCJ Number', '999431'] ['Date of Birth', '11/08/1971'] ['Date Received', '10/21/2002'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '03/31/2001'] ['Age (at the time of Offense)', '29'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '163'] ['Eye Color', 'Hazel'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Swain, Mario'] ['TDCJ Number', '999475'] ['Date of Birth', '02/28/1979'] ['Date Received', '04/08/2004'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/27/2002'] ['Age (at the time of Offense)', '23'] ['County', 'Gregg'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '139'] ['Eye Color', 'Brown'] ['Native County', 'Los Angeles'] ['Native State', 'California'] ['Name', 'Roberts Jr., Donnie Lee'] ['TDCJ Number', '999487'] ['Date of Birth', '02/09/1971'] ['Date Received', '10/28/2004'] ['Age (when Received)', '33'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '10/15/2003'] ['Age (at the time of Offense)', '32'] ['County', 'Polk'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 1″'] ['Weight (in Pounds)', '223'] ['Eye Color', 'Blue'] ['Native County', 'Natchitoches Parish'] ['Native State', 'Louisiana']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Foster, Cleve'] ['TDCJ Number', '999470'] ['Date of Birth', '10/24/1963'] ['Date Received', '3/1/2004'] ['Age (when Received)', '40'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '02/14/2002'] ['Age (at the time of Offense)', '38'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '260'] ['Eye Color', 'Blue'] ['Native County', 'Henderson'] ['Native State', 'Kentucky'] ['Name', 'Robert Wayne Harris'] ['TDCJ Number', '999364'] ['Date of Birth', '2/28/1972'] ['Date Received', '10/6/2000'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '3/20/2000'] ['Age (at the time of Offense)', '28'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '182'] ['Eye Color', 'Black'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Hearn, Yokamon L.'] ['TDCJ Number', '999292'] ['Date of Birth', '11/6/78'] ['Date Received', '12/31/98'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '10 years'] ['Date of Offense', '3/26/98'] ['Age (at the time of Offense)', '19'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '184'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Adams, Beunka'] ['TDCJ Number', '999486'] ['Date of Birth', '12/10/1982'] ['Date Received', '08/30/2004'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '09/02/2002'] ['Age (at the time of Offense)', '19'] ['County', 'Cherokee'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height', '5′ 6″'] ['Weight (in Pounds)', '179'] ['Eye Color', 'Brown'] ['Native County', 'Cherokee'] ['Native State', 'Texas'] ['Name', 'Hernandez, Jesse Joe'] ['TDCJ Number', '999425'] ['Date of Birth', '06/08/1964'] ['Date Received', '08/08/2002'] ['Age (when Received)', '38'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '04/11/2001'] ['Age (at the time of Offense)', '36'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '145'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Thurmond, Keith Steven'] ['TDCJ Number', '999435'] ['Date of Birth', '10/31/1959'] ['Date Received', '11/14/2002'] ['Age (when Received)', '43'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '09/25/2001'] ['Age (at the time of Offense)', '41'] ['County', 'Montgomery'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '220'] ['Eye Color', 'Brown'] ['Native County', 'Fort Knox'] ['Native State', 'Kentucky'] ['Name', 'Rivas, George'] ['TDCJ Number', '999394'] ['Date of Birth', '5/6/1970'] ['Date Received', '8/29/2001'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/24/2000'] ['Age (at the time of Offense)', '30'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '214'] ['Eye Color', 'Brown'] ['Native County', 'El Paso'] ['Native State', 'Texas'] ['Name', 'Hernandez, Rodrigo'] ['TDCJ Number', '999474'] ['Date of Birth', '06/27/1973'] ['Date Received', '04/07/2004'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '02/19/1994'] ['Age (at the time of Offense)', '20'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '202'] ['Eye Color', 'Brown'] ['Native County', 'Zavala'] ['Native State', 'Texas'] ['Name', 'Esparza, Guadalupe'] ['TDCJ Number', '999385'] ['Date of Birth', '11/21/1964'] ['Date Received', '05/25/2001'] ['Age (when Received)', '36'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '06/30/1999'] ['Age (at the time of Offense)', '34'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 4″'] ['Weight (in Pounds)', '193'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Garcia, Frank Martinez'] ['TDCJ Number', '999418'] ['Date of Birth', '10/21/1972'] ['Date Received', '06/10/2002'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '03/29/2001'] ['Age (at the time of Offense)', '28'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '169'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Brewer, Lawrence Russell'] ['TDCJ Number', '999327'] ['Date of Birth', '03/13/1967'] ['Date Received', '09/23/1999'] ['Age (when Received)', '32'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '06/07/1998'] ['Age (at the time of Offense)', '31'] ['County', 'Brazos (on a change of venue from Jasper)'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'Brown'] ['Native County', 'Lamar'] ['Native State', 'Texas'] ['Name', 'Woods, Jr., Steven Michael'] ['TDCJ Number', '999427'] ['Date of Birth', '04/17/1980'] ['Date Received', '08/27/2002'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '05/02/2001'] ['Age (at the time of Offense)', '21'] ['County', 'Denton'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '152'] ['Eye Color', 'Brown'] ['Native County', 'Wayne'] ['Native State', 'Michigan'] ['Name', 'Robles, Martin'] ['TDCJ Number', '999457'] ['Date of Birth', '05/12/1978'] ['Date Received', '09/23/2003'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '08'] ['Date of Offense', '11/12/2002'] ['Age (at the time of Offense)', '24'] ['County', 'Nueces'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '174'] ['Eye Color', 'Brown'] ['Native County', 'Nueces'] ['Native State', 'Texas'] ['Name', 'Mark Stroman'] ['TDCJ Number', '999409'] ['Date of Birth', '10/13/1969'] ['Date Received', '04/05/2002'] ['Age (when Received)', '32'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '10/04/2001'] ['Age (at the time of Offense)', '31'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '223'] ['Eye Color', 'Hazel'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Mathis, Milton Wuzael'] ['TDCJ Number', '999337'] ['Date of Birth', '03/11/79'] ['Date Received', '12/09/99'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '12/15/98'] ['Age (at the time of Offense)', '19'] ['County', 'Fort Bend'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '193'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Taylor, Lee Andrew'] ['TDCJ Number', '999344'] ['Date of Birth', '01/08/1979'] ['Date Received', '02/22/2000'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '04/01/1999'] ['Age (at the time of Offense)', '20'] ['County', 'Bowie'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '207'] ['Eye Color', 'Brown'] ['Native County', 'Galveston'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Kerr, Cary D.'] ['TDCJ Number', '999449'] ['Date of Birth', '10/06/1964'] ['Date Received', '04/17/2003'] ['Age (when Received)', '38'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '07/12/2001'] ['Age (at the time of Offense)', '36'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '219'] ['Eye Color', 'Green'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Adams, Timothy Wayne'] ['TDCJ Number', '999448'] ['Date of Birth', '08/22/1968'] ['Date Received', '04/17/2003'] ['Age (when Received)', '34'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '02/20/2002'] ['Age (at the time of Offense)', '33'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′6″'] ['Weight (in Pounds)', '241'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Hall, Michael Wayne'] ['TDCJ Number', '999346'] ['Date of Birth', '04/06/1979'] ['Date Received', '03/02/2000'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '02/15/1998'] ['Age (at the time of Offense)', '18'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '218'] ['Eye Color', 'Hazel'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Wooten, Larry'] ['TDCJ Number', '999269'] ['Date of Birth', '12/10/58'] ['Date Received', '5/21/98'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '9/3/96'] ['Age (at the time of Offense)', '37'] ['County', 'Lamar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '183'] ['Eye Color', 'Brown'] ['Native County', 'Lamar'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Jackson, Derrick L.'] ['TDCJ Number', '999263'] ['Date of Birth', '6/13/68'] ['Date Received', '4/22/98'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '11 years (GED)'] ['Date of Offense', '9/11/88'] ['Age (at the time of Offense)', '20'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 1″'] ['Weight (in Pounds)', '160'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Perry, Michael James'] ['TDCJ Number', '999444'] ['Date of Birth', '04/09/1982'] ['Date Received', '03/03/2003'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '10/24/2001'] ['Age (at the time of Offense)', '19'] ['County', 'Montgomery'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '132'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Cannady, Rogelio'] ['TDCJ Number', '999245'] ['Date of Birth', '5/29/72'] ['Date Received', '12/5/97'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '8 years'] ['Date of Offense', '10/10/93'] ['Age (at the time of Offense)', '21'] ['County', 'Bee'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Brown'] ['Native County', 'Val Verde'] ['Native State', 'Texas'] ['Name', 'Galloway, Billy John'] ['TDCJ Number', '999349'] ['Date of Birth', '03/22/1969'] ['Date Received', '03/27/2000'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '6'] ['Date of Offense', '09/08/1998'] ['Age (at the time of Offense)', '29'] ['County', 'Hunt'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '175'] ['Eye Color', 'Blue'] ['Native County', 'Onondaga'] ['Native State', 'New York'] ['Name', 'Kevin Scott Varga'] ['TDCJ Number', '999368'] ['Date of Birth', '3/4/1969'] ['Date Received', '11/20/2000'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '6'] ['Date of Offense', '9/8/1998'] ['Age (at the time of Offense)', '29'] ['County', 'Hunt'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '203'] ['Eye Color', 'Brown'] ['Native County', 'Kalamazoo'] ['Native State', 'Michigan'] ['Name', 'Bustamante, Samuel'] ['TDCJ Number', '999380'] ['Date of Birth', '12/11/1969'] ['Date Received', '3/16/2001'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '1/18/1998'] ['Age (at the time of Offense)', '28'] ['County', 'Fort Bend'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '264'] ['Eye Color', 'Brown'] ['Native County', 'Wharton'] ['Native State', 'Texas'] ['Name', 'Berkley, William Josef'] ['TDCJ Number', '999422'] ['Date of Birth', '01/16/1979'] ['Date Received', '07/18/2002'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '03/10/2000'] ['Age (at the time of Offense)', '21'] ['County', 'El Paso'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '139'] ['Eye Color', 'Hazel'] ['Native County', 'Schwavish Hall'] ['Native State', 'Germany'] ['Name', 'Alix, Franklin DeWayne'] ['TDCJ Number', '999286'] ['Date of Birth', '8/6/75'] ['Date Received', '11/12/98'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10 years'] ['Date of Offense', '1/2/98'] ['Age (at the time of Offense)', '23'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′9″'] ['Weight (in Pounds)', '188'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Maxwell, Joshua'] ['TDCJ Number', '999408'] ['Date of Birth', '05/17/1978'] ['Date Received', '03/26/2002'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '10/11/2000'] ['Age (at the time of Offense)', '22'] ['County', 'Bexar'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '184'] ['Eye Color', 'Blue'] ['Native County', 'Marion'] ['Native State', 'Texas'] ['Name', 'Sigala, Michael Adam'] ['TDCJ Number', '999397'] ['Date of Birth', '12/11/1977'] ['Date Received', '10/29/2001'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '08/22/2000'] ['Age (at the time of Offense)', '22'] ['County', 'Collin'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '213'] ['Eye Color', 'Hazel'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Mosley, Kenneth'] ['TDCJ Number', '999243'] ['Date of Birth', '9/7/58'] ['Date Received', '10/20/97'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '2/15/97'] ['Age (at the time of Offense)', '38'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '170'] ['Eye Color', 'Brown'] ['Native County', 'Flint'] ['Native State', 'Michigan'] ['Name', 'Woods, Bobby Wayne'] ['TDCJ Number', '999270'] ['Date of Birth', '10/11/65'] ['Date Received', '5/29/98'] ['Age (when Received)', '32'] ['Education Level (Highest Grade Completed)', '7 years'] ['Date of Offense', '4/30/97'] ['Age (at the time of Offense)', '31'] ['County', 'Llano (on change of venue from Hood County)'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Blonde'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '231'] ['Eye Color', 'Blue'] ['Native County', 'Tarrant'] ['Native State', 'Texas'] ['Name', 'Thompson, Robert Lee'] ['TDCJ Number', '999276'] ['Date of Birth', '4/1/75'] ['Date Received', '8/10/98'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10 years'] ['Date of Offense', '12/5/96'] ['Age (at the time of Offense)', '21'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '252'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Danielle Simpson'] ['TDCJ Number', '999370'] ['Date of Birth', '10/26/1979'] ['Date Received', '12/15/2000'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '1/26/2000'] ['Age (at the time of Offense)', '20'] ['County', 'Anderson'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '151'] ['Eye Color', 'Brown'] ['Native County', 'Anderson'] ['Native State', 'Texas'] ['Name', 'Valle, Yosvanis'] ['TDCJ Number', '999384'] ['Date of Birth', '09/07/1975'] ['Date Received', '05/09/2001'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '06/07/1999'] ['Age (at the time of Offense)', '23'] ['County', 'Harris'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Brown'] ['Native County', 'Habana'] ['Native State', 'Cuba'] ['Name', 'Oliver, Khristian'] ['TDCJ Number', '999301'] ['Date of Birth', '08/26/1977'] ['Date Received', '04/23/1999'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '03/17/1998'] ['Age (at the time of Offense)', '20'] ['County', 'Nacogdoches'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 1″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Blanton, Reginald W.'] ['TDCJ Number', '999395'] ['Date of Birth', '6/3/1981'] ['Date Received', '9/5/2001'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '4/13/2000'] ['Age (at the time of Offense)', '18'] ['County', 'Bexar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 1″'] ['Weight (in Pounds)', '201'] ['Eye Color', 'Brown'] ['Native County', 'Alameda'] ['Native State', 'California'] ['Name', 'Coleman, Christopher'] ['TDCJ Number', '999239'] ['Date of Birth', '12/28/71'] ['Date Received', '9/10/97'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '11 years'] ['Date of Offense', '12/14/95'] ['Age (at the time of Offense)', '23'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '185'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Hankins, Terry Lee'] ['TDCJ Number', '999415'] ['Date of Birth', '10/10/1974'] ['Date Received', '05/20/2002'] ['Age (when Received)', '27'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '08/26/2001'] ['Age (at the time of Offense)', '26'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'Hazel'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Johnson, Derrick Lamone'] ['TDCJ Number', '999339'] ['Date of Birth', '09/20/1980'] ['Date Received', '12/22/1999'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '01/21/1999'] ['Age (at the time of Offense)', '18'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '156'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Rosales, Michael'] ['TDCJ Number', '999274'] ['Date of Birth', '1/11/74'] ['Date Received', '7/16/98'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '10 years'] ['Date of Offense', '6/4/97'] ['Age (at the time of Offense)', '23'] ['County', 'Lubbock'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '163'] ['Eye Color', 'Brown'] ['Native County', 'Kit Carson'] ['Native State', 'Colorado'] ['Name', 'Salazar, Luis Cervantes'] ['TDCJ Number', '999285'] ['Date of Birth', '8/31/70'] ['Date Received', '10/30/98'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '10/11/97'] ['Age (at the time of Offense)', '27'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '176'] ['Eye Color', 'Brown'] ['Native County', 'Eastland'] ['Native State', 'Texas'] ['Name', 'Martinez, James Edward'] ['TDCJ Number', '999404'] ['Date of Birth', '06/09/1974'] ['Date Received', '02/13/2002'] ['Age (when Received)', '27'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '09/21/2000'] ['Age (at the time of Offense)', '26'] ['County', 'Tarrant'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '144'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Scheanette, Dale Devon'] ['TDCJ Number', '999440'] ['Date of Birth', '05/07/1973'] ['Date Received', '02/06/2003'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/24/1996'] ['Age (at the time of Offense)', '23'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '162'] ['Eye Color', 'Brown'] ['Native County', 'Ouachita Parish'] ['Native State', 'Louisiana']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Ortiz, Ricardo'] ['TDCJ Number', '999320'] ['Date of Birth', '10/05/1962'] ['Date Received', '06/24/1999'] ['Age (when Received)', '36'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '08/18/1997'] ['Age (at the time of Offense)', '34'] ['County', 'El Paso'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '209'] ['Eye Color', 'Brown'] ['Native County', 'El Paso'] ['Native State', 'Texas'] ['Name', 'Martinez, Virgil Euristi'] ['TDCJ Number', '999265'] ['Date of Birth', '12/12/67'] ['Date Received', '4/22/98'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '11 years'] ['Date of Offense', '10/1/96'] ['Age (at the time of Offense)', '28'] ['County', 'Brazoria'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 3″'] ['Weight (in Pounds)', '284'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Reginald Perkins'] ['TDCJ Number', '999407'] ['Date of Birth', '04/29/1955'] ['Date Received', '03/22/2002'] ['Age (when Received)', '46'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '12/04/2000'] ['Age (at the time of Offense)', '45'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '190'] ['Eye Color', 'Brown'] ['Native County', 'Woodruff'] ['Native State', 'Arkansas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Moore, Curtis'] ['TDCJ Number', '999212'] ['Date of Birth', '2/26/68'] ['Date Received', '01/29/98'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '11/30/95'] ['Age (at the time of Offense)', '27'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '167'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas'] ['Name', 'Hudson, Robert Jean'] ['TDCJ Number', '999353'] ['Date of Birth', '3/4/63'] ['Date Received', '4/6/00'] ['Age (when Received)', '37'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '5/7/99'] ['Age (at the time of Offense)', '36'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '229'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Denard Manns'] ['TDCJ Number', '999405'] ['Date of Birth', '12/22/1965'] ['Date Received', '03/04/2002'] ['Age (when Received)', '36'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '11/18/1998'] ['Age (at the time of Offense)', '32'] ['County', 'Bell'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '230'] ['Eye Color', 'Brown'] ['Native County', 'New York'] ['Native State', 'New York']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Wright, Gregory Edward'] ['TDCJ Number', '999253'] ['Date of Birth', '11/1/65'] ['Date Received', '2/5/98'] ['Age (when Received)', '32'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '3/21/97'] ['Age (at the time of Offense)', '31'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '170'] ['Eye Color', 'Blue'] ['Native County', 'Knox'] ['Native State', 'Tennessee']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Ries, Joseph Ray'] ['TDCJ Number', '999335'] ['Date of Birth', '09/18/1979'] ['Date Received', '11/29/1999'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '02/22/1999'] ['Age (at the time of Offense)', '19'] ['County', 'Hopkins'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '135'] ['Eye Color', 'Hazel'] ['Native County', 'Douglas'] ['Native State', 'Oregon'] ['Name', 'Watts, Kevin'] ['TDCJ Number', '999456'] ['Date of Birth', '01/18/1981'] ['Date Received', '09/04/2003'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '09'] ['Date of Offense', '03/01/2002'] ['Age (at the time of Offense)', '21'] ['County', 'Bexar'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '184'] ['Eye Color', 'Brown'] ['Native County', 'Santa Clara'] ['Native State', 'California']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Murray, William A.'] ['TDCJ Number', '999313'] ['Date of Birth', '02/13/1969'] ['Date Received', '06/10/1999'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '02/10/1998'] ['Age (at the time of Offense)', '28'] ['County', 'Kaufman'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '158'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Rodriguez, Michael Anthony'] ['TDCJ Number', '999413'] ['Date of Birth', '10/29/1962'] ['Date Received', '05/09/2002'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/24/2000'] ['Age (at the time of Offense)', '40'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '215'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Dorsey, Leon David IV'] ['TDCJ Number', '999359'] ['Date of Birth', '11/17/1975'] ['Date Received', '6/12/2000'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '4/4/1994'] ['Age (at the time of Offense)', '18'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '174'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Chi, Heliberto'] ['TDCJ Number', '999437'] ['Date of Birth', '12/28/1978'] ['Date Received', '11/21/2002'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '03/24/2001'] ['Age (at the time of Offense)', '22'] ['County', 'Tarrant'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '205'] ['Eye Color', 'Brown'] ['Native County', 'San Pedrosula'] ['Native State', 'Honduras']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Davis, Larry Donell'] ['TDCJ Number', '999316'] ['Date of Birth', '10/09/1967'] ['Date Received', '06/11/1999'] ['Age (when Received)', '31'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '08/28/1995'] ['Age (at the time of Offense)', '27'] ['County', 'Potter'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '173'] ['Eye Color', 'Brown'] ['Native County', 'Parmer'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Turner, Carlton Akee'] ['TDCJ Number', '999321'] ['Date of Birth', '07/04/1979'] ['Date Received', '07/07/1999'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '08/08/1998'] ['Age (at the time of Offense)', '19'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '184'] ['Eye Color', 'Brown'] ['Native County', 'Salt Lake'] ['Native State', 'Utah'] ['Name', 'Chamberlain, Karl Eugene'] ['TDCJ Number', '999241'] ['Date of Birth', '06/20/1970'] ['Date Received', '09/25/1997'] ['Age (when Received)', '27'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '08/02/1991'] ['Age (at the time of Offense)', '21'] ['County', 'Dallas'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '261'] ['Eye Color', 'Blue'] ['Native County', 'Oklahoma'] ['Native State', 'Oklahoma']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Kimmel, Clifford Allan'] ['TDCJ Number', '999347'] ['Date of Birth', '07/18/1975'] ['Date Received', '03/09/2000'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '05/18/1999'] ['Age', '23'] ['County', 'Bexar'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '194'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Roach, Tony'] ['TDCJ Number', '999323'] ['Date of Birth', '11/09/1976'] ['Date Received', '08/18/1999'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '06/08/1998'] ['Age', '21'] ['County', 'Potter'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '169'] ['Eye Color', 'Brown'] ['Native County', 'Greenville'] ['Native State', 'South Carolina']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Conner, Johnny Ray'] ['TDCJ Number', '999324'] ['Date of Birth', '04/27/1975'] ['Date Received', '09/09/1999'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '05/17/1998'] ['Age (at the time of Offense)', '23'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '157'] ['Eye Color', 'Brown'] ['Native County', 'Caddo Parish'] ['Native State', 'Louisiana'] ['Name', 'Parr, Kenneth'] ['TDCJ Number', '999312'] ['Date of Birth', '01/16/1980'] ['Date Received', '06/07/1999'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '01/21/1998'] ['Age', '18'] ['County', 'Matagorda'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '164'] ['Eye Color', 'Brown'] ['Native County', 'Matagorda'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Reyes, Gilberto Guadalupe'] ['TDCJ Number', '999352'] ['Date of Birth', '9/19/73'] ['Date Received', '4/5/00'] ['Age (when Received)', '26'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '3/12/98'] ['Age', '24'] ['County', 'Bailey'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '129'] ['Eye Color', 'Brown'] ['Native County', 'Bailey'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Dickson, Ryan Heath'] ['TDCJ Number', '999250'] ['Date of Birth', '11/11/76'] ['Date Received', '12/31/97'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '11/27/94'] ['Age (at the time of Offense)', '18'] ['County', 'Potter'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '171'] ['Eye Color', 'Brown'] ['Native County', 'Little Rock'] ['Native State', 'Arkansas'] ['Name', 'Clark, James Lee'] ['TDCJ Number', '999095'] ['Date of Birth', '5/13/68'] ['Date Received', '5/4/94'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '9 years'] ['Date of Offense', '6/7/93'] ['Age (at the time of Offense)', '25'] ['County', 'Denton'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '157'] ['Eye Color', 'Brown'] ['Native County', 'Caddo Parish'] ['Native State', 'Louisiana']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Gutierrez, Vincent'] ['TDCJ Number', '999262'] ['Date of Birth', '10/1/78'] ['Date Received', '4/14/98'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '8 years (GED)'] ['Date of Offense', '3/11/97'] ['Age', '18'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '142'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Nealy, Charles A.'] ['TDCJ Number', '999289'] ['Date of Birth', '3/23/64'] ['Date Received', '12/10/98'] ['Age (when Received)', '34'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '8/20/97'] ['Age', '33'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Perez, Robert Martinez'] ['TDCJ Number', '999322'] ['Date of Birth', '06/29/58'] ['Date Received', '07/29/1999'] ['Age (when Received)', '41'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '04/17/1994'] ['Age', '35'] ['County', 'Dallas'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '165'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Anderson, Newton'] ['TDCJ Number', '999355'] ['Date of Birth', '8/8/1976'] ['Date Received', '5/15/2000'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '3/4/1999'] ['Age (at the time of Offense)', '22'] ['County', 'Smith'] ['Race', 'white'] ['Gender', 'male'] ['Hair Color', 'red'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '163'] ['Eye Color', 'blue'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Jackson, James Lewis'] ['TDCJ Number', '999272'] ['Date of Birth', '6/13/59'] ['Date Received', '6/17/98'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '4/8/97'] ['Age', '37'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 3″'] ['Weight (in Pounds)', '204'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas'] ['Name', 'Swift, Christopher Jay'] ['TDCJ Number', '999496'] ['Date of Birth', '02/12/1975'] ['Date Received', '04/11/2005'] ['Age (when Received)', '30'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '04/29/2003'] ['Age', '28'] ['County', 'Denton'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Granados, Carlos'] ['TDCJ Number', '999307'] ['Date of Birth', '09/18/1970'] ['Date Received', '05/06/1999'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '09/13/1998'] ['Age', '27'] ['County', 'Williamson'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '172'] ['Eye Color', 'Brown'] ['Native County', 'Manhattan'] ['Native State', 'New York']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Frazier, Derrick'] ['TDCJ Number', '999284'] ['Date of Birth', '4/28/77'] ['Date Received', '10/9/98'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '9 years'] ['Date of Offense', '6/26/97'] ['Age', '20'] ['County', 'Refugio'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '176'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Fuller, Justin'] ['TDCJ Number', '999266'] ['Date of Birth', '8/29/78'] ['Date Received', '4/29/98'] ['Age (when Received)', '19'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '4/21/97'] ['Age', '18'] ['County', 'Smith'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '165'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas'] ['Name', 'Hinojosa, Richard'] ['TDCJ Number', '999246'] ['Date of Birth', '11/17/61'] ['Date Received', '12/9/97'] ['Age (when shoulReceived)', '36'] ['Education Level (Highest Grade Completed)', '5 years'] ['Date of Offense', '5/10/94'] ['Age', '32'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Eye Color', 'Green'] ['Native County', 'Bexar'] ['Native State', 'Texas'] ['Name', 'Wyatt, Jr., William E.'] ['TDCJ Number', '999255'] ['Date of Birth', '12/20/1964'] ['Date Received', '2/19/1998'] ['Age (when Received)', '33'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '2/4/1997'] ['Age', '32'] ['County', 'Bowie'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 1″'] ['Weight (in Pounds)', '250'] ['Eye Color', 'Green'] ['Native County', 'Detroit'] ['Native State', 'Michigan']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Resendiz, Angel Maturino'] ['TDCJ Number', '999356'] ['Date of Birth', '8/1/1960'] ['Date Received', '5/24/2000'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '12/17/1998'] ['Age', '38'] ['County', 'Harris'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '190'] ['Eye Color', 'Brown'] ['Native County', 'Durango'] ['Native State', 'Mexico'] ['Name', 'Reese, Lamont'] ['TDCJ Number', '999374'] ['Date of Birth', '10/16/1977'] ['Date Received', '1/18/2001'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '3/1/1999'] ['Age', '21'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '207'] ['Eye Color', 'Brown'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Herron, Jermaine'] ['TDCJ Number', '999304'] ['Date of Birth', '01/13/1979'] ['Date Received', '04/29/1999'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '06/26/1997'] ['Age', '18'] ['County', 'Refugio'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '220'] ['Eye Color', 'Brown'] ['Native County', 'San Patricio'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Salazar, Robert Jr.'] ['TDCJ Number', '999303'] ['Date of Birth', '10/24/1978'] ['Date Received', '04/28/1999'] ['Age (when Received)', '20'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '04/23/1997'] ['Age', '18'] ['County', 'Lubbock'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '190'] ['Eye Color', 'Brown'] ['Native County', 'Lubbock'] ['Native State', 'Texas'] ['Name', 'Hughes, Tommie'] ['TDCJ Number', '999273'] ['Date of Birth', '8/15/74'] ['Date Received', '6/18/98'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '8/13/97'] ['Age', '22'] ['County', 'Dallas'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '195'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Neville, Robert James Jr.'] ['TDCJ Number', '999293'] ['Date of Birth', '10/05/1974'] ['Date Received', '01/05/1999'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '02/15/98'] ['Age', '23'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Red'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '140'] ['Eye Color', 'Blue'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Rowell, Robert Dale'] ['TDCJ Number', '999104'] ['Date of Birth', '04/08/1955'] ['Date Received', '06/03/1994'] ['Age (when Received)', '44'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '05/10/1993'] ['Age', '38'] ['County', 'Harris'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '168'] ['Eye Color', 'Blue'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'White, Melvin Wayne'] ['TDCJ Number', '999317'] ['Date of Birth', '1/25/1950'] ['Date Received', '6/21/1999'] ['Age (when Received)', '49'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '8/5/1997'] ['Age', '47'] ['County', 'Pecos'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '205'] ['Eye Color', 'Brown'] ['Native County', 'Howard'] ['Native State', 'Texas'] ['Name', 'Ramirez, Luis'] ['TDCJ Number', '999309'] ['Date of Birth', '06/19/1963'] ['Date Received', '05/18/1999'] ['Age (when Received)', '35'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '04/08/1998'] ['Age', '34'] ['County', 'Tom Green'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 5″'] ['Weight (in Pounds)', '148'] ['Eye Color', 'Brown'] ['Native County', 'Tom Green'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Martinez, David'] ['TDCJ Number', '999288'] ['Date of Birth', '04/24/0976'] ['Date Received', '12/10/1998'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '07/27/1997'] ['Age', '21'] ['County', 'Travis'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '224'] ['Eye Color', 'Blue'] ['Native County', 'Austin'] ['Native State', 'Texas'] ['Name', 'Martinez, Alexander'] ['TDCJ Number', '999438'] ['Date of Birth', '06/16/1976'] ['Date Received', '01/07/2003'] ['Age (when Received)', '26'] ['Education Level (Highest Grade Completed)', '8'] ['Date of Offense', '08/12/2001'] ['Age', '25'] ['County', 'Harris'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 1″'] ['Weight (in Pounds)', '227'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Pursley, Lonnie Wayne'] ['TDCJ Number', '999294'] ['Date of Birth', '09/17/1961'] ['Date Received', '01/20/1999'] ['Age (when Received)', '37'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '03/29/97'] ['Age', '35'] ['County', 'Polk'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '229'] ['Eye Color', 'Blue'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Porter, James'] ['TDCJ Number', '999378'] ['Date of Birth', '8/15/1971'] ['Date Received', '3/14/2001'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '7'] ['Date of Offense', '5/28/2000'] ['Age', '28'] ['County', 'Bowie'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '131'] ['Eye Color', 'Blue'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'McWilliams, Frederick Patrick'] ['TDCJ Number', '999242'] ['Date of Birth', '12/1/73'] ['Date Received', '10/1/97'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '9/28/96'] ['Age', '22'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '201'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Morrow, Robert Brice'] ['TDCJ Number', '999244'] ['Date of Birth', '6/03/57'] ['Date Received', '11/18/97'] ['Age (when Received)', '40'] ['Education Level (Highest Grade Completed)', 'GED'] ['Date of Offense', '4/3/96'] ['Age', '38'] ['County', 'Liberty'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '175'] ['Eye Color', 'Blue'] ['Native County', 'New Orleans'] ['Native State', 'Louisiana']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Cotton, Marcus B.'] ['TDCJ Number', '999252'] ['Date of Birth', '9/28/74'] ['Date Received', '2/4/98'] ['Age (when Received)', '23'] ['Education Level (Highest Grade Completed)', '9 years'] ['Date of Offense', '9/18/96'] ['Age (at the time of Offense)', '22'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 6″'] ['Weight (in Pounds)', '147'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Matthews, Ynobe'] ['TDCJ Number', '999387'] ['Date of Birth', '04/14/1976'] ['Date Received', '06/19/2001'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '11'] ['Date of Offense', '05/28/2000'] ['Age', '24'] ['County', 'Brazos'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '288'] ['Eye Color', 'Brown'] ['Native County', 'Dallas'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Larry Allen Hayes'] ['TDCJ Number', '999358'] ['Date of Birth', '11/23/1948'] ['Date Received', '5/26/2000'] ['Age (when Received)', '51'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '7/15/1999'] ['Age', '50'] ['County', 'Montgomery'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Grey'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '198'] ['Eye Color', 'Blue'] ['Native County', 'Howell'] ['Native State', 'Missouri']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Black, Sr., Christopher'] ['TDCJ Number', '999277'] ['Date of Birth', '8/2/59'] ['Date Received', '8/11/98'] ['Age (when Received)', '39'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '2/7/98'] ['Age (at the time of Offense)', '38'] ['County', 'Bell'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '240'] ['Eye Color', 'Brown'] ['Native County', 'Portsmouth'] ['Native State', 'Virginia']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Clay, Keith Bernard'] ['TDCJ Number', '999238'] ['Date of Birth', '2/18/68'] ['Date Received', '9/10/97'] ['Age (when Received)', '29'] ['Education Level (Highest Grade Completed)', '12 years'] ['Date of Offense', '1/4/94'] ['Age (at the time of Offense)', '25'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Williams, Richard Head'] ['TDCJ Number', '999251'] ['Date of Birth', '7/19/69'] ['Date Received', '1/7/98'] ['Age (when Received)', '28'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '3/24/97'] ['Age', '27'] ['County', 'Harris'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '208'] ['Eye Color', 'Brown'] ['Native County', 'Harris'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Baltazar, John Richard'] ['TDCJ Number', '999257'] ['Date of Birth', '5/9/72'] ['Date Received', '3/13/98'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '9 years'] ['Date of Offense', '9/27/97'] ['Age (at the time of Offense)', '25'] ['County', 'Nueces'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 11″'] ['Weight (in Pounds)', '155'] ['Eye Color', 'Brown'] ['Native County', 'Nueces'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Santellan, Jose Sr.'] ['TDCJ Number', '999140'] ['Date of Birth', '03/08/1962'] ['Date Received', '03/14/1995'] ['Age (when Received)', '34'] ['Education Level (Highest Grade Completed)', '10'] ['Date of Offense', '08/22/1993'] ['Age', '31'] ['County', 'Kerr'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '189'] ['Eye Color', 'Brown'] ['Native County', 'Wise'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Flores, Miguel Angel'] ['TDCJ Number', '000983'] ['Date of Birth', '06/07/69'] ['Date Received', '09/14/1990'] ['Age (when Received)', '21'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '06/28/1989'] ['Age', '20'] ['County', 'Collin - change of venue from Hutchinson County'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 7″'] ['Weight (in Pounds)', '165'] ['Eye Color', 'Brown'] ['Native County', 'Juarez'] ['Native State', 'Mexico']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Hughes, Billy George'] ['TDCJ Number', '000556'] ['Date of Birth', '01/28/1952'] ['Date Received', '09/17/1976'] ['Age (when Received)', '24'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '04/04/1976'] ['Age', '24'] ['County', 'Matagorda'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 10″'] ['Weight (in Pounds)', '165'] ['Eye Color', 'Blue'] ['Native County', 'Baldwin'] ['Native State', 'Alabama']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Foust, Aaron Christopher'] ['TDCJ Number', '999268'] ['Date of Birth', '7/28/72'] ['Date Received', '5/19/98'] ['Age (when Received)', '25'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '5/18/97'] ['Age', '24'] ['County', 'Tarrant'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'n/a'] ['Height (in Feet and Inches)', '6′ 0″'] ['Weight (in Pounds)', '180'] ['Eye Color', 'n/a'] ['Native County', 'Lafayette'] ['Native State', 'Tennessee']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Photo not available', 'Name', 'Clifford Boggess'] ['TDCJ Number', '887'] ['Date of Birth', '6/11/1965'] ['Date Received', '10/23/1987'] ['Age (when Received)', '22'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '7/23/1986'] ['Age (at the time of Offense)', '21'] ['County', 'Clay (change of venue from Montague)'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Red'] ['Height (in Feet and Inches)', '6′ 2″'] ['Weight (in Pounds)', '232'] ['Eye Color', 'Brown'] ['Native County', 'Brunswick'] ['Native State', 'Georgia']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Cantu, Ruben Montoya'] ['TDCJ Number', '804'] ['Date of Birth', '12/5/66'] ['Date Received', '9/10/85'] ['Age (when Received)', '18'] ['Education Level (Highest Grade Completed)', '9 years'] ['Date of Offense', '11/8/84'] ['Age (at the time of Offense)', '17'] ['County', 'Bexar'] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 10″/td>\r\n '] ['Weight (in Pounds)', '142'] ['Eye Color', 'Brown'] ['Native County', 'Bexar'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Hernandez, Ramon Pedro'] ['TDCJ Number', '667'] ['Date of Birth', '03/02/1942'] ['Date Received', '09/30/1980'] ['Age (when Received)', '38'] ['Education Level (Highest Grade Completed)', '9'] ['Date of Offense', '06/20/1980'] ['Age (at the time of Offense)', '38'] ['County', 'El Paso '] ['Race', 'Hispanic'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 3″'] ['Weight (in Pounds)', '130'] ['Eye Color', 'Brown'] ['Native County', 'El Paso'] ['Native State', 'Texas']
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
['Name', 'Autry, James David'] ['TDCJ Number', '670'] ['Date of Birth', '9/27/1954'] ['Date Received', '10/10/1980'] ['Age (when Received)', '26'] ['Education Level (Highest Grade Completed)', '6'] ['Date of Offense', '4/20/1980'] ['Age (at the time of Offense)', '25'] ['County', 'Jefferson'] ['Race', 'White'] ['Gender', 'Male'] ['Hair Color', 'Brown'] ['Height (in Feet and Inches)', '5′ 8″'] ['Weight (in Pounds)', '137'] ['Eye Color', 'Brown'] ['Native County', 'Potter'] ['Native State', 'Texas'] ['Photo not available', 'Name', 'Brooks, Charlie Jr.'] ['TDCJ Number', '592'] ['Date of Birth', '9/1/1942'] ['Date Received', '4/25/1978'] ['Age (when Received)', '35'] ['Education Level (Highest Grade Completed)', '12'] ['Date of Offense', '12/14/1976'] ['Age (at the time of Offense)', '34'] ['County', 'Tarrant'] ['Race', 'Black'] ['Gender', 'Male'] ['Hair Color', 'Black'] ['Height (in Feet and Inches)', '5′ 9″'] ['Weight (in Pounds)', '150'] ['Eye Color', 'mar (according to DPS records)'] ['Native County', 'Tarrant'] ['Native State', 'Texas']
import requests
import lxml.html as lh
import pandas as pd
from bs4 import BeautifulSoup as bs
import pandas as pd
df = pd.read_csv('V2_final_statements.csv')
test_df = df.copy()
def get_summary(link):
try:
url="https://www.tdcj.texas.gov/death_row/" + link
page = requests.get(url)
soup= bs(page.content, "html.parser")
# print(soup)
p_tags = soup.find_all("p")
# for tag in p_tags:
# print('---')
# print(tag.text)
# print(tr_tags)
offender_obj = {}
for t in p_tags:
offender_obj.update({ t.span.text: t.span.next_sibling.next_sibling.strip() })
# print(t.span.text)
# print(t.span.next_sibling.next_sibling.strip())
# # info = t.find_all('td')
# row_array = []
# for i in info:
# string = i.text.replace(u'\xa0', u'')
# if len(string) > 0:
# row_array.append(i.text)
# print(row_array)
# try:
# if len(row_array) > 1:
# offender_obj.update({row_array[0]: row_array[1]})
# except:
# return 'no field'
print(offender_obj)
return offender_obj
except:
return 'no link'
# get_summary("dr_info/halljusten.html")
test_df['Summary'] = test_df.apply(lambda x: get_summary(x['Offender Information']), axis=1)
{'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ# 914053 on a 2 year sentence from El Paso County for one count of Burglary of Habitat.', 'Summary of Incident': 'On October 28, 2002, in El Paso County, Texas, Hall fatally strangled a female (race and age unknown) with a black electrical cord.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown Female'} {'Prior Occupation': 'Machine Operator', 'Prior Prison Record': 'TDCJ #592340 on a twelve year sentence for aggravated robbery with a deadly weapon out of Dallas county.', 'Summary of Incident': 'On September 15, 2007, in Dallas, Texas, the subject fatally stabbed a 30-year-old black female and two 9-year-old black males. He then called 911 and confessed to the crimes.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black female; two black males.'} {'Prior Occupation': 'Cabinet maker', 'Prior Prison Record': '#925766 - Theft; #1060195 - Unauthorized Use of a Motor Vehicle; #1225186 - Theft; #1354704 - Theft; #1410287 - Theft of Vehicle', 'Summary of Incident': "Subject and codefendant knocked on the victim's door and pulled a 9 millimeter handgun when she answered.\xa0 They pushed her inside the house and removed several electronics.\xa0 Before leaving the residence, the subject shot the victim once in the back of the head causing her death.", 'Co-Defendants': 'Jose Claremont Ramos, Jr.', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#1014350 - On a one-year sentence from Cochran County for Reckless Injury to Elderly with Bodily Injury', 'Summary of Incident': 'On April 6, 2003, in Fort Worth, Texas, Crutsinger entered the residence of a 71-year-old white female and an 88-year-old white female and stabbed both victims multiple times, resulting in their deaths.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female; White female'} {'Prior Occupation': 'electrician, mechanic, laborer', 'Prior Prison Record': '#758150 – On a two-year sentence for one count of Burglary of a Building (originally sentenced to probation, but revoked and sentenced to the TDCJ-ID when arrested for current offense)', 'Summary of Incident': 'On December 8, 1998, Swearingen kidnapped and strangled a 19-year-old white female.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'carpenter, laborer', 'Prior Prison Record': 'TDCJ-ID #624420, 10-year sentence for one count of Burglary; 7/28/97 released on Parole to Orange County', 'Summary of Incident': 'On 06/07/98, during the nighttime hours, the subject and co-defendants, Lawrence Brewer and Shawn Allen Berry, murdered James Byrd Jr., a 49-year old black male, by dragging the victim behind their 1982 gray Ford pickup truck, located on Huff Creek Road, in Jasper, Texas. The subject and the co-defendants picked the victim up while he was hitchhiking in Jasper.', 'Co-Defendants': 'Berry, Shawn; Brewer, Lawrence Russell', 'Race and Gender of Victim': 'Black male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#792374 on a 5 year sentence from Dallas County for 1 count of sexual assault of a child. (Current offense was committed prior to the offender being incarcerated for the sexual assault conviction.)', 'Summary of Incident': 'On 9/21/1993 at 9:00 p.m. in Mesquite, Braziel approached a newlywed couple walking on a jogging trail of a community college. Braziel demanded money. When it was discovered that neither of the two had any money in their possession, Braziel shot the 27 year old white male, resulting in his death. Braziel then sexually assaulted the 23 year old white female. Braziel linked to the crime in January 2001 when his DNA was found to match the DNA taken from the female victim.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'maintenance, laborer', 'Prior Prison Record': '#774391 on a 50 year sentence from Bexar County for murder with a deadly weapon; 12/13/2000 escaped from custody', 'Summary of Incident': 'On 12/24/2000, in Irving, Texas, Garcia and six co-defendants fatally shot a 31 year old white male police officer while on escape from the TDCJ Connally Unit.', 'Co-Defendants': 'Patrick Murphy, George Rivas, Randy Halprin, Larry Harper, Michael Rodriguez, Donald Newbury', 'Race and Gender of Victim': 'white male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{'Prior Occupation': "electrician's helper, plumber's helper, laborer", 'Prior Prison Record': 'Received by TDCJ on 05/04/1993 on a ten year sentence four Burglary of a Habitation out of Delta County. Released on Parole on 10/23/1995. Returned from Parole without new convictions on 04/21/1997. Released on Mandatory Supervision on 09/17/1999.', 'Summary of Incident': "On 03/12/2000, Acker caused the death of a 32 year old female. Acker kidnapped the victim, then murdered her by strangulation and blunt force trauma. The victim's body was found along side a county road.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ #454580, 6/24/87 from Harris County on a 2-year sentence for 1-count Possession of a Controlled Substance Cocaine, released 8/27/87 on Parole to Harris County; TDC #630186, 1/8/93 from Gregg County on an 18-year sentence for 2 counts Possession of a Controlled Substance, released on Parole 2/23/96 to Smith County.', 'Summary of Incident': 'Convicted in the May 1, 1998 drowning death of a 20-year-old white female. Clark and a co-defendant took the victim to their residence, where they drowned her in the bathtub. They then took the victim to a remote area where they dumped the body. The victim was found 5 months later in a ditch by Tyler police.', 'Co-Defendants': 'Tory Gene Bush', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 11/21/2004 in Bexar County, Young, while in the course of a robbery, fatally shot a fifty five year old Asian male.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Asian Male'} {'Prior Occupation': 'Cook, Laborer', 'Prior Prison Record': 'TDCJ# 1066210 on a two year sentence for Deadly Conduct with a Firearm from Bexar County.', 'Summary of Incident': 'On 12/03/2003 in Bexar County, Castillo and 3 co-defendants fatally shot a 19 year old Hispanic male after demanding his money.', 'Co-Defendants': 'Francisco Gonzales, Debra Espinosa and Teresa Quintero', 'Race and Gender of Victim': 'Hispanic Male'} {'Prior Occupation': 'None', 'Prior Prison Record': 'TDCJ #1369222 - Burglary Habitation', 'Summary of Incident': 'On April 26, 2008, the subject and codefendant drove to a birthday party where the codefendant dropped off the subject. The subject went to the back side of the car, grabbed a model SKSS (762mm caliber) semiautomatic rifle out of the trunk and walked toward the apartment. Once the subject got to the apartment where the party was located, he went inside and opened fire. The shots fired resulted in the death of an adult black female and a five year old black female. Several other victims at the birthday party were injured.', 'Co-Defendants': 'Garfield Thompson', 'Race and Gender of Victim': 'One (1) black adult female and one (1) five year old black female.'} {'Prior Occupation': 'Food Service, Office Clerk.', 'Prior Prison Record': 'None', 'Summary of Incident': "On 09/13/2005 in Lubbock County, Texas, a 29 year old white female body was found deceased in a suitcase. The subject had sexually assaulted the victim and then caused death by striking the victim with or against a hard object and then choking the victim. This also resulted in the death of the victim's 5 week old fetus. The subject was arrested by the Lubbock Police Department.", 'Co-Defendants': 'None', 'Race and Gender of Victim': '29 year old white female.'} {'Prior Occupation': 'computer software, accounting, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On May 12, 2001, Battaglia shot and killed his two daughters, ages 6 and 9. The mother of the children was on the phone with the 9 year old daughter at the time of the offense and heard the gunshots.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'two white females'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#437754 TDCJ-ID on a 23 year sentence from Dallas County for 1 count of murder with a deadly weapon; received in 1986 and released on mandatory supervision to Dallas County on 12/5/1994.', 'Summary of Incident': "On 11/16/1999 in Dallas, Rayford murdered a 44 year old black female by strangulation, stabbing, and blunt force. Rayford took the victim's body and threw it into a nearby creek. The murder took place in the home of the victim and was witnessed by her 11 and 14 year old sons.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On 02/22/97, in Edinburg, Cardenas and a co-defendant committed the offense of capital murder against a 16-year old Hispanic female. Cardenas entered the victim's residence through a window, tied her up with duct tape, then put her in a vehicle with the co-defendant and drove to a remote location. Cardenas raped the victim, beat her severely with his fists, and strangled her, causing her death. Cardenas dumped her body into a nearby canal.", 'Co-Defendants': 'Castillo, Tony', 'Race and Gender of Victim': 'Hispanic female'} {} {'Prior Occupation': 'Truck Driver/Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 2/26/2004 in Bexar County, Texas, Preyor entered the apartment of his girlfriend, a twenty year old white female, and fatally stabbed her. As Preyor fled the scene, he allegedly stabbed an adult Hispanic male that was in the apartment.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Warehouseman, Carpenter, Laborer', 'Prior Prison Record': '#807214 on a 7 year sentence from Dallas County for possession with intent to deliver a controlled substance and theft of property', 'Summary of Incident': 'On July 8, 2002 in Dallas, Edwards and co-defendent Kirk Edwards entered a restaurant, fatally shot an adult male and an adult female, took money from the cash register and fled the scene.', 'Co-Defendants': 'Kirk Edwards', 'Race and Gender of Victim': 'Unknown male and Unknown female'} {'Prior Occupation': "Truck Driver, Backhoe Operator, Welder's Helper, Pipe Fitter's Helper.", 'Prior Prison Record': 'None.', 'Summary of Incident': 'On 10/28/2005 in Tarrant County, Texas, the subject fatally shot a 33 year old Hispanic male and a 40 year old Black male in a moving vehicle. The subject was arrested by the Fort Worth Police Department.', 'Co-Defendants': 'None', 'Race and Gender of Victim': '33 year old hispanic male and 40 year old black male.'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 05/14/2003 in Houston County, Texas, Fuller entered the residence of his neighbors, a forty-three year old white male and a thirty-nine year old white female and fatally shot both of them multiple times. Fuller then and fled the scene on foot.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Male & White Female'} {'Prior Occupation': 'None', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 06/13/2005, subject shot and killed the victim, a Commerce Code Enforcement Officer.', 'Co-Defendants': 'None', 'Race and Gender of Victim': '46 year old white male'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': 'On November 13, 1997, in Channelview, Wesbrook was invited over to the residence of his ex-wife, a 32-year-old white female. Wesbrook believed this meeting was for a possible marital reconciliation, but when he arrived, there were others present. He sat around drinking with all of them. At some point in the evening, Wesbrook noticed that his ex-wife and two of the men had slipped away, and when he went into the bedroom, he found her having sex with both of the men. Wesbrook then went to his truck and pulled out his .36-caliber hunting rifle and returned to the residence. He then fatally shot his ex-wife and all three of the males in the residence. Another female was injured, but survived the shooting.', 'Co-Defendants': 'None', 'Race and Gender of Victim ': 'White female, Hispanic male, and white male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Welder', 'Prior Prison Record': 'None', 'Summary of Incident': "On March 17, 2007, during the early morning hours in Lissie, Wharton County, Texas, the subject was attempting to elude Game Wardens who were attempting to pull subject over for shooting a bird sitting on a fence with his .22 rifle. Another Game Warden tried to block the road when the subject struck his vehicle, causing minor damage. Wharton County Sheriff's Officers were also included in the chase of the subject. The subject was able to elude officers for approximately one hour before the wheels of the subject's truck was spiked. The subject exited his vehicle and began shooting a Glock model 33.357 Sig and an AK 47 assault rifle randomly at the officer's patrol vehicles. The subject fired approximately 30 rounds of ammunition, striking the victim, a 34 year old Game Warden. The victim was airlifted to Memorial Hermann Hospital in Houston, Texas, where he was pronounced dead upon arrival.", 'Co-Defendants': 'None', 'Race and Gender of Victim': '34 year old male.'} {'Prior Occupation': 'welder, carpenter, laborer', 'Prior Prison Record': '4-year adult probation Walker County, Georgia 1991 for Burglary (revoked to 1 year time served in Georgia Department of Corrections)- X/Tennessee Department of Corrections, Brushy Mountain Correctional Complex, Petros, Tennessee-X/Georgia Department of Corrections, Bostick Correctional Institute, Hardwick, Georgia, released on probation on 04/07/1992 X/TDCJ on a 2 year sentence from Harris County for 1 count of burglary of a building with intent to commit theft, released on parole in absentia to Harris County on 10/19/1992, received parole discharge on 09/29/1994.', 'Summary of Incident': "On 02/09/2001 in Houston, Masterson choked the victim, an adult white male, resulting in the victim's death. Masterson also took the victim's vehicle after the murder.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'cook, forklift operator, laborer', 'Prior Prison Record': 'N/A', 'Summary of Incident': 'On 09/06/2000 in Madison County, Texas, Holiday killed 3 victims by burning their residence. The victims were 7 year old black female, 5 year old black female and 1 year old black female. The 7 year old and the 5 year old were step-daughters to Holiday, and the 1 year old was the daughter of Holiday.', 'Co-Defendants': 'N/A', 'Race and Gender of Victim': 'black female'} {'Prior Occupation': 'laborer', 'Prior Prison Record': 'n/a', 'Summary of Incident': 'On 11/25/2001, in Dallas, Escamilla was engaged in a fight in the parking lot of a nightclub. When Dallas City police officers arrived to stop the fight, Escamilla shot an adult white male police officer two times. The officer died en-route to the hospital.', 'Co-Defendants': 'n/a', 'Race and Gender of Victim': 'white male'} {'Prior Occupation': 'construction, landscaping, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "9/17/1998 during the night in Houston, Garcia and three co-defendants approached a hispanic male who was walking to his vehicle in the parking lot of an apartment complex. Garcia demanded the victim's money and then shot him in the head with a .25 caliber pistol, killing him. Garcia took $8 in cash from the victim.", 'Co-Defendants': 'Eleazar Mendoza', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'barber, kitchen, laborer', 'Prior Prison Record': '#491665, 10/06/1988 a ten-year sentence for Burglary of a Habitation, Engaging in Organized Criminal Activity, Theft, Attempted Burglary of a Building. 08/07/1991 released on parole.', 'Summary of Incident': "On 05/30/2001, in Tyler, Russeau struck a 75-year old white male numerous times in the head causing his death. Russeau also took the victim's wallet and a vehicle from the victim's place of business.", 'Co-Defendants': 'n/a', 'Race and Gender of Victim': 'white male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#1033599 on a 3 year sentence from Harris County for 1 count of burglary of a habitation with intent to commit theft.', 'Summary of Incident': 'On July 2, 2002, Charles was visiting his girlfriend when he attacked and strangled a black male who lived at the residence. When his girlfriend and her mother arrived back at the residence, Charles sexually assaulted her mother, bound both of them and placed ligature on them, resulting in their deaths.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black Male; Black Female; Black Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'n/a', 'Summary of Incident': "On 02/02/2001, in San Antonio, Garza shot and killed a San Antonio Police Officer with the officer's gun, while the officer was attempting to arrest Garza on outstanding arrest warrants.", 'Co-Defendants': 'n/a', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'welder, construction, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 10/6/2002, in Ellis County, Texas, Sprouse was experiencing car trouble at a gas station. He approached a customer and asked for assistance. When the customer was not able to repair his vehicle, Sprouse shot a hispanic male civilian who was filling his car with gas. The store clerk called the police. Upon arrival, Sprouse shot the responding 28 year old white male police officer resulting in his death.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic male, White male'} {'Prior Occupation': 'welder, carpenter, laborer', 'Prior Prison Record': 'TDCJ-ID #465603, 10-year sentence for 1 count of Aggravated Assault With Bodily Injury (involves the subject and 3 codefendants beating an adult white male and setting fire to his body, causing his death); 07/12/91 released on Mandatory Supervision; 06/15/93 returned Mandatory Supervision; 12/13/95 released Mandatory Supervision', 'Summary of Incident': "On 03/19/98, in San Antonio, Texas, Vasquez and co-defendants strangled to death and robbed a 51-year old Hispanic female as an ordered hit from the Mexican Mafia because she was not paying 10 percent to the Mafia. The victim's partner was severely beaten but survived.", 'Co-Defendants': 'Lujan, Oligario', 'Race and Gender of Victim': 'Hispanic female'} {'Prior Occupation': 'carpenter, electrician, laborer', 'Prior Prison Record': '#326418 on a 10 year sentence from Travis County for one count of aggravated robbery; released on mandatory supervision on 07/23/1985; returned from mandatory supervision on 04/08/1987 with a 15 year sentence from Travis County for one count of aggravated robbery with a deadly weapon; released on parole on 03/04/1992; returned from parole on 05/15/1998 with a 99 year sentence from Travis County for one count of aggravated robbery with a deadly weapon.', 'Summary of Incident': 'While on escape from TDCJ, Newbury and 6 co-defendants robbed a sporting goods store at gunpoint. An Irving police officer was murdered outside the store as Newbury and co-defendants left the scene.', 'Co-Defendants': 'George Rivas (sentenced to death)', 'Race and Gender of Victim': 'white male'} {'Prior Occupation': 'Barber', 'Prior Prison Record': 'TDCJ #247851, received 4/24/75, Dallas County, charge and sentence unknown, discharged 1/27/76. TDCJ #302909, received 3/21/80, Dallas County, life sentence, murder, released under mandatory supervision to Tyler on 10/13/92', 'Summary of Incident': "On September 25, 1996, in Tyler, Ladd robbed and murdered a 38 year old female. The victim was beaten to death with a hammer inside her home and her body set on fire. Prior to her death, the victim's legs and wrist had been bound by a cord. Several items were stolen from her residence following the murder, including electronic items, kitchen appliances, jewelry and food.", 'Co-Defendants': 'Johnny Roberson', 'Race and Gender of Victim': 'White female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 09/17/2000 in San Antonio, Paredes and two co-defendants shot and killed three victims with a handgun and a shotgun. The victims were an adult Hispanic male, an adult Hispanic female, and an adult white male. Paredes and the co-defendants took the bodies of the victims to Frio County, where they dumped the bodies and set them on fire.', 'Co-Defendants': 'John Anthony Saenz', 'Race and Gender of Victim': 'Hispanic male, Hispanic female, and white male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ #667321 on a five year sentence for possession with intent to deliver a controlled substance from Tarrant County. TDCJ #1002130 on a two year sentence for burglary of a habitation from Tarrant County.', 'Summary of Incident': "On July 26, 2004 in Tarrant County, authorities were called to Coleman's residence where they found a nine year old black male deceased. An autopsy of victim concluded that the child was severely malnourished and underweight. Coleman and co-defendant were found to have restrained the child over a period of time depriving him of food.", 'Co-Defendants': 'Marcella Williams', 'Race and Gender of Victim': 'Black Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'cook, dishwasher, laborer', 'Prior Prison Record': 'N/A', 'Summary of Incident': 'On 1/22/2001, Villegas fatally stabbed three victims. A 24 year old Hispanic female was stabbed 32 times. Her 3 year old Hispanic male son was stabbed 19 times and her 51 year old Hispanic mother was stabbed 35 times. Villegas took the television and a vehicle from the home.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic male and Hispanic female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#850261 - Aggravated Assault', 'Summary of Incident': "On 10/15/1997, during the nighttime, in Kerrville, Texas, Hernandez was working as a hired hand for a 49-year old white male. Hernandez broke into the victim's residence and beat the him to death with a metal bar. Hernandez then tied up the victim's wife and raped her repeatedly.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white male and hispanic female'} {'Prior Occupation': 'barber, mechanic, laborer', 'Prior Prison Record': 'Missouri Department of Corrections on a 2 year sentence for felony theft. Confined 8 months and released on parole on 12/18/1985. Returned as a parole violator with a new conviction of driving under the influence. Confined 16 months and discharged. Wyoming Department of Corrections on a 2 year sentence for vehicle theft. Confined 16 months and discharged. Wyoming Department of Corrections on a 2-10 years sentence for malicious wounding. Released on parole.', 'Summary of Incident': 'On 12/31/1999, Sells entered a Del Rio residence occupied by a 13 year old white female and a 10 year old white female. Sells entered the residence with intent to sexually assault the 13 year old. Sells slashed her throat and stabbed her multiple times, resulting in her death. Sells then slashed the throat of the 10 year old. The 10 year old survived the attack.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On January 16, 2003, in Dallas County, Texas, Doyle placed a phone order for food and requested delivery. Upon arrival, Doyle demanded money from the thirty-seven year old Asian female that was making the delivery. When the victim told Doyle that she did not have any money, he struck her in the head with a baseball bat, causing her death. Doyle then placed her body in a dumpster and fled in her vehicle.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Asian/Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 11/29/98, Jasper and two co-defendants were responsible for the death of a 33-year old white male, which took place during a robbery. The victim was a musical engineer who owned a recording studio in San Antonio. Jasper had created his own record label and had his own rap group. Jasper went to the recording studio of the victim. He walked up behind the victim and grabbed him by the hair and slit his throat. The victim was then stabbed to death. Jasper covered the victim with a black sheet in order to "not have to look at him." Jasper then began loading vehicles with the equipment inside the studio, estimated to be worth between $10,000 and $30,000. Jasper and his codefendants made several trips taking the property from the studio, and upon returning to the scene of the crime, he was observed to be suspicious, and eventually apprehended by police.', 'Co-Defendants': 'Russell, Steve', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'office clerk, seamstress, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 08/26/1998, Basso and co-defendants kidnapped a 59-year old retarded white male and intentionally caused his death by beating him with belts, baseball bats, steel-toed boots, hands, and feet. Basso was the leader of the group and encouraged all the co-defendants to abuse the victim. The murder was committed for proceeds from an insurance policy on the victim (in which Basso was named the beneficiary) as well as other assets in which Basso was named heir. Basso had wooed the victim into leaving his family and friends in New Jersey and moving to Texas, under the guise that she would marry him. The victim was found in a ditch with injuries so horrendous that the body was unrecognizable.', 'Co-Defendants': "O'Malley, James", 'Race and Gender of Victim': 'White male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{'Prior Occupation': 'Steel Fabrication, Cook, Laborer', 'Prior Prison Record': '#505775, 8-year sentence for 1 count of Possession of a Controlled Substance; 06/16/89 released on Pre-Parole; 09/19/89 release on Parole; 02/22/97 received Clemency Discharge.', 'Summary of Incident': "On 05/19/98 in Lubbock, Texas, Yowell shot his father, strangled his mother with a cord, and set fire to their house. The victim's grandmother died several days later from injuries sustained because she was disabled and unable to get out of the house.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male and 2 white females'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#706353 on a 7-year sentence for Criminal Mischief and Theft; on 11/24/97 released on Mandatory Supervision.', 'Summary of Incident': "On 04/03/99, in the nighttime, in McAllen, Texas, Diaz and one co-defendant, murdered one male by stabbing him 94 times in the upper chest with a knife at the victim's apartment and stabbed another male, who was also at the apartment, two times in the face. Diaz and the co-defendant went to the apartment trying looking for drugs and also intended to rob the victim. Diaz and the co-defendant robbed the victim of an unknown amount of money and fled the scene by vehicle.", 'Co-Defendants': 'Cardova, Jose Luis', 'Race and Gender of Victim': '(Race unknown) male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#1090018 on a 2 year sentence from Hidalgo County for escape.', 'Summary of Incident': "On 09/05/2003, in Hidalgo County, Texas, Garza and co-defendants killed four Hispanic females by firing into the victims' car. It was later discovered that Garza and his co-defendants were members of the Tri City Bomber Gang, carrying out orders to murder one of the females who was a witness to their weapons activity.", 'Co-Defendants': 'M. Reyna, G. Guerra, R. Medrano, A. Medrano, J. Cordova, J. Juarez, M. Bocanegra, S. Solis, J. Martinez, J. Ramirez, H. Garza, R. Saucedo, R. Cantu', 'Race and Gender of Victim': 'Hispanic/Females'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #280732 on a 2-year sentence for 1 count of Possession of a Controlled Substance and 1 count of Aggravated Robbery; 03/30/79 released on Mandatory Supervision, 01/23/80 received Mandatory Supervision Discharge.', 'Summary of Incident': 'On 08/24/98, during the nighttime, in Plano, Texas, Feldman fatally shot a male driver as he was driving an 18-wheel truck. Witnesses observed Feldman ride up beside the truck on a motorcycle and fire multiple shots into the cab of the truck, dropping back and again returning and firing additional shots into the cab of the truck. Reports indicate that a total of 12 shots were fired into the truck resulting in the death of driver. Approximately 30 minutes later, in Dallas, Texas, Feldman rode up beside a parked 18-wheel truck and fatally shot a male victim. Four shots were fired on this occasion, resulting in the death of the victim. On 08/23/98, approximately 9 shots were fired into the Central Volkswagen Dealership in Richardson, Texas, breaking windows and other items. On 09/05/98, a victim received 2 gunshot wounds in the parking lot of a restaurant in Dallas, Texas. Ballistics reports verified that all of the attacks were performed by the same 9-millimeter weapon that Feldman possessed.', 'Co-Defendants': 'None', 'Race and Gender of Victim': '2 males'} {'Prior Occupation': 'Architecture Design, Clerical', 'Prior Prison Record': 'n/a', 'Summary of Incident': 'On 01/31/2001, in Lubbock, Ross shot and killed an 18 year old black female and a 53 year old white male. The bodies of the victims were found in a car in a ravine.', 'Co-Defendants': 'n/a', 'Race and Gender of Victim': 'black female, white male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ #701105 on a 10 year sentence from Victoria County for 2 counts of Burglary Habitation and Engaging in Organized Criminal Activity.', 'Summary of Incident': 'On 11/24/2002 in Victoria, Texas, Quintanilla and two male co-defendants entered an action amusement center through a partially opened back door, demanded cash from an employee and advised all other patrons to get down on the floor. An adult white male attempted to disarm Quintanilla and was fatally shot three times. A second victim, and adult white female, was also shot, but the injury was not fatal.', 'Co-Defendants': 'Jeffrey Bibb and Rodney Rodriguez', 'Race and Gender of Victim': 'White Male and White Female'} {'Prior Occupation': 'occupational therapist, waitress, home health care, laborer', 'Prior Prison Record': '2 year sentence for 1 count of Forgery, received 02/12/90, released on Parole on 06/04/90 discharged 12/09/91', 'Summary of Incident': "On 07/21/97, McCarthy entered the residence of a 70-year old white female in Lancaster with the intent to rob the victim. A struggle took place and victim was stabbed numerous times resulting in her death. McCarthy then used the victim's credit cards and used the victim's vehicle for transportation.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '10 year sentence from Jefferson County for 1 count of Burglary of a Building; 13 year sentence from Jefferson County for 1 county of Burglary of a Habitation and 2 counts of Burglary of a Building (served 13 year sentence concurrent with 10 year sentence). Released on Parole to Jefferson County on 2/13/1990. Returned as a Parole Violator on 1/11/1994. Released on Mandatory Supervision to Jefferson County on 3/21/1997.', 'Summary of Incident': 'On February 6, 1998, in Port Arthur, Chester broke into the residence of Kim Ryman Deleon. Chester raped her 14 year old and 16 year old daughters. Willie Ryman III (uncle to the girls) entered the home and was shot and killed by Chester. Chester took jewelry from the home and fled the scene. While in police custody, Chester confessed to this crime, two other murders, and three attempts to commit capital murder. Chester stated that he committed these offenses because he was out his mind "with hate for white people" due to a disagreement with a white staff member over a disciplinary report during a previous TDCJ incarceration.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'laborer', 'Prior Prison Record': '1995, confined 30 days in the US Navy Brig, Yokosusa, Japan for Insubordination and Altercation with Supervisor.', 'Summary of Incident': 'On 5/19/1999, Williams was driving a stolen vehicle. A 30 year old white male police officer stopped the vehicle and attempted to arrest Williams. Williams shot the officer in the chest and fled the scene. The officer was able to get back to his car and radio for help, but died as a result of the gunshot.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#810942 on a 2 year state jail sentence for possession of a controlled substance.', 'Summary of Incident': 'On January 11, 2003, in McLennan County, Texas, Parr and a co-defendant approached two adult Hispanic males outside a grocery store, pointed guns at them and told them to get out of their car. Parr and co-defendant forced the victims to the side of the building where they demanded their money. After the victims gave their wallets, Parr asked if they had anymore. When one of the victims answered no, Parr shot him, resulting in his death.', 'Co-Defendants': 'E. Whiteside', 'Race and Gender of Victim': 'Hispanic Males'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 09/02/2002, in Cherokee County, Texas, Cobb and co-defendant, abducted three victims, a male and two females. Cobb and his codefendant fatally shot the male victim, sexually assaulted and shot the two female victims and left their bodies in a field.', 'Co-Defendants': 'Adams, Beunka', 'Race and Gender of Victim': '1 White/Male; 2 Unknown/Females'} {'Prior Occupation': 'barber, cook, laborer', 'Prior Prison Record': 'X/TDCJ-ID #664574 originally received on a 10 year sentence from Navarro County for 1 count each of possession of a controlled substance cocaine and burglary, 08/14/1994 and release on shock probation; 02/16/1996 received at Byrd Diagnostic as SAIP violator with a new conviction, and new #740758, 12/19/1997 mandatory supervision to Ellis County, 07/03/2000 return from mandatory supervision, 01/12/2001 mandatory supervision to Travis County, 07/22/2002 returned from mandatory supervision.', 'Summary of Incident': 'On 04/14/2001, in Navarro County, Texas, Threadgill murdered a 17 year old black male. The victim had received a single gunshot to the upper body and was taken to Navarro County Regional Hospital where the victim died. Threadgill also took a vehicle during the incident.', 'Co-Defendants': 'N/A', 'Race and Gender of Victim': 'black male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Received by TDCJ on 11/3/1983, #366116, Smith County, 3 years, burglary of a building, paroled 4/11/1984, returned 3/28/1995 as a violator, MS 8/30/85, returned 3/7/1986 as violator, MS to hold to Smith County, SO 6/6/1986. Received by TDCJ on 7/18/1986 #426782, burglary of a vehicle, MS to Smith County 5/18/1987. Received by TDCJ on 6/10/1988, #483249, Smith County, 25 years, burglary of a building, paroled 3/19/1990.', 'Summary of Incident': 'Convicted in the murder of George Ray Newman, 45, at the victim’s home in northwest Smith County.\xa0 Lewis entered the home and shot Newman when he responded to the screams of his fiancée.\xa0 Lewis then raped Newman’s fiancée and stole her vehicle.\xa0 She later climbed out of a bathroom window and drove to a store to call police.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'construction, food service, laborer', 'Prior Prison Record': '#581951 on an 18-year sentence for 3 counts of Burglary of a Habitation with Intent to Commit Theft (One occasion involves Hernandez entering a residence and forcing a 21-year old Hispanic female into intercourse, injuries involved.); Released to Parole on 06/11/1993.', 'Summary of Incident': 'On 03/31/2002, in San Antonio, Texas, Hernandez and 2 co-defendants abducted, robbed, sexually assaulted, and murdered a 37-year old Hispanic female, later transporting her body to a wooded area and burying her in a shallow grave. Hernandez asked one co-defendant to purchase the shovel used to dig the grave while the victim was still alive and being assaulted.', 'Co-Defendants': 'Santos Minjarez, Asel Abdygapparova', 'Race and Gender of Victim': 'Hispanic female'} {'Prior Occupation': 'Builder/Laborer', 'Prior Prison Record': 'One prior out of state commitment to Louisiana Department of Corrections, #449607 on a 7 year sentence for 1 count of armed robbery.', 'Summary of Incident': "On 10/15/2003 in Polk County, Texas, Roberts approached and demanded currency from an adult white female, of which Roberts was her live-in boyfriend. The victim refused and Roberts shot her three times in the head, causing her death. Roberts then fled the scene in the victim's son's vehicle.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'oil field worker, construction, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 2/14/2002, in Tarrant County, Texas, Foster and co-defendant Ward sexually assaulted and shot a 28 year old black female, resulting in her death. Foster and Ward then moved the body of the victim to a ditch where it was discovered by workers who were laying pipe.', 'Co-Defendants': 'Ward, Shelton Aaron', 'Race and Gender of Victim': 'Black/Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '8 year sentence from Dallas County for 3 counts of burglary of a building. 5/3/1999 released on mandatory supervision. Discharged 6/27/1999.', 'Summary of Incident': 'On 3/20/2000 at a car wash in Irving, Harris entered his former place of employment and began shooting co-workers. Harris had been fired three days prior to the shooting after exposing himself to two women. Five people were killed during the shooting. After the shooting, Harris fled the scene on foot.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': "On March 26, 1998, Hearn and 3 co-defendants approached the victim (a 26 year old white male) with a gun. They forced the victim into his own car, took him to a deserted area, and shot him 12 times in the head and upper body, resulting in his death. Hearn and the co-defendants took the victim's wallet and personal items and fled in the victim's vehicle.", 'Co-Defendants': 'Delvin Dites; Dwight Burley; Theresa Shirley', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 09/02/2002 in Cherokee County, Texas, Adams entered a convenience store and robbed a twenty-four year old white male and shot him one time in the head. Adams then attempted to rob, kidnap and sexually assault two other adult white females. Adams then fled the scene with an unknown amount of money.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Male and Two White Females'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'X/TDCJ-ID #705762, on a 3 year sentence from Dallas County for 1 count each of indecency with a child and possession of a controlled substance cocaine, 07/11/1997 returned from mandatory supervision, 07/14/1998 released on mandatory supervision in absentia, 12/11/1998 received mandatory supervision discharge.', 'Summary of Incident': 'On 04/11/2001, in Dallas, Texas, Hernandez struck an 11 month old Hispanic male and his sister in the head with a flashlight. The children had been left in the care of Hernandez when the incident took place. The sister survived her injuries, but the 11 month old did not.', 'Co-Defendants': 'N/A', 'Race and Gender of Victim': 'Hispanic male, Hispanic female'} {'Prior Occupation': 'master mechanic, air conditioning technician, laborer', 'Prior Prison Record': 'n/a', 'Summary of Incident': "On 9/25/2001, in Magnolia, Thurmond murdered his estranged wife and her boyfriend. The boyfriend, a 35 year old white male, was shot inside the victim's residence. The wife, a 32 year old white female was shot outside the residence.", 'Co-Defendants': 'n/a', 'Race and Gender of Victim': 'white male, white female'} {'Prior Occupation': 'clerk, cook, laborer', 'Prior Prison Record': '#702267 on a life sentence from El Paso County for 13 counts of aggravated kidnapping with a deadly weapon, 4 counts of aggravated robbery with a deadly weapon, and one count of burglary of a habitation. Was serving the life sentence and had escaped from TDCJ when committing the present offense.', 'Summary of Incident': 'While on escape from TDCJ, Rivas and 6 co-defendants robbed a sporting goods store at gunpoint. An Irving police officer was murdered outside the store as Rivas and co-defendants left the scene.', 'Co-Defendants': 'Michael Rodriguez (sentenced to death)', 'Race and Gender of Victim': 'white male'} {'Prior Occupation': 'Roofer, Stocker, & Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On February 19, 1994, in Bexar County, Texas, Hernandez abducted a thirty-eight year old white female from a grocery store parking lot. Hernandez restrained the victim by placing his hands around her neck and then sexually assaulted her. When Hernandez realized the victim was not breathing, he transported her body to a park and left her in a garbage can.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'} {'Prior Occupation': 'bricklayer, cook, laborer', 'Prior Prison Record': '#398586 on a 12 year sentence from Bexar County for one count of aggravated sexual assault. Released on parole on 07/27/1990. Returned from parole on 08/29/1993. #646560 on an 8 year sentence from Bexar County for possession of cocaine. released on mandatory supervision on 1/12/1996.', 'Summary of Incident': 'On 06/06/1999 in San Antonio, Esparza kidnapped and sexually assaulted a 7 year old Hispanic female. Esparza then strangled the victim with his hands, causing her death.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic female'} {'Prior Occupation': 'auto body painter, truck driver, auto mechanic, laborer', 'Prior Prison Record': 'N/A', 'Summary of Incident': "On 03/29/2001, in San Antonio, Texas, Garcia fatally shot 2 victims. The incident began as a domestic dispute between Garcia and his 21 year old Hispanic female wife. The San Antonio Police Officer that responded to the disturbance call (49 year old Hispanic male) was the first victim. Garcia shot the officer 3 times, resulting in his death. Garcia then shot his wife 6 times resulting in her death. The couple's 5 year old daughter witnessed both murders. Garcia also shot and wounded the uncle of his wife during the incident.", 'Co-Defendants': 'N/A', 'Race and Gender of Victim': 'Hispanic male, Hispanic female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #457970 on a 7 year sentence from Delta County for 2 counts Burglary of a Habitation; 02/10/88 release on Parole; 05/09/89 returned from Parole with a new conviction of 15 years concurrent for 1 count Possession of a Controlled Substance Cocaine; 05/02/91 release on Parole; 02/08/94 returned Parole Violator; 09/05/97 released on Mandatory Supervision.', 'Summary of Incident': 'Brewer was convicted in the murder of a black male occurring on 06/07/98. The offense involved Brewer and two co-defendants torturing and killing a 49-year old handicapped black male during the nighttime hours, in rural Jasper County, Texas. The victim was observed in the back of a pickup truck occupied by Brewer and his co-defendants. This was the last occasion the victim was seen alive by persons other than Brewer and his co-defendants. Brewer and his co-defendants drove to an isolated spot on a logging road where they beat and tormented the victim, then tied him to a logging chain, which was hooked to the pickup truck. Brewer and his co-defendants then dragged the victim to his death, leaving his decapitated and dismembered body to be found the following day by citizens and law enforcement officials. It was argued in court that Brewer and his co-defendants engaged in this criminal act, in part, due to their racially separatist affiliation with the Confederate Knights of America and the Ku Klux Klan. Brewer and one co-defendant were documented members of the Confederate Knights of America and a large number of Ku Klux Klan and other racial separatist organization paraphernalia was discovered in a residence occupied by the three.', 'Co-Defendants': 'Berry, Shawn', 'Race and Gender of Victim': 'Black male'} {'Prior Occupation': 'computer technology, assembly worker, laborer', 'Prior Prison Record': 'N/A', 'Summary of Incident': 'On 05/02/2001, in The Colony, Texas, Woods and 1 co-defendant used a 380 caliber pistol, a 45 caliber pistol, and a knife to kill a 21 year old white male victim by shooting the victim 6 times in the head and cutting his neck 4 times. A 19 year old white female victim was also killed by receiving 2 shots to the head, 1 shot in the knee, and cutting her throat. Woods and the co-defendant took property from the victims which included their car keys, backpacks, a cell phone and other personal items.', 'Co-Defendants': 'Rhodes, Marcus', 'Race and Gender of Victim': 'white male, white female'} {'Prior Occupation': 'Bus Boy, Laborer', 'Prior Prison Record': '#765732 on a 6 year sentence from Nueces County for 1 count of murder with a deadly weapon.', 'Summary of Incident': 'On November 12, 2002, in Nueces County, Robles and codefendant, Padron, entered a residence and fatally shot a 20 year old Hispanic male and a 19 year old Hispanic male.', 'Co-Defendants': 'J. Padron', 'Race and Gender of Victim': 'Hispanic/Male; Hispanic/Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{'Prior Occupation': "cook, mechanic's helper, laborer", 'Prior Prison Record': 'None', 'Summary of Incident': 'On 12/15/98, at approximately 8:30 a.m., Mathis shot three victims in the head with a .45 caliber pistol at a known drug house in Fort Bend County, Texas. One of the victims, a 15-year-old Hispanic female survived the shooting, paralyzed from the chest down. Mathis reportedly turned the gun on two other intended victims, however, when he attempted to pull the trigger, the gun either misfired or had been jammed.', 'Co-Defendants': 'None', 'Race and Gender of Victim': '2 adult males'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#765153 on 10/29/96, Life sentence for 1 count Aggravated Robbery', 'Summary of Incident': 'On 04/01/99, during the daytime, at TDCJ-ID Telford Unit dayroom, Taylor fatally stabbed an adult black male offender multiple times with an 8" home-made weapon. Taylor and one co-defendant had engaged in a fight with the victim due to racial tension between Taylor and the victim. Taylor was a member of the Aryan Brotherhood of Texas (a recognized security threat group).', 'Co-Defendants': 'Richbourg, Daniel', 'Race and Gender of Victim': 'Black male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'warehouseman, maintenance mechanic, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 07/21/2001, Kerr sexually assaulted a 34 year old white female, strangled her, then pushed her out of a moving vehicle, resulting in her death.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white female'} {'Prior Occupation': 'clerk, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 02/20/2002, in Houston, Texas, Adams shot his 19 month old black male child twice in the chest, resulting in his death', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'black male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 02/15/98, Hall and one co-defendant abducted a 19-year old white female from a public street and drove her to a remote location. Hall and the co-defendant shot the victim several times with a pellet pistol and several times with a .22-caliber pistol. They were caught at the border when they were attempting to leave the state.', 'Co-Defendants': 'Neville, Robert James Jr.', 'Race and Gender of Victim': 'White female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Cook', 'Prior Prison Record': 'TDCJ #636320, received on 3/10/93 from Harris County and sentenced to 12 yrs. for agg. robbery with a deadly weapon.', 'Summary of Incident': "On September 11, 1988, Jackson entered the apartment of a male and used a metal bar to beat him. Jackson also used a knife to stab the victim to death. Jackson then beat and stabbed to death the victim's male roommate. Jackson then took the victim's car and was involved in a high-speed chase with the Houston Police Department. The automobile was abandoned and Jackson fled on foot. He was not captured. Jackson was later arrested for the crime while he was incarcerated in TDCJ on an unrelated aggravated robbery charge.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Two unknown males'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 10/24/2001, in Montgomery, Texas, Perry, and one co-defendant fatally shot a 50 year old white female, a 17 year old white male and and 18 year old white male with a shotgun. A vehicle was also stolen from the residence of two of the victims.', 'Co-Defendants': 'Jason Aaron Burkett', 'Race and Gender of Victim': 'white female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Waiter', 'Prior Prison Record': 'TDCJ #596218, received 5/28/91, from Cameron County, on a life sentence for robbery, murder w/deadly weapon, and murder. Cannady was in prison serving his sentence at the time of his capital offense.', 'Summary of Incident': "On October 10, 1993 Cannady caused the death of a 55-year-old Hispanic male Texas prison inmate inside a medium custody housing area at the McConnell Unit in Beeville. The victim, who was Cannady's cellmate, was beaten with a steel lock attached to a belt and kicked repeatedly in the head with steel-toed boots by Cannady. The victim, who was serving a 15-year sentence for murder from Tarrant County, died two days later. Cannady was the first Texas prison inmate to be prosecuted under a 1993 statute that allows for capital murder convictions if the offender is serving 99 years or life as a result of previous murder convictions.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'South Dakota Department of Corrections #26628, 12/13/90, 8 year split sentence (4 years to serve, 4 years suspended) for 1 count of Grand Theft; paroled on 2/12/ 93; 4/14/93 returned as a parole violator; paroled 1995; #32021 5 year sentence for 1 count of Attempted Robbery First Degree 10/16/96; paroled 6/6/98', 'Summary of Incident': "On 09/08/98 in Greenville, Galloway and three co-defendants met a 40 year old white male at his motel room. They left the motel in the victim's rented vehicle and traveled 3 blocks from the motel and turned into a parking lot. As the victim left the vehicle Galloway hit him several times with a hammer and one of the co-defendants hit him several times with a log. Two other co-defendants moved the body behind a building and took his wallet. All the assailants fled in the victim's rented vehicle. They were arrested after a routine traffic stop in San Antonio.", 'Co-Defendants': 'Bayless, Deannee Ann', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'welder, construction, laborer', 'Prior Prison Record': 'South Dakota Department of Corrections on a 3 year sentence for 1 count of burglary third degree and a 10 year sentence for 1 count of grand theft.', 'Summary of Incident': 'On 9/8/1998, Varga and co-defendants caused the death of an adult male by striking him about the head and neck with their fists and feet, a hammer, and a tree limb during the course of committing robbery.', 'Co-Defendants': 'Billy John Galloway', 'Race and Gender of Victim': 'unknown adult male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'North Carolina Department of Corrections on a one year sentence for Forgery, confined 6 months, released on parole; #503412 on a 5 year sentence from Wharton County for one count of Burglary of a Building, released on parole to Dallas County; returned from parole with a four year sentence for one count of possession of a prohibited weapon, released on parole on 2/16/1991.', 'Summary of Incident': "On 1/18/1998, Bustamante gave a 27 year old Hispanic male a ride. Then he stabbed him 10 times with a knife, resulting in the victim's death. Bustamante committed the offenses along with three other co-defendants.", 'Co-Defendants': 'Diedrick Depriest', 'Race and Gender of Victim': 'hispanic male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'N/A', 'Summary of Incident': "On March 10, 2000, during the night time hours, Berkley attacked and kidnapped an 18 year old Hispanic female in El Paso, Texas. Berkley took her to a deserted area where he sexually assaulted, robbed and shot her five times in the head with a 25 caliber pistol. Two days later, the victim's body was found in Northeast El Paso.", 'Co-Defendants': 'Jacques, Michael', 'Race and Gender of Victim': 'Hispanic female'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': "On January 2, 1998, Alix murdered a black male at an apartment complex in Houston. Alix had kidnapped and raped the victim's sister and then forced her to return to her apartment and load up his car with two televisions, one VCR and stereo equipment. When the victim returned home, Alix chased him down and shot him one time in the back, resulting in his death.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Indiana Department of Corrections #925717 on a 5-year sentence for 1 count theft, released 03/03/2000 to Marion County, Indiana on parole.', 'Summary of Incident': 'On 10/11/2000, in San Antonio, Maxwell and 2 co-defendants, fatally shot an Hispanic male Bexar County Deputy Sheriff and dumped his body behind a strip mall.', 'Co-Defendants': 'Frank Gramm; Tess McFarland', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 8/22/2000 in Plano, Sigala shot and killed a 27 year old Hispanic male, then sexually assaulted his 25 year old Hispanic female wife before he shot and killed her. Sigala took several items of jewelry from the home of the victims and later pawned the stolen items.', 'Co-Defendants': "Sigala's accomplice was not charged.", 'Race and Gender of Victim': 'Hispanic male and Hispanic female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On February 15, 1997, Mosley murdered a white male police officer while attempting to rob a bank in Garland. Employees called police after noticing Mosley inside the bank acting suspicious. As one of the first officers to arrive at the scene, the victim entered the bank in full uniform and approached Mosley, noticing that the would-be bandit had his hand stuck in his waistband. When the officer told Mosley to show him his hands, a struggle ensued and the two crashed through a glass window. Witnesses heard several shots fired before Mosley re-entered the bank through the broken window and was shot in the wrist after flashing his pistol at a second police officer. The victim died the afternoon of the shooting. He suffered at least four bullet wounds to the torso.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': 'On April 30, 1997, Woods entered the home of his ex-girlfriend through an open window. Woods sexually assaulted the 11 year old white female, then abducted her and her 9-year-old male brother. Woods severely beat the 9-year-old boy about the head, resulting in serious injury, and cutting the throat of the 11-year-old victim, resulting in her death.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': 'Thompson and a co-defendant entered a convenience store and robbed the clerk . When they were leaving the store, Thompson, who possessed a .25-caliber pistol, and the co-defendant, Sammy Butler, who possessed a .38-caliber pistol, fatally shot the store clerk. Thompson and Butler had robbed at least 8 other convenience stores, with three of them involving the fatal shooting of the clerks.', 'Co-Defendants': 'Sammy Butler', 'Race and Gender of Victim': 'Other male'} {'Prior Occupation': 'machinist, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On 1/26/2000, Simpson and three co-defendants went to the residence of an 84 year old white female. They taped her mouth with duct tape, tied her hands and feet, put her in the trunk of her vehicle, drove to the Nueces River, tied a rope with a block to her, and threw her in the river, causing her death. Simpson and his co-defendants were in possession of the victim's vehicle at the time of arrest.", 'Co-Defendants': 'Jennifer Simpson (wife)', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'construction, carpentry, laborer', 'Prior Prison Record': '#714912 on an 8 year sentence from Harris County for one count of possession of a firearm. 05/09/1997 released on mandatory supervision.', 'Summary of Incident': "On 06/07/1999 in Pasadena, Valle forced his way into a 28 year old Hispanic male victim's residence at gunpoint. The victim was robbed and shot several times, resulting in his death.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 03/17/98, Oliver and three juvenile co-defendants were in the process of burglarizing the residence of a 64-year old white male. Oliver and the co-defendants were in the house and Reed was in the vehicle. The victim surprised Oliver and Oliver shot the victim in the face with a 380-caliber handgun. The victim was beaten around the head with the butt of a rifle. Oliver and the co-defendants fled the scene. They were arrested in a motel in Waco, Texas.', 'Co-Defendants': 'Reed, Sonya Fawn - 99 years', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 4/13/2000 in San Antonio, Blanton and one co-defendant shot and killed a 20 year old Hispanic male in his apartment. Blanton took jewelry from the victim which was later pawned for $79.', 'Co-Defendants': 'Robert Blanton (brother)', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On December 14, 1995 in Houston, Coleman and two co-defendants murdered three men during a drug deal. Four men were shot by Coleman, but one survived to identify him as the gunman.', 'Co-Defendants': 'Enrigue Mosquera, Derrick Graham', 'Race and Gender of Victim': 'Three Hispanic males'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'auto mechanic, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 08/26/2001, in Mansfield, Hankins shot his wife (34 year old white female) one time in the head while she was sleeping, resulting in her death. The next day, Hankins shot his stepchildren (a 12 year old white male and a 10 year old white female) in the same manner, causing their deaths. After his arrest, Hankins told authorities where to find the bodies of his 55 year old father and his 20 year old sister, whom he murdered in 2000.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white male and white female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Kitchen, Laborer', 'Prior Prison Record': '#813933, ten-year sentence for one count of Robbery; 05/11/98 released Shock Probation', 'Summary of Incident': 'On 01/21/99, in Dallas, Texas, Johnson and one co-defendant were responsible for the death of a 25-year old black female during the commission of a robbery. The courts indicate that Johnson and his codefendant beat the victim about the head with a board and then suffocated her with a shirt and sweater.', 'Co-Defendants': 'Maxwell, Marcus', 'Race and Gender of Victim': 'Black female'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': "On June 4, 1997, Rosales was in the process of committing burglary of a habitation when he entered the home of a 60-year-old female. Rosales claims he did not know she was home, and he was subsequently discovered while committing burglary. Rosales grabbed a kitchen knife from the victim's kitchen, stabbed her 137 times, and struck her with a hard object resulting in her death.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown female'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': "On October 11, 1997, Salazar murdered a 28-year-old hispanic female. Salazar crawled through a front window of a private residence. He tried to sexually assault the victim when she woke up. Salazar then stabbed her multiple times in the chest when her 10-year-old son heard her screaming. The victim's son rushed to his mother's aid and was stabbed one time in the chest. Her son was able to get up and run to a neighbor's house and call the police. When they returned to the home, they found the victim unresponsive on the bedroom floor with multiple stab wounds to her chest area. A kitchen knife was lying on the floor by her head. The victim's 2-year-old daughter and 4-month-old baby were also in the bed with her.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic female'} {'Prior Occupation': 'welder, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 09/21/2000 in Fort Worth, Martinez fired 20 shots into the vehicle of the victims, resulting in the death of a 20 year old white male and 29 year old white female.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white male and white female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'machine operator, warehouseman, forklift operator, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 12/24/1996, in Arlington, Texas, Scheanette sexually assaulted and strangled a 22 year old black female, resulting in her death.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'black female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #335838, 8 year sentence, El Paso County, 1 count of Robbery; #363689, 15 year sentence, El Paso County, 1 count of Burglary of a Vehicle, 2 counts of Aggravated Robbery; 9/20/88, Brazoria County, new conviction of 5 years cumulative for 1 count of Deadly Weapon in Penal Institution; 01/05/90 released on Parole to El Paso County in protest of TDCJ-ID Administration; 11/19/92 returned to TDCJ-ID as Parole Violator from El Paso County without new conviction; 08/26/96 Mandatory Supervision release to El Paso County', 'Summary of Incident': 'On 08/17/97, while confined in El Paso, Texas, the subject and 2 other inmates were cooking heroin. The subject made a triple dose of heroin and injected it into the victim, a 22-year old Hispanic male. The victim died of an overdose of heroin. The victim was found when officers did a count in the cellblock.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic male'} {'Prior Occupation': 'Security Services', 'Prior Prison Record': 'None', 'Summary of Incident': 'During the nighttime on 10/1/96, Martinez fatally shot a 27-year-old Hispanic female, her two children (a 3-year-old Hispanic female and a 6-year-old Hispanic male), and an 18-year-old Hispanic male.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Two Hispanic males and two Hispanic females'} {'Prior Occupation': 'truck driver, plumber, laborer', 'Prior Prison Record': 'Ohio Department of Corrections on a life sentence for one count of rape; released on parole in 1986; returned from parole in 1994, released on parole on 02/08/2000.', 'Summary of Incident': 'on 12/04/2000 in Fort Worth, Perkins strangled his 64 year old black female step-mother, resulting in her death. Her body was found in the trunk of her vehicle in a parking garage.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black female'} {'Prior Occupation': 'Awaiting Information', 'Prior Prison Record': 'Awaiting Information', 'Summary of Incident': 'Awaiting Information', 'Co-Defendants': 'Awaiting Information', 'Race and Gender of Victim': 'Awaiting Information'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': "TDC #413666, rec'd 3/31/86 on a 5-year sentence from Dallas County for 1 count of Burglary of a Habitation, Burglary of a Building and Forgery, released on Parole to Dallas County on 12/18/87; TDC #496636, rec'd 12/28/88 on a 6-year sentence from Dallas County for 1 count of Unauthorized Use of a Motor Vehicle, released on Parole to Dallas County on 4/6/89; TDC #611273, rec'd 3/31/92 on a 20-year sentence from Taylor County for Forgery by Passing, released on Parole to Dallas County on 10/28/98.", 'Summary of Incident': "Convicted in the May 7, 1999 stabbing death of a 35-year-old black female and the attempted murder of her 9-year-old son. Hudson caught the victim with another man and stabbed her 7 times in the upper torso with a knife. The victim's son tried to intervene and Hudson slashed him 2 times in the throat with a knife. The victim died at the scene and her son ran out of the apartment to a neighbor, who called police. Hudson was arrested at the scene.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black female'} {'Prior Occupation': 'barber, laborer', 'Prior Prison Record': 'New York Department of Corrections on a 1 to 3 year term for one count of armed robbery; discharged in 1989; New York Department of Corrections on a 5 to 10 year sentence for one count of armed robbery; released on parole in 1998.', 'Summary of Incident': "On 11/18/1998 in Killeen, Manns entered the home of a 26 year old white female. He sexually assaulted the victim, then shot her in the head and chest, resulting in her death. Manns took credit cards and cash from the residence and fled in the victim's vehicle.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'white female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On 03/21/1997, in DeSoto, Wright broke into the home of a white female. Wright stabbed the victim with a knife, causing her death. Wright took many items from the home and left the scene in the victim's vehicle.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 02/22/99, in Cumby, Texas, Ries and the co-defendant broke into the residence of a 64-year old white male who was asleep at the time. They shot the victim in the head with a 22-caliber pistol and then took his car. Property belonging to the victim was later pawned.', 'Co-Defendants': 'White, Christopher Lee', 'Race and Gender of Victim': 'White male'} {'Prior Occupation': 'Janitor, Cook, Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On March 1, 2002, in San Antonio, Texas, Watts entered a restaurant and fatally shot 1 Asian male and 2 Asian females. Watts then kidnapped a fourth victim, an Asian female, sexually assaulted her and took her to codefendant Bolden's residence where he allowed Bolden to sexually assault her.", 'Co-Defendants': 'T. Bolden', 'Race and Gender of Victim': 'Asian/Male; Asian/Female; Asian/Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Auto Mechanic, Laborer', 'Prior Prison Record': 'TDCJ-ID #798525, ten-year sentence from Kaufman County for one count of Burglary of a Habitation; 11/12/97 received Shock Probation.', 'Summary of Incident': "On 02/10/98, in Kaufman, Texas, during the nighttime hours, the subject beat, strangled and raped a 93-year old female. Law enforcement officers responded to a call concerning the victim at her residence. When the officers arrived, they found the residence to be in disarray and appeared to have been ransacked. They found the victim in the bedroom, nude from the waist down with wounds and bruising on and about her head area. The victim also had an Ace bandage tied around her neck and into her mouth, which was soaked with blood. It was stated that the victim's death was caused by strangulation and blunt force injuries. The subject confessed to entering the residence and ransacking it. The subject admitted that he physically and sexually assaulted the victim, and wrapped an Ace bandage around her face and mouth. The subject admitted he removed some change from a jar and a small knife.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#698074, received on 3/16/1995 on a life sentence from Bexar County on one count of capital murder with a deadly weapon (was on escape from TDCJ when he committed present offense).', 'Summary of Incident': 'While on escape from TDCJ, Rodriguez and 6 co-defendants robbed a sporting goods store at gunpoint. An Irving police officer was murdered outside the store as Rivas and co-defendants left the scene.', 'Co-Defendants': 'George Rivas (sentenced to death)', 'Race and Gender of Victim': 'white male'} {'Prior Occupation': 'delivery driver, laborer', 'Prior Prison Record': 'Dorsey had no prior criminal record at the time this offense was committed. However, after this offense was committed and prior to being convicted for this offense, Dorsey committed Murder with a Deadly Weapon and Unauthorized Use of a Motor Vehicle in Ellis County (involved Dorsey and one co-defendant enter a food store, fatally shooting a 51 year old Oriental female, then fleeing the scene with an unknown amount of money). Dorsey received a 60 year sentence for that offense and was serving that sentence when he was convicted of Capital Murder and sentenced to death for the current offense.', 'Summary of Incident': 'ON 4/4/1994 during the night in Dallas, Dorsey entered a video store and used a 9 millimeter pistol to rob and kill a 26 year old white male employee and a 20 year old white male employee. He forced them into the back office, where he shot and killed them. He took $392 from the business.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'two white males'} {'Prior Occupation': 'construction, drywall, laborer', 'Prior Prison Record': 'n/a', 'Summary of Incident': "On 3/24/2001, in Arlington, Chi and one co-defendant murdered the manager of a men's clothing store during a robbery. Chi entered a men's clothing store armed with a .38-caliber handgun while the co-defendant waited in the car outside. Chi fatally shot the 56-year old white victim in the back. Chit also shot an 18-year old Hispanic male in the back. The second victim was transported to a local hospital, where he was treated and released.", 'Co-Defendants': 'Alejandro Sierra', 'Race and Gender of Victim': 'white male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '02/03/92 2-year sentence for 1 count each of Possession of a Prohibited Weapon and Theft Over $750; 07/06/92 released on Parole; 08/11/93 returned from Parole; 05/11/94 released on Mandatory Supervision; 07/01/94 returned from Parole with a new conviction, remainder of sentence is concurrent. TDCJ-ID #670805, 4-year sentence for 1 count of Theft; 05/03/95 released on Mandatory supervision.', 'Summary of Incident': "On 08/28/95, in Amarillo, Texas, the subject and co-defendants, Raydon Drew, Donald Drew, Jr. and Christie Castillo caused the death of an adult white male. The offense took place at the victim's residence in Amarillo, Texas. According to Amarillo Law Enforcement, the offense was a committed to earn co-defendant Raydon Drew a tear drop from the Crips. The Drew brothers were familiar with the victim. They entered the home under the pretense of visiting. Lookouts were parked in vehicles at each end of the street. The victim was stabbed numerous times with knives and an ice pick. The victim was also beaten with a pipe. The subject and codefendants removed a VCR, a camcorder, a stereo system, a cordless phone, a television, and jewelry from the residence.", 'Co-Defendants': 'Drew, Raydon; Donald Drew Jr.; Christie Castillo; Johnson, Andrew; and a juvenile', 'Race and Gender of Victim': 'White male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{'Prior Occupation': 'Chamberlain had been unemployed for 13 months prior to arrest.', 'Prior Prison Record': 'None', 'Summary of Incident': "On 08/02/91 in Dallas, Texas the subject fatally shot the victim, a 30-year old white female. Chamberlain was a resident of the same apartment complex and had gone to the victim's apartment under the pretense of borrowing sugar. Chamberlain left the apartment and return minutes later with duct tape and a rifle. Chamberlain entered the apartment, displayed the weapon to the victim, and forced the victim into a bedroom. Chamberlain taped her hands and feet, and sexually assaulted her. Chamberlain took the victim into the bathroom and shot her one time in the head with a .30 caliber rifle, causing her death. Chamberlain left the apartment and returned to his own apartment.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#785227 a six-year sentence for 1 count of Burglary of a Habitation; 11/25/98 released on Mandatory Supervision', 'Summary of Incident': 'On 05/18/99, in San Antonio, Kimmel and one co-defendant forced entry into a residence occupied by two adult females and one adult male with the intent to burglarize it. Once inside, they tied up the victims and fatally stabbed them before fleeing the scene with property.', 'Co-Defendants': 'Murphy, Derek', 'Race and Gender of Victim': '2 females, 1 male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'South Carolina Department of Corrections on a 6-year sentence for Armed Robbery and Assault and Battery (subject robbed an adult white male of his vehicle, using a .45 caliber pistol to strike the victim causing minor injuries); released on Parole in 1998.', 'Summary of Incident': "On 06/08/98, in Amarillo, Texas, Roach fatally strangled a 29-year old white female after burglarizing her residence. Roach knocked on the victim's apartment door and when he did not receive an answer, he pried open a window and gained entry. Roach saw the victim sitting in the living room. Roach hid in the bathroom and when the victim walked down the hallway, he confronted her. The victim struggled with Roach. He placed a belt around her neck and strangled her. When the victim was dead, Roach sexually assaulted the body. Roach set fire to the residence prior to leaving.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 05/17/98, during the nighttime in Houston, Texas, Conner robbed a store at gunpoint. A male customer entered the store and heard the suspect say, "Give me the money." The male customer came upon Conner and Conner fired one shot from a 32-caliber pistol, striking the adult male victim in the chest and arm. The customer then fled the scene on foot. Conner turned and fired 2 shots striking the adult female clerk in the head, causing her death. Conner fled the scene without any money.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On 01/21/98 in Bay City, Parr and one co-defendant robbed, sexually assaulted, and murdered a 30-year old white female. Parr and the co-defendant, while masked, burst into the residence of the victim through the front door. Parr and the co-defendant, armed with handguns, entered the victim's bedroom and sexually assaulted the victim. Parr and the co-defendant then ransacked the home, robbing the victim of money and property. The subject fatally shot the victim one time in the head. The victim's 2 small children were in the residence at the time of the offense and observed Parr and the co-defendant flee the residence with car keys belonging to the victim. Parr stopped and asked one of the children how to operate the car. When they were unable to start the car, they fled on foot.", 'Co-Defendants': 'Michael Wayne Jiminez', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Served 4 1/2 months (1995-1996) as shock probation for Aggravated Assault', 'Summary of Incident': 'Convicted in the March 12, 1998 murder of his 19-year-old Hispanic girlfriend. Reyes picked the victim up at a restaurant where she was working and kidnapped her. Reyes then drove her to a remote area behind a business and killed her by hitting her in the head with a blunt object. The victim was found dead in the car. Reyes then fled to Mexico.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Cook', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 11/27/1994, Dickson and a juvenile accomplice robbed an Amarillo grocery store. The store owners, a 61 year old white male and his 60 year old white wife, were murdered during the robbery. Dickson and his half-brother entered the store and were attempting to steal beer when they were confronted by the male store owner. Dickson produced a sawed-off .22-caliber rifle from underneath his coat and shot the storeowner once in the chest. His wife was then shot in the face even though she had placed all the money from the store register on the counter for the robbers to take. The robbery netted $52 in cash and an undetermined amount of beer.', 'Co-Defendants': 'Unidentified juvenile half-brother', 'Race and Gender of Victim': 'White Male, White Female'} {'Prior Occupation': 'Plumber’s Helper', 'Prior Prison Record': 'Sentenced to ten years for burglary of a building out of Dallas County. Paroled 5/26/1992.', 'Summary of Incident': 'Clark was convicted in the June 1993 robbery, rape, and murder of a 17-year-old white female. The victim was shot to death after being sexually assaulted.', 'Co-Defendants': 'James Richard Brown', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'None', 'Prior Prison Record': 'TDCJ #765981, Bexar County on a ten year sentence for three counts of burglary of a habitation. Released on 02/26/1997.', 'Summary of Incident': 'On March 11, 1997, Gutierrez and two co-defendants murdered a 40 year old Hispanic male during a carjacking.', 'Co-Defendants': 'Randy Arroyo, Christopher Suaste', 'Race and Gender of Victim': 'Hispanic Male'} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': 'On August 29, 1997 in Dallas, Nealy murdered a 25 year old Asian male clerk while robbing a convenience store. Nealy shot the victim, resulting in his death, then fled the scene on foot with approximately $4,000.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Asian Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #449259 originally received on a 10-year sentence from Bexar County for 1 count of Attempted Voluntary Manslaughter with a Deadly Weapon (stabbed a 38-year old Hispanic male numerous times in the heart and stomach during a domestic disturbance); 8/6/90 released on Parole; 7/1/92 returned from Parole; 10/01/92 released on Mandatory Supervision', 'Summary of Incident': 'On 04/17/94, in San Antonio, Texas, Perez and two co-defendants fatally shot two adult Hispanic males numerous times with a .380 caliber pistol, a 9 millimeter pistol, and a .38 caliber pistol. The shooting was a result of an internal power struggle within the Mexican Mafia.', 'Co-Defendants': 'Joe Sandoval, Javier Garcia', 'Race and Gender of Victim': '2 Hispanic Males'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '#726532 10 year sentence from Rockwall County for 3 counts of Burglary of a Habitation, sentence later reduced from 10 to 8 years, 12/3/1998 released on mandatory supervision to Smith County.', 'Summary of Incident': "On 3/4/1999 during the night in Tyler, Anderson burglarized a private residence. Anderson was caught in the act when the owners came home. Anderson shot the 60 year old white male victim in the upper torso with the victim's 410 shotgun, killing the victim. Anderson then tied up the 65 year old white female, bound her with duct tape, strangled her, and shot her one time with the shotgun. Anderson took approximately $100 cash, clothes, and electronic equipment and fled the scene by car.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'one white male and one white female'} {'Prior Occupation': 'Gardener', 'Prior Prison Record': 'TDCJ #519298, received on 9/5/89, on a 10 year sentence for injury to elderly person, out of Dallas County, paroled to Harris County on 3/1/94.', 'Summary of Incident': 'Jackson murdered his two stepdaughters at their home in Houston in April of 1997. Upset that the girl’s mother planned to divorce him, Jackson asked each of his stepdaughters how they felt about the impending split. When one of the girls said she didn’t care one way or the other, Jackson choked her to death with his arm. He asked the same question of the other girl when she returned home to the apartment, and also choked her to death even though she told him she loved him and wanted him to stay in her life. Jackson placed both girls in their beds and then strangled their mother when she returned home and spurned his advances and attempts at reconciliation.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Three Black Females'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ# 796672 on a 4 year sentence from Denton County for 2 counts of Aggravated Assault.', 'Summary of Incident': 'On 4/29/2003 in Denton County, Texas, Swift killed his wife, a twenty-nine year old white female, by strangling her with his hands and striking her in the face with his fist approximately five times. Swift also killed his mother-in-law by strangling her with his hands.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Two White Females'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 09/13/98, in Georgetown, Granados went to his girlfriend\'s residence and an argument ensued. Grenados used a long kitchen knife and stabbed his girlfriend, requiring hospitalization. Grenados killed the girlfriend\'s 3-year old child with a large kitchen knife. On 09/14/98, the police officers were alerted due to a welfare concern for the 3-year old child and his mother, because their family had not seen them for a full day. When police officers arrived they were unable to get a response to their knocking and calling at the door. Officers called the residence, but the telephone was never answered. Upon entering the apartment after the door was broken down, they found the mother on the floor with several knife wounds. They then observed the child Anthony laying on the floor. Grenados entered the room through an open hallway and began shouting at the officers "Shoot me, just shoot me." The officers observed that Grenados had a gaping wound to his throat, both wrists and inside both elbows. Grenados continued to beg the officers to shoot him.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic female and 3-year old Hispanic male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'Two year sentence from Harris County for Aggravated Assault. Released on 1/3/1996.', 'Summary of Incident': 'On June 26, 1997, Frazier and one co-defendant burglarized a private residence. Then they took the property and went next door to a residence where a white female was alone with her son. The victim offered them a ride into town and when she went out to start her vehicle, Frazier followed her. When she went back into the house, he shot her in the face with a 9-millimeter handgun. He then shot her again in the back of the head. The co-defendant shot the son one time in the head and three more times in the chest and abdominal area with a 9-millimeter handgun. Frazier and the co-defendant then took Nutt’s pickup and fled the scene.', 'Co-Defendants': 'Jermain Herron', 'Race and Gender of Victim': 'White Female and White Male'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On April 21, 1997, Fuller abducted, robbed, and murdered a 22 year old white male near Tyler. The victim was bound and blindfolded inside his Tyler apartment and driven to his bank where $300 was withdrawn from his account using his ATM card. The victim was then driven to Lake Tyler and shot three times with a .22-caliber weapon.', 'Co-Defendants': 'Elaine Hays. Brent Chandler, Samhermundre Wideman', 'Race and Gender of Victim': 'White Male'} {'Prior Occupation': 'Construction Worker', 'Prior Prison Record': 'TDCJ #437560, received 11/26/86, Bexar County, 8 years, voluntary manslaughter and robbery by threats, released on mandatory supervision to Bexar County on 12/1/88. Discharged from sentence 11/3/94.', 'Summary of Incident': 'On May 10, 1994 in San Antonio Hinojosa kidnapped, robbed, sexually assaulted, and murdered a 19 year old white female. The victim found Hinojosa burglarizing her residence. She was driven in her own car to an isolated location where she was robbed, sexually assaulted and stabbed to death with what was believed to have been a screwdriver. DNA testing linked Hinojosa to the killing.', 'Co-Defendants': 'None.', 'Race and Gender of Victim': 'White Female'} {'Prior Occupation': 'Correctional Officer', 'Prior Prison Record': 'None', 'Summary of Incident': 'Wyatt sexually assaulted and smothered to death a black male child under the age of six. At the time of the offense, Wyatt worked as an officer at the Bowie County Corrections Center in Texarkana.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Florida Department of Corrections #73584 on a 20 year sentence for Burglary, vehicle theft, and aggravated assault (on an Hispanic male with a knife), paroled 8/27/1985; FCI #35285-079 on 18 month sentence for Immigration Illegal Re-entry and False Representation to be a Citizen, discharged to detainer in 1987; FCI on 30 month sentence for False Statement to USINS and Use of Alias with Intent to Induce a Passport, discharged to detainer in 1991 to New Mexico State Prison; New Mexico State Prison #41648 on 18 month sentence for Residential Burglary, paroled 4/3/1993', 'Summary of Incident': "On 12/17/1998 during the night in Houston, Resendiz killed an adult Hispanic female by beating her to death with a statuette from the victim's home. Resendiz had broken into the victim's house by going through an open door. Resendiz took the victim's cash and fled the scene in the victim's jeep. Resendiz is believed to have committed a series of murders throughout Texas and other states.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 3/1/1999 in Fort Worth, Reese shot and killed a 17 year old black male, a 25 year old black male, and a 26 year old black male with a handgun. Also injured were a 13 year old black male and a 24 year old black male.', 'Co-Defendants': 'Kareema Kimbrough', 'Race and Gender of Victim': '3 Black Males'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'ranch helper, painter, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 06/25/97, Herron murdered a 15 year old white male and his mother in their home. A sawed off shotgun and a 9 millimeter pistol were used in the murders. The home had been burglarized and set on fire. An extreme amount of property was taken from the residence including: a 1997 pickup truck, guns, ammunition, sports equipment and sports clothes.', 'Co-Defendants': 'Frazier, Derrick', 'Race and Gender of Victim': 'White Male and White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "On 04/23/97, in Lubbock, Texas, Salazar fatally injured a 2-year old Hispanic female. The subject was babysitting the victim. Salazar inflicted wounds consisting of a fractured skull, bruised heart, fractured ribs, and ruptured intestines. After injuring the victim, Salazar placed her in her crib and left the residence. The victim's mother arrived from work, finding the victim in her crib, and Salazar was absent. The victim was pronounced dead at a local hospital.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic Female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': "While Hughes was attempting to rob a black female's vehicle, he shot her with a firearm causing her death.", 'Co-Defendants': 'Unknown', 'Race and Gender of Victim': 'Black Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #705386, Burglary of a Motor Vehicle; paroled on 06/02/97.', 'Summary of Incident': 'On 02/15/98, in Arlington Neville and co-defendant, Michael Wayne Hall (999346), kidnapped a 19-year old white female and took her to a remote area where they shot her 7 times with a .22 caliber pistol. Neville and Hall knew the victim from work. The subjects fled the scene and attempted to flee the country, but were stopped at the border.', 'Co-Defendants': 'Hall, Michael Wayne (999346) sentenced to death', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ-ID #237420 on a 12 year sentence from Harris Co. for Robbery by Assault, TDCJ-ID #314202 on a 30 year sentence for 3 counts of Aggravated Robbery.', 'Summary of Incident': 'On 05/10/1993 in Houston, Texas, Rowell entered a crack house in an attempt to rob Irving Wright of drugs and money. Rowell started shooting with a 25 caliber pistol striking all three victims, killing Wright and Mata, Perez was shot in the left arm and leg and paralyzed. Rowell then robbed the victim of unknown money and fled the scene by car.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown Males'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Mechanic/Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On August 4, 1997, the subject kidnapped a 9-year-old white female in Ozona, Texas, during the nighttime hours. He then took her to a roadside park out of the city limits and attempted to have sexual intercourse with her. The victim resisted, but he taped her hands behind her back with black electrical tape and continued to sexually assault her. During this time, a vehicle pulled up behind him and he left the location. He then took the victim to another location, hit her several times on the head with a tire tool, and left the scene. Authorities were given the location of the body by the subject. The victim was found with her hands tied behind her back, deceased.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'} {'Prior Occupation': 'carpenter, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 04/08/99 in San Angelo, Texas, co-defendant Edward Bell fatally shot a Hispanic male. The victim was lured to a secluded area in San Angelo, Texas, under the pretext of fixing a washing machine. (The victim fixed appliances in his spare time.) He was handcuffed and walked to a shallow grave, which had been previously dug, and fatally shot. Ramirez had hired the co-defendant to carry out the shooting.', 'Co-Defendants': 'Bell, Edward', 'Race and Gender of Victim': 'Hispanic Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': "On July 22, 1997, Martinez murdered a 24 year old white female. The victim's body was found on a hike and bike trail in a park in Austin. The victim had been sexually assaulted, strangled, and her throat had been cut with a pocket knife.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'} {'Prior Occupation': 'fast food', 'Prior Prison Record': '#719044 on a seven year sentence from Harris County for attempted murder; 8/14/1995 released on parole to Harris County; 8/13/1996 returned from parole from Harris County without new charges; 7/20/2001 released on mandatory supervision to Harris County.', 'Summary of Incident': 'On 08/12/2001 in Houston, Martinez sexually assaulted and stabbed a 45 year old white female, resulting in her death. In addition, Martinez took $150 from the victim.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Cook, Laborer', 'Prior Prison Record': '#437783, 5 year sentence from San Jacinto County for 1 count of Burglary of a Habitation, 07/08/87 released on Parole, 12/21/90 returned from Parole with a new conviction; #571873 on a 10 year sentence from San Jacinto County for 1 count of Theft By Appropriation; 06/14/91 released on Parole; 08/24/92 returned from Parole with new conviction; #621739 on a 20 year sentence from Polk and San Jacinto County for 1 count of Burglary of a Habitation; 1 count of Burglary of a Vehicle and 1 count of Unauthorized Use of a Motor Vehicle; 11/28/95 released on parole.', 'Summary of Incident': 'On 03/29/97 the subject and a co-defendant murdered Robert Earl Cook, 47-year old white male inside the Deer County Subdivision in Livingston, Texas. They took the victim into a wooded area where they beat him to death and robbed him.', 'Co-Defendants': 'None identified', 'Race and Gender of Victim': 'White Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'carpenter, laborer', 'Prior Prison Record': "#589124 on a 5 year sentence from Denton County for one count of burglary of a building. Released on parole to Denton County. Returned from Parole on 6/28/1995 as #712863 on a 45 year sentence from Denton County for one count of murder with a deadly weapon (involves Porter shooting a 40 year old white male transient two times in the head with a .25 caliber pistol and dumping the victim's body in a water well). On 1/14/1998, new commitments received from Madison County on a 5 year sentence for one count of possession of a deadly weapon in a penal institution (homemade knife).", 'Summary of Incident': 'On 5/28/2000, Porter, an offender serving time for murder with a deadly weapon, entered a dayroom of the Telford Unit in Bowie County. He fatally assaulted an adult hispanic male offender with a rock inside a pillowcase, a homemade knife, and his boots.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Warehouse Worker', 'Prior Prison Record': 'McWilliams is also serving a life sentence for aggravated robbery from Harris County.', 'Summary of Incident': 'On September 28, 1996 in Houston, McWilliams murdered an Hispanic male during a robbery. McWilliams and his accomplices were driving around Houston looking for a car to steal for use in robberies when they happened upon the victim asleep inside his parked car. Shaking him from his sleep, McWilliams and his accomplices attempted to put the victim in the trunk of his car. When he resisted, McWilliams shot him once in the head at point-blank range. The killing occurred in the middle of a crime spree by McWilliams and accomplices in Waller and Harris counties.', 'Co-Defendants': 'Kenneth Adams, Richard Hawkins, James Patrick Tanner', 'Race and Gender of Victim': 'Hispanic Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Roughneck', 'Prior Prison Record': 'TDCJ #322907, received 8/7/81, from Liberty County, sentenced to 30 months, for forgery by passing, discharged 4/15/83. Morrow also served prison terms in Louisiana and South Carolina for burglary, illegal carrying of a weapon, and grand larceny.', 'Summary of Incident': 'On April 3, 1996, in Liberty, Morrow abducted and murdered a 21 year old white female. The victim was home on spring break from college when she left her parents’ home at approximately 8:30 p.m. to wash her father’s car at a nearby car wash. The young woman had planned to drive the car to Houston the following day for a date. Her body was found floating in the Trinity River the day after her disappearance. She had been beaten and her throat slashed. Hair and blood samples taken from Morrow matched those taken from the car Allison drove. A jury took just 13 minutes to sentence Morrow to death following his capital murder conviction.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Convicted on two counts of possession of a controlled substance on 1/21/92 and sentenced to four years in prison. Held in the Harris County Jail and released from the jail on 4/4/92 under paroled in absentia provisions. TDCJ #651521, received 11/24/93, Harris County, 6 years, attempted murder, released under mandatory supervision to Harris Co. on 2/26/96', 'Summary of Incident': "Convicted in the September 1996 shooting death of a white male Fort Bend County Assistant District Attorney outside the Jewish Community Center in Houston. Cotton and accomplice Lawrence Watson, both armed with pistols, were riding bicycles through the community center parking lot when Watson spotted another male exiting his vehicle. Watson approached this male, put a .38-caliber pistol to his head, and robbed him of his cash. Meanwhile, Cotton saw the Assistant District Attorney outside the center and demanded money from him after pulling a 380 semi-automatic pistol. The victim told Cotton he had no money but that he had valuables in his car. As Cotton put him in the back seat of his Mustang, the other robbery victim, who had gone driving around to the front of the community center to call police, again drove into the parking lot and began blowing his car horn and blinking his lights in an effort to ward off the robbers. Cotton reportedly ordered Watson to shoot the man in the car blowing his horn and then fired two shots into the Assistant District Attorney's head. As the robbers attempted to flee on their bicycles, the man in the other vehicle gave chase in his car and struck Cotton, who with Watson managed to escape on foot by jumping a fence. Following his arrest, Watson implicated Cotton, telling police that Cotton killed the Assistant District Attorney because he had seen the gold badge the victim carried with him as a member of the district attorney’s office. The badge was found lying at the victim’s feet inside the car. Witnesses also told police that Cotton later bragged about “shooting the law” after seeing the badge.", 'Co-Defendants': 'Lawrence Edward Watson', 'Race and Gender of Victim': 'White male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'cook, carpenter, laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 05/28/2000, in College Station, Matthews kidnapped and sexually assaulted a 21 year old white female. Matthews then strangled the victim with his hands, causing her death. Matthews also set the building on fire before leaving the scene.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Missouri State Prison on a 7 year sentence for Possession of Barbiturates, confined 9 months and Paroled in 1976, sentence was overturned in 1978.', 'Summary of Incident': 'On 7/15/1999 in Conroe, Hayes fatally shot a 46 year old white female (his wife). Hayes used a 44 caliber pistol to shoot her eight times in the head. He left the scene of the incident and went to a convenience store. There he shot an 18 year old black female two times in the head and took her car.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female and Black Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Unknown', 'Prior Prison Record': 'None', 'Summary of Incident': 'Black fatally shot his 36-year-old wife, his 5-month-old daughter, and his 17-month-old granddaughter. Black shot and killed all three of the victims with a 9 millimeter pistol. After he shot all three, he called 911, and when the officers arrived he was holding his deceased daughter in his arms.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Black Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Records indicate a 2-year sentence for possession of cocaine in 1990.', 'Summary of Incident': 'On January 4, 1994, Clay murdered a male store clerk during the robbery of a Houston convenience store. The victim was severely beaten and shot repeatedly by Clay.', 'Co-Defendants': 'Shannon Charles Thomas', 'Race and Gender of Victim': 'Unknown Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'TDCJ #456587, received 7/14/87, Harris County, 10 years, burglary of a building, burglary of a railroad car, arson and aggravated sexual assault, discharged 2/28/97.', 'Summary of Incident': 'On March 24, 2001, Williams carried out a contract killing of a 44-year-old black female in Houston’s Third Ward. The victim was stabbed repeatedly in the chest and throat with an 8-inch steak knife and her body left in the middle of the street. Bruce and Michelle Gilmore reportedly paid Williams $400 to commit the murder. In all, Williams was to receive $12,000 from the two accomplices.', 'Co-Defendants': 'Bruce Allen Gilmore and Michelle Raye Gilmore', 'Race and Gender of Victim': 'Black Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Received 10/1/92 at Nueces County Jail for 5 years on one count of burglary of a habitation and burglary of a building, released 4/14/93 under parole in absentia. TDCJ #682815, received 9/9/94 out of Nueces, on an 8 year sentence for burglary of a building and unauthorized use of a motor vehicle, released on mandatory supervision to Nueces County on 7/22/97.', 'Summary of Incident': 'On 09/27/1997, Baltazar and one co-defendant kicked in the front door of a Corpus Christi home and began shooting. A five year old Hispanic female was struck by two bullets, causing her death. Another female and a male in the residence were struck by bullets, but survived the wounds.', 'Co-Defendants': 'Johnny Gonzales', 'Race and Gender of Victim': 'Hispanic female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Shipping & Receiving, Laborer', 'Prior Prison Record': 'TDCJ-ID #455553, received on 07/01/87 on a 2-year sentence from Harris County for 1 count of Burglary of a Building With Intent to Commit Theft; on 08/26/87 released on Parole; 04/14/89 returned from Parole; 05/27/89 released on Mandatory Supervision; discharged sentence on 07/05/90', 'Summary of Incident': "On 08/22/93, the subject, in the afternoon, was at a local hospital in Fredericksburg, Gillespie County, Texas. His girlfriend, Yolanda Garza, was in the parking lot and the subject shot her with a 25-caliber handgun. The subject was observed putting Ms. Yolanda Garza into his vehicle and driving off after threatening a witness. The subject drove on I-10 to the Hill County Motel in Camp Wood, Texas, where he rented a room for 2 days. Police officers arrived shortly after midnight on 08/24/93 and found the subject inside the motel room with the body of the victim. The subject had drank a 12 pack of beer and also took an unknown number of pills that were in the victim's purse.", 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Hispanic Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'Convicted of capital murder for kidnapping, sexually assaulting, and murdering a 20 year old white female. Flores kidnapped the victim from a video store and took her to a remote area where he sexually assaulted her. Flores drove the victim back to town in her car, eventually stabbing her to death. Flores left the victim in her car and fled the scene.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Female'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': "carpenter's helper, bookkeeper", 'Prior Prison Record': '#441810 on a life sentence for Murder from Grayson County (the current offense was committed prior to Boggess being received by the TDCJ-ID for the Murder conviction from Grayson County).', 'Summary of Incident': 'Boggess murdered the 86 year old white male owner of a grocery and produce store in Saint Jo. The victim was beaten and stabbed to death. Boggess left the scene with approximately $700.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'White Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'None', 'Summary of Incident': 'On 11/8/1984 at approximately 11:30 p.m., Cantu and one co-defendant broke into a home in San Antonio. They awakened two Hispanic males who were in the home and robbed them. Each victim sustained nine gunshot wounds. One victim died at the scene, and the other victim survived to testify against Cantu and his co-defendant.', 'Co-Defendants': 'David Garza', 'Race and Gender of Victim': 'Hispanic Male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Welder', 'Prior Prison Record': '#188278 on an 3-year sentence for possession of a narcotic drug; discharged sentence 10/02/1967.', 'Summary of Incident': 'Hernandez was convicted of capital murder in the June 20, 1980 shooting death of Oscar Martin Frayre, a mechanic at a gas station in El Paso. Frayre, who was staying overnight at the station, was shot three times after Hernandez broke in and robbed the station.', 'Co-Defendants': 'None', 'Race and Gender of Victim': 'Unknown male'}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER. Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{}
Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
{} {'Prior Occupation': 'Laborer', 'Prior Prison Record': '5 year sentence for Assault and Attempted Robbery - 1972; 8 year sentence for Burglary - 1975', 'Summary of Incident': 'On April 20, 1980, Autry shot a 43 year old female convenience store clerk between the eyes with a .38 caliber pistol causing her death. Autry had been arguing with the clerk about the price of a six pack of beer. Two witnesses were also shot in the head. One witness was a 43 year old former Roman Catholic priest, who died instantly. The other witness was a Greek seaman who survived the gunshot, with serious injuries.', 'Co-Defendants': 'John Alton Sandifer', 'Race and Gender of Victim': 'female'} {'Prior Occupation': 'Laborer', 'Prior Prison Record': 'Federal Prison, Leavenworth, Illegal Possession of Firearms, Discharged 1968', 'Summary of Incident': 'Brooks went to a car lot under the pretense of wanting to test drive a car. A mechanic accompanied him on the drive. Brooks stopped to pick up a co-defendant. The mechanic was put in the trunk of the car. Brooks and his co-defendant went to a motel. The mechanic was brought out of the trunk and taken into a motel room. The mechanic was bound with coat hangers, gagged with adhesive tape, and shot in the head, causing his death. Brooks and the co-defendant fled the scene.', 'Co-Defendants': 'Woody Loudres', 'Race and Gender of Victim': 'White Male'}
test_df.to_csv('V3_final_statements.csv')
import pandas as pd
df = pd.read_csv('V2_final_statements.csv')
df
Unnamed: 0 | Execution | Offender Information | Last Statement | Last Name | First Name | TDCJNumber | Age | Date | Race | County | Last Statement Text | Offender Info | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 566 | dr_info/halljusten.html | dr_info/halljustenlast.html | Hall | Justen | 999497 | 38 | 11/6/2019 | White | El Paso | Yeah, I want to address the Roundtree family ... | {'Name': 'Hall, Justen Grant', 'TDCJ Number': ... |
1 | 2 | 565 | dr_info/sparksrobert.html | dr_info/sparksrobertlast.html | Sparks | Robert | 999542 | 45 | 9/25/2019 | Black | Dallas | Umm, Pamela can you hear me Stephanie, Hardy,... | {'Name': 'Sparks, Robert', 'TDCJ Number': '999... |
2 | 3 | 564 | dr_info/solizmarkanthony.html | dr_info/solizmarkanthonylast.html | Soliz | Mark | 999571 | 37 | 9/10/2019 | Hispanic | Johnson | It’s 6:09 on September 10th, Kayla and David,... | {'Name': 'Soliz, Mark Anthony', 'TDCJ Number':... |
3 | 4 | 563 | dr_info/crutsingerbilly.html | dr_info/crutsingerbillylast.html | Crutsinger | Billy | 999459 | 64 | 9/4/2019 | White | Tarrant | Hi ladies I wanted to tell ya’ll how much I l... | {'Name': 'Crutsinger, Billy Jack', 'TDCJ Numbe... |
4 | 5 | 562 | dr_info/swearingenlarry.html | dr_info/swearingenlarrylast.html | Swearingen | Larry | 999361 | 48 | 8/21/2019 | White | Montgomery | Lord forgive them. They don’t know what they ... | {'Name': 'Larry Ray Swearingen', 'TDCJ Number'... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
561 | 562 | 5 | dr_info/skillerndoyle.jpg | dr_info/skillerndoylelast.html | Skillern | Doyle | 518 | 49 | 01/16/1985 | White | Lubbock | I pray that my family will rejoice and will fo... | {} |
562 | 563 | 4 | dr_info/barefootthomas.jpg | dr_info/barefootthomaslast.html | Barefoot | Thomas | 621 | 39 | 10/30/1984 | White | Bell | When asked if he had a last statement, he rep... | {} |
563 | 564 | 3 | dr_info/obryanronald.jpg | dr_info/obryanronaldlast.html | O'Bryan | Ronald | 529 | 39 | 03/31/1984 | White | Harris | What is about to transpire in a few moments is... | {} |
564 | 565 | 2 | dr_info/autryjames.html | dr_info/no_last_statement.html | Autry | James | 670 | 29 | 03/14/1984 | White | Jefferson | This offender declined to make a last statemen... | {'Name': 'Autry, James David', 'TDCJ Number': ... |
565 | 566 | 1 | dr_info/brookscharlie.html | dr_info/brookscharlielast.html | Brooks, Jr. | Charlie | 592 | 40 | 12/07/1982 | Black | Tarrant | Statement to the Media: I, at this very moment... | {'Photo not available': 'Name', 'TDCJ Number':... |
566 rows × 13 columns