Police have arrested a Boulder County man on suspicion of over 30 charges after a burglary crime spree early Thursday.
The Boulder County Sheriff’s Office arrested 24-year-old Taurian Smith Thursday morning after Smith allegedly committed multiple commercial burglaries and stole a vehicle, evading police, according to a press release from the sheriff’s office.
Deputies responded to several reports of burglaries around 2:30 a.m. Thursday. Around 8 a.m., a local business owner pinpointed Smith in a stolen vehicle.
Deputies with the sheriff’s office — along with the Boulder Police Department, Lafayette Police Department and Longmont Public Safety — responded to the report, following the stolen vehicle as it evaded police.
The suspect eventually drove into a ditch at Westview Drive and Meadowlark Drive, near Arapahoe Ridge High School, and ran away. The high school was locked down under a security alert.
Police were able to track the man down to the 6300 block of Arapahoe Road. Officers used a taser to apprehend the man, and eventually booked him into the Boulder County Jail after a medical evaluation, according to the release.
Smith was arrested on suspicion of the following charges, with more expected to come:
- Three counts of second-degree burglary, forced entry
- Four counts of second-degree motor vehicle theft
- Two counts of vehicular eluding
- Theft
- Three counts of criminal mischief
- Two counts of resisting arrest
- Three counts of theft from a building
- Criminal mischief
- Reckless endangerment
- Theft from a yard
- Possession of burglary tools
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}