Police are investigating a homicide after finding a man dead and a woman injured, both with gunshot wounds, in a Lafayette home, the Lafayette Police Department said in a release.
Lafayette police responded to a report of a shooting in Lafayette at 3 a.m. Saturday. They reported to the Copper Stone apartment complex at 750 S. Lafayette Drive.
A woman had contacted police about a disturbance in her apartment, police said. After that, a man shot her in what was possibly a domestic violence-related incident.
When officers arrived, a man was found dead from multiple gunshot wounds.
Editor’s note: The Boulder County Coroner Monday identified the victim as Eduardo Espinoza Bencomo, 23. The cause and manner of death are still pending.
The woman was taken to the hospital and is recovering after surgery.
Saturday evening, police announced they have identified a suspect, 24-year-old Anthony Yohari Lopez Olguin, who they said may be armed and dangerous. Police said he is possibly associated with a white 2002 Chevrolet Tahoe with Colorado license plate BCK P98.
Anyone who sees the suspect or the vehicle is asked to stay away from him and call Boulder County Communications at 303-441-4444 or their local law enforcement agency.
Anyone with information can also contact Northern Colorado Crime Stoppers at info@nococrimestoppers.com or 1-800-222-8477. Tipsters can remain anonymous and may be eligible for a reward of up to $2,000.
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;
}
}