Aurora police are still searching for a suspect wanted in connection with two deadly Colfax Avenue-area stabbings on Sunday morning — separate incidents authorities now believe are connected, according to a news release Monday.
The first of two early morning stabbings took place around 1:45 a.m. along the 1500 block of Moline St., when officers found a man unresponsive on the sidewalk suffering from stab wounds, officials from the Aurora Police Department said.
Hours later, around 6:30 a.m., a second man was found unresponsive at a bus stop on Peoria Street just south of East Colfax Avenue – just a few blocks east of where the first man was found, according to police.
Both men, who authorities said appear homeless, died at the scene.
“Based on the timeline, proximity of locations, and similarities in injuries, investigators now believe the two incidents are connected,” Aurora police officials said in the news release.
The circumstances or motive behind the stabbings remain unknown, “including whether the victims were specifically targeted because of their housing status,” the police said.
The city’s Housing Abatement and Relocation Team is conducting outreach services with detectives to those in the area, according to the police.
Authorities ask anyone in the area to review surveillance footage as the investigation continues.
Anyone with information is asked to contact Metro Denver Crime Stoppers at 720-913-7867. Tipsters can remain anonymous and be eligible for an award 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;
}
}