In its judgment, the Civil and Criminal Chamber of the TSJC unanimously estimates the appeal presented by the defense of the Brazilian player of the FC Barcelona and acquit him of sexual aggression, considering that the evidence practiced in the trial does not allow to “overcome the standards required by the presumption of innocence.” He condemned the player contains “a series of gaps, inaccuracies, inconsistencies and contradictions on the facts, the legal assessment and their consequences.” The audience of Barcelona, which had condemned the footballer, considered proven that the former player had complete sexual relations and without consent with the complainant, although he indicated that there was some “mismatch” in the story of the victim and the images captured by the cameras. But that, despite this, this lack of concordance did not invalidate the behavior of Alves or question the woman’s story. However, the court responsible for the appeal considered that the testimony of women is not enough to counteract the presumption of innocence of the former soccer player. Alves was in pretrial detention for 14 months and was provisional in March last year, after depositing a bail of one million euros (1.07 million dollars), once the audience of Barcelona condemned him for a crime of sexual aggression.
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();