
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Deprecated URL</title>
            <style>
                body { font-family: Arial, sans-serif; text-align: center; padding: 50px; }
                .message { font-size: 18px; margin-bottom: 20px; }
                .redirect { font-size: 16px; color: blue; }
            </style>
            <script>
                setTimeout(function() {
                    window.location.href = "https://txon.trustrace.io";
                }, 5000);
            </script>
        </head>
        <body>
            <div class="message">This URL will be deprecated soon.</div>
            <div class="redirect">You will be redirected to <a href="https://txon.trustrace.io">txon.trustrace.io</a> in 5 seconds.</div>
        </body>
        </html>