Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - dglab.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Mon, 19 May 2025 19:08:46 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: https://www.dglab.com/
Strict-Transport-Security: max-age=31536000
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://www.dglab.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/html; charset=UTF-8
Content-Length: 16792
Connection: keep-alive
Date: Mon, 19 May 2025 19:08:47 GMT
Cache-Control: max-age=3600
Last-Modified: Tue, 04 Mar 2025 08:59:50 GMT
Server: AmazonS3
Etag: "08da2ebe80f657cba3dde1892e581202"
Via: 1.1 c418ea866520d52fb3d0a50002762664.cloudfront.net (CloudFront)
Strict-Transport-Security: max-age=63072000
X-Content-Type-Options: nosniff
X-Xss-Protection: 1; mode=block
X-Cache: Miss from cloudfront
X-Amz-Cf-Pop: HEL50-C2
X-Amz-Cf-Id: bI6OQW11GLfL6CQvkUI6TyS7nIhAbX_Ym07ETR0BNP2cEgp1LtKq3w==

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: dglab.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Noto+Sans+JP:[email protected]&display=swap');

:root {
  --color-bg1: rgb(8, 10, 15);
  --color-bg2: rgb(0, 17, 32);

  --chalk: 246, 244, 241;
  --haze: 226, 228, 231;
  --leaf: 226, 204, 146;
  --cherry: 232, 74, 46;
  --sonar: 10, 37, 56; 
  
  /* --color-interactive: 140, 100, 255; */
  --color-interactive:  10, 37, 56;
  --circle-size: 80%;
  /* --blending: hard-light; */
  --blending: normal;
  /* Font */
  --font-family-ja:  "Noto Sans JP", sans-serif;
  --font-family-en:  "DM Sans", sans-serif;

  /* Media Queries */
  --width-sm: 640px;
  --width-md: 768px;
  --width-lg: 1025px;
  --width-xl: 1280px;
}


* {
  margin:0;
  padding:0;
  outline:none;
  list-style:none;
  text-decoration:none;
  box-sizing:border-box;
  color:#FFF;
  border:none;
}

html, body {
  font-family: var(--font-family-ja);
  margin: 0;
  padding: 0;
  font-size: 18px;

  @media only screen and (max-width:1025px) {
    font-size: 15px;
  }
}
.content__logo {
  margin-bottom: 20px;
  svg {
    width: auto;
    height: 90px;
    @media only screen and (max-width:1025px) {
      height: 60px;
    }
  }
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.-font-en {
  font-family: var( --font-family-en);
}
.-font-ja {
  font-family: var( --font-family-ja);
}
.card {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 650px;
  padding: 24px;
  @media only screen and (max-width:1025px) {
   width: 90vw;
    padding: 12px;
   
  }

  .noise {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.1;
  }

  .content {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
    z-index: 10;
  }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-size: 2.88rem;
  text-transform: uppercase;
  color:#F6F4F1;
  font-weight: 500;
  @media only screen and (max-width:1025px) {
    font-size: 2.1rem;
  }

  
}

h3 {
  font-size: 1.7rem;
  color:#F6F4F1;
  margin-bottom: 16px;
  @media only screen and (max-width:1025px) {
    font-size: 1.2rem;
  }
}
p {
  line-height: 1.6;
  font-size: 1rem;
  color:#F6F4F1;
}
p + p {
  margin-top: 16px;
}
a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgba(var(--cherry), 1);
}



.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;

  .svgBlur {
    display: none;
  }

  .noiseBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
  }
  .gradients-container {
    filter: url(#goo) blur(40px) ;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--chalk), 0.8) 0, rgba(var(--chalk), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 400%;
    height: 400%;

    left: -40%;
    bottom: -265%;

    transform-origin: center center;


    opacity: 1;
  }

  /* Center */
  .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--leaf), 0.8) 0, rgba(var(--leaf), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    opacity: 0.1;
    @media(max-width: var(--width-lg)) {
    opacity: 0.7;
    }
  }


  .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--cherry), 0.8) 0, rgba(var(--cherry), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);


    width: 100%;
    height: 100%;
    bottom: calc(50% - var(--circle-size) / 0.8);
    left: calc(50% - var(--circle-size) / 1);

    transform-origin: calc(50% - 200px);
    opacity: 0.6;
  }

  .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--chalk), 0.3) 0, rgba(var(--sonar), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    opacity: 1;
  }

  .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.9) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: -80%;
    left: -80%;
    opacity: 0.7;
  }
}

.hidden {
  display: none;
  @media only screen and (max-width:1025px) {
    display: block;
  }
}
.hidden-mb {
  display: block;
  @media only screen and (max-width:640px) {
    display: none;
  }
}

.-gradient {
 
    background: linear-gradient(to right, #E2CC92, #E84A2E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}
</style>
    
    <title>DG Lab | Coming Soon</title>
    <meta name="description" content="">
</head>
<body>
    <div class="card">
       
        <div class="content">
            <div class="content__logo">
                <svg xmlns="http://www.w3.org/2000/svg" width="102" height="130" viewBox=" 0 0 102 130" preserveAspectRatio="xMidYMax"  fill="none"><path fill="#fff" d="M.824 110.944c.167-.488.428-.938.768-1.327.339-.384.759-.69 1.23-.895a4.013 4.013 0 0 1 1.645-.323c.564-.01 1.125.1 1.643.323.47.205.887.511 1.224.895.342.387.603.838.768 1.327a4.99 4.99 0 0 1 .267 1.657 4.81 4.81 0 0 1-.267 1.618 3.845 3.845 0 0 1-.768 1.308c-.34.377-.757.676-1.224.876a4.079 4.079 0 0 1-1.643.318 4.14 4.14 0 0 1-1.644-.318c-.47-.2-.888-.499-1.23-.876a3.92 3.92 0 0 1-.77-1.308 4.81 4.81 0 0 1-.266-1.618 4.99 4.99 0 0 1 .267-1.657Zm1.598 2.628c.072.304.198.592.375.851.167.263.394.48.667.634.308.161.653.24 1.003.229.347.01.69-.069 1.002-.229.258-.158.477-.375.635-.634.173-.26.3-.548.374-.851.076-.318.113-.644.113-.971 0-.342-.037-.683-.113-1.016a2.917 2.917 0 0 0-.374-.876 1.892 1.892 0 0 0-.635-.634 2.046 2.046 0 0 0-1.002-.229 2.028 2.028 0 0 0-1.003.229 1.88 1.88 0 0 0-.667.634 2.8 2.8 0 0 0-.375.876c-.077.333-.119.674-.121 1.016.002.327.044.653.121.971ZM13.09 108.589c.432-.009.864.064 1.27.216.32.128.611.325.848.578.219.232.38.509.478.812a2.995 2.995 0 0 1 0 1.904 2.091 2.091 0 0 1-.478.819 2.348 2.348 0 0 1-.848.572 3.299 3.299 0 0 1-1.27.222h-1.84v2.85H9.506v-7.973h3.584Zm-.476 3.764c.195-.001.39-.016.583-.044a1.32 1.32 0 0 0 .49-.178.885.885 0 0 0 .336-.362c.098-.196.142-.415.126-.634a1.271 1.271 0 0 0-.126-.635.994.994 0 0 0-.336-.362 1.453 1.453 0 0 0-.49-.171 4.38 4.38 0 0 0-.583-.045H11.25v2.431h1.364ZM22.686 108.588v1.473H18.49v1.701h3.85v1.359h-3.85v1.949h4.276v1.472h-6.026v-7.954h5.945ZM25.698 108.588l3.313 5.333v-5.333h1.638v7.954h-1.726l-3.307-5.325v5.325h-1.654v-7.954h1.736ZM37.052 108.588v7.954h-1.744v-7.954h1.744ZM40.301 108.588l3.319 5.333v-5.333h1.636v7.954H43.53l-3.307-5.325v5.325h-1.662v-7.954h1.74ZM48.525 108.588l3.32 5.333v-5.333h1.636v7.954h-1.727l-3.306-5.325v5.325h-1.663v-7.954h1.74ZM54.902 110.943a3.98 3.98 0 0 1 .767-1.326 3.573 3.573 0 0 1 1.232-.895 4.35 4.35 0 0 1 3.295 0c.468.206.886.511 1.224.895.337.39.598.839.767 1.326.181.534.273 1.094.267 1.657a4.772 4.772 0 0 1-.267 1.619c-.17.481-.43.924-.767 1.307-.338.375-.75.673-1.212.876a4.446 4.446 0 0 1-3.295 0 3.622 3.622 0 0 1-1.244-.876 3.886 3.886 0 0 1-.767-1.307 4.87 4.87 0 0 1-.267-1.619 4.992 4.992 0 0 1 .267-1.657Zm1.599 2.628c.072.304.199.593.376.851.157.259.374.477.633.635a2.318 2.318 0 0 0 2.005 0c.27-.154.502-.372.667-.635a2.57 2.57 0 0 0 .376-.851 4.31 4.31 0 0 0 .114-.971c0-.342-.04-.682-.114-1.016a2.77 2.77 0 0 0-.376-.876 1.898 1.898 0 0 0-.667-.634 2.302 2.302 0 0 0-2.005 0 1.896 1.896 0 0 0-.633.634 2.683 2.683 0 0 0-.376.876 4.48 4.48 0 0 0-.114 1.016c0 .327.038.653.114.971ZM65.081 116.542l-2.57-7.954H64.3l1.772 5.593 1.79-5.593h1.801l-2.634 7.954h-1.947ZM73.8 108.588l2.97 7.954h-1.816l-.603-1.771h-2.969l-.635 1.771h-1.764l3.009-7.954h1.807Zm.095 4.882-1.001-2.92-1.036 2.92h2.037ZM75.957 110.061v-1.473h6.509v1.473h-2.384v6.481h-1.746v-6.481h-2.379ZM85.038 108.588v7.954h-1.752v-7.954h1.752ZM86.453 110.943c.17-.487.43-.936.769-1.326.34-.384.76-.689 1.23-.895a4.345 4.345 0 0 1 3.293 0c.468.206.886.511 1.225.895.338.388.599.838.768 1.326.181.534.27 1.094.267 1.657a4.821 4.821 0 0 1-.267 1.619c-.17.482-.43.926-.768 1.307a3.55 3.55 0 0 1-1.225.876 4.44 4.44 0 0 1-3.293 0 3.572 3.572 0 0 1-1.23-.876 3.99 3.99 0 0 1-.769-1.307 4.821 4.821 0 0 1-.266-1.619 4.944 4.944 0 0 1 .266-1.657Zm1.6 2.628c.069.304.196.593.373.851.168.263.395.481.667.635a2.316 2.316 0 0 0 2.005 0c.259-.158.476-.376.633-.635.177-.258.305-.547.377-.851.075-.318.113-.644.113-.971 0-.342-.038-.682-.114-1.016a2.722 2.722 0 0 0-.376-.876 1.894 1.894 0 0 0-.633-.634 2.304 2.304 0 0 0-2.005 0c-.272.154-.5.372-.667.634a2.677 2.677 0 0 0-.374.876 4.599 4.599 0 0 0-.115 1.016c0 .327.04.653.115.971ZM96.874 108.588l3.316 5.333v-5.333h1.637v7.954h-1.744l-3.305-5.325v5.325H95.11v-7.954h1.764ZM25.407 121.398c.432-.012.864.062 1.268.216a2.4 2.4 0 0 1 .852.571c.215.233.383.51.482.813a3.133 3.133 0 0 1 0 1.885c-.1.299-.265.572-.482.8a2.32 2.32 0 0 1-.852.578 3.309 3.309 0 0 1-1.268.216h-1.834v2.85h-1.752v-7.929h3.586Zm-.476 3.739c.195.002.386-.013.578-.044.17-.027.336-.086.487-.172.144-.091.261-.215.343-.361.095-.198.14-.416.127-.635a1.253 1.253 0 0 0-.127-.635.941.941 0 0 0-.343-.362 1.203 1.203 0 0 0-.487-.171 3.478 3.478 0 0 0-.578-.045h-1.358v2.381l1.358.044ZM30.806 121.401v6.475h3.87v1.472h-5.614v-7.947h1.744ZM39.9 121.401l2.97 7.947h-1.789l-.635-1.771h-2.938l-.634 1.771H35.12l3.009-7.947H39.9Zm.094 4.875-1-2.92-.999 2.92h2ZM42.085 122.867v-1.466h6.51v1.466H46.21v6.481h-1.748v-6.481h-2.377ZM55.004 121.401v1.466h-3.807v1.841h3.299v1.358h-3.33v3.282H49.42v-7.947h5.583ZM55.708 123.779a4.02 4.02 0 0 1 .767-1.333 3.557 3.557 0 0 1 1.232-.889 4.36 4.36 0 0 1 3.295 0c.466.204.884.508 1.222.889.34.391.601.843.769 1.333.18.531.27 1.089.266 1.65a4.865 4.865 0 0 1-.266 1.619 3.862 3.862 0 0 1-.769 1.308 3.497 3.497 0 0 1-1.222.876 4.446 4.446 0 0 1-3.295 0 3.54 3.54 0 0 1-1.233-.876 3.89 3.89 0 0 1-.766-1.308 4.768 4.768 0 0 1-.267-1.619 4.95 4.95 0 0 1 .267-1.65Zm1.599 2.628c.073.304.2.592.374.851.161.247.378.454.635.603a2.317 2.317 0 0 0 2.005 0c.255-.149.474-.356.635-.603.175-.259.299-.547.374-.851.076-.32.116-.648.116-.978 0-.341-.04-.682-.116-1.015a2.58 2.58 0 0 0-.374-.87 1.904 1.904 0 0 0-.635-.635 2.315 2.315 0 0 0-2.005 0 1.921 1.921 0 0 0-.635.635 2.617 2.617 0 0 0-.374.87 4.356 4.356 0 0 0 0 1.968v.025ZM68.677 121.399c.328-.005.655.053.96.172.274.107.525.266.736.469.203.199.362.436.47.699.107.27.161.559.16.85.011.423-.088.842-.293 1.213a1.857 1.857 0 0 1-.964.78c.195.048.378.141.532.273.143.122.26.268.35.432.09.173.155.359.19.552.043.199.07.4.08.603v.445c0 .171 0 .342.038.52.02.171.05.341.09.508.036.145.1.283.185.406h-1.746a2.848 2.848 0 0 1-.177-.901c0-.349-.056-.686-.102-1.003a1.604 1.604 0 0 0-.382-.914 1.303 1.303 0 0 0-.943-.286h-1.744v3.104h-1.754v-7.922h4.314Zm-.633 3.593c.322.025.645-.07.902-.267a1.1 1.1 0 0 0 .303-.869 1.007 1.007 0 0 0-.058-.454 1.03 1.03 0 0 0-.245-.384 1.326 1.326 0 0 0-.902-.261H66.14v2.235h1.903ZM74.8 121.401l1.862 5.465 1.756-5.465h2.457v7.947h-1.632v-5.637l-1.902 5.637h-1.345l-1.97-5.567v5.58H72.39v-7.96h2.41ZM.557 0v101.474H102V0H.557Zm22.37 22.001h12.81c5.344 0 12.692 5.027 12.692 13.965.03 8.106-6.092 13.546-13.396 13.546H30.3v-5.523h4.732c4.165 0 7.617-4.081 7.617-8.048 0-5.46-3.884-8.443-8.48-8.443h-5.43v22.014h-5.814V22Zm13.197 57.941H30.33c-4.441 0-7.404-2.202-7.404-8.251V52.356h5.832v18.522c0 2.54 1.021 3.231 2.996 3.231h4.37v5.834Zm22.415 0h-6.15v-9.927H46.4V64.65h5.99v-3.713c0-2.044-.945-3.701-3.808-3.701-2.861 0-3.743 1.657-3.743 3.7v19H38.72V61.971c0-4.811 2.718-10.092 9.887-10.092 7.17 0 9.932 5.28 9.932 10.092v17.97Zm13.566 0h-4.016v-5.516h3.108c1.657 0 2.602-1.27 2.602-3.072 0-2.368-1.376-3.174-2.996-3.174h-2.714v-4.83h1.454c1.973 0 3.235-.946 3.235-2.876 0-1.732-1.067-3.072-2.919-3.072-1.853 0-3.23 1.105-3.23 3.809v18.757h-5.514v-18.23c0-6.983 3.697-9.858 9.174-9.858 4.653 0 8.314 3.313 8.314 8.042a6.13 6.13 0 0 1-2.753 5.281c2.602 1.27 3.806 3.809 3.806 6.659-.026 4.577-2.95 8.08-7.551 8.08Zm7.525-43.018c0 5.415-4.708 13.038-13.957 13.038-8.209 0-14.02-6.48-14.02-14.218 0-7.738 5.811-14.213 14.02-14.213a15.904 15.904 0 0 1 11.26 4.279l-3.687 4.24a9.841 9.841 0 0 0-7.105-3.021c-4.95 0-8.364 3.967-8.364 8.556 0 4.59 3.414 8.563 8.363 8.563 3.415 0 6.79-2.71 7.34-5.853h-7.563v-5.078h13.74l-.026 3.707Z"/></svg>
            </div>

          <h1 class="-font-en -gradient">Coming Soon.</h1>
          <h3>ただいまサイトリニューアル中です</h3>
         <p>現在、サイトリニューアルに向けて一時サービスを停止しております。 <br class="hidden-mb">
            ご不便、ご迷惑をおかけいたしますが、 <br class="hidden-mb">
            何とぞご理解いただきますようお願い申し上げます。  <br class="hidden-mb">
            その間、質問がある場合やお問い合わせが必要な場合は、 <br class="hidden-mb">
           <a href="mailto:[email protected]">[email protected]</a>までご連絡ください。</p>
           <p>We're working hard to bring you an exciting new experience. <br class="hidden-mb">
            In the meantime, if you have any questions or need to get in touch, <br class="hidden-mb">
            please contact us at: <a href="mailto:[email protected]">[email protected]</a></p>
        </div>
      </div>
      <div class="gradient-bg">
        <svg 
             viewBox="0 0 100vw 100vh"
             xmlns='http://www.w3.org/2000/svg'
             class="noiseBg"
             >
          <filter id='noiseFilterBg'>
            <feTurbulence 
                          type='fractalNoise'
                          baseFrequency='0.6'
                          stitchTiles='stitch' />
          </filter>
      
          <rect
                width='100%'
                height='100%'
                preserveAspectRatio="xMidYMid meet"
                filter='url(#noiseFilterBg)' />
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" class="svgBlur">
          <defs>
            <filter id="goo">
              <feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
              <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 18 -8" result="goo" />
              <feBlend in="SourceGraphic" in2="goo" />
            </filter>
          </defs>
        </svg>
        <div class="gradients-container">
          <div class="g1"></div>
          <div class="g2"></div>
          <div class="g4"></div>
          <div class="g5"></div>
          <div class="interactive"></div>
        </div>
      </div>
      <svg 
      viewBox="0 0 100% 100%"
      xmlns='http://www.w3.org/2000/svg'
      class="noise"
      >
   <filter id='noiseFilter'>
     <feTurbulence 
         type='fractalNoise' 
         baseFrequency='0.85' 
         numOctaves='6' 
         stitchTiles='stitch' />
   </filter>

   <rect
         width='100%'
         height='100%'
         preserveAspectRatio="xMidYMid meet"
         filter='url(#noiseFilter)' />
 </svg>
</body>
<script> 

document.addEventListener("DOMContentLoaded", () => {

const interBubble = document.querySelector(".interactive");
let curX = 0;
let curY = 0;
let tgX = 0;
let tgY = 0;

const move = () => {
  curX += (tgX - curX) / 20;
  curY += (tgY - curY) / 20;
  interBubble.style.transform = `translate(${Math.round(
    curX
  )}px, ${Math.round(curY)}px)`;
  requestAnimationFrame(move);
};

window.addEventListener("mousemove", (event) => {
  tgX = event.clientX;
  tgY = event.clientY;
});

function detectBrowser() {
  const userAgent = navigator.userAgent;

  if (/Chrome/.test(userAgent) && /Google Inc/.test(navigator.vendor)) {
    move();

  } else if (/Safari/.test(userAgent) && /Apple Computer/.test(navigator.vendor)) {
  
 //
  } else if (/Firefox/.test(userAgent)) {
    move();
  //
  } else if (/Edg/.test(userAgent)) {

    //
  } else {
    //
  }
}
detectBrowser();



});


</script>
</html>
<!-- created by Shifter Generator ver.2.5.4 (production) (Mar 4th 2025, 8:56:39 am +00:00) (md5:10a50bfee4168ae0b314d9e1c235df9d) --->                               

Whois info of domain

Domain Name: DGLAB.COM
Registry Domain ID: 1711927049_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.discount-domain.com
Registrar URL: http://gmo.jp
Updated Date: 2025-03-22T15:40:30Z
Creation Date: 2012-04-07T18:36:06Z
Registry Expiry Date: 2026-04-07T18:36:06Z
Registrar: GMO Internet Group, Inc. d/b/a Onamae.com
Registrar IANA ID: 49
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +81.337709199
Domain Status: ok https://icann.org/epp#ok
Name Server: NS01.IDCFCLOUD.COM
Name Server: NS02.IDCFCLOUD.COM
Name Server: NS03.IDCFCLOUD.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-19T19:08:29Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass