<script>
if (!sessionStorage.getItem("redirected")) {
sessionStorage.setItem("redirected", "true");
// Array of your direct links
var links = [
"https://www.profitableratecpm.com/mdt112bm31?key=4d2423b5ab7b5f81361868114e84a257",
"https://www.profitableratecpm.com/jx0sa0jk2?key=f8fc55b471682762004277d9e85d9984",
"https://www.profitableratecpm.com/z51nd0rjx?key=1a6d20f9ecc978caa0d74a862eac568a",
"https://www.profitableratecpm.com/d1zhbv1v5r?key=812409e89a8784f2f0eee3f85dd93278",
"https://www.profitableratecpm.com/x3vvgpfe5?key=57e679bf4ec818d8c066a5cb574a57a7"
];
// Select a random link
var randomLink = links[Math.floor(Math.random() * links.length)];
// Redirect after 1 second
setTimeout(function() {
window.location.href = randomLink;
}, 10000);
}
</script>