Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - fnbl.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 20 May 2025 12:41:41 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
location: https://www.fnbill.com/
cf-cache-status: DYNAMIC
Server: cloudflare
CF-RAY: 942be8e179b98dbc-HEL

HTTP Code 301 Moved Permanently

301 Moved Permanently 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://fnbl.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 20 May 2025 12:41:42 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
vary: Accept-Encoding
expires: Tue, 20 May 2025 12:41:42 GMT
Set-Cookie: PLAY_SESSION=61c522b509deb39b11b286c8afcb935f26615d4a-v=1; Max-Age=32400; Expires=Tue, 20 May 2025 21:41:42 GMT; Path=/; Secure; HTTPOnly
Cache-Control: public, max-age=0
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-ad-insert-result: no ads - index
x-content-type-options: nosniff
strict-transport-security: max-age=16070400
x-varnish-ttl: 0.000
x-varnish: 12353388
Age: 0
x-varnish-hitmiss: MISS
x-varnish-count: 0
via: varnish
cf-cache-status: DYNAMIC
Server: cloudflare
CF-RAY: 942be8e5f9b84c7c-HEL

HTTP Code 200 OK

200 OK 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: fnbl.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>

<!--[if lt IE 7]>      <html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie10 lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie10 lt-ie9" lang="en"> <![endif]-->
<!--[if IE 9]>         <html class="no-js lt-ie10 lang="en"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js gt-ie9" lang="en"><!--<![endif]--><head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>Home - First National Bank of Litchfield</title>
    <meta name="description" content="">
    <meta name="keywords" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
    <meta name="apple-mobile-web-app-title" content="YourFI">
    <link rel="stylesheet" href="/assets/css/style.css">
    
    <script type="text/javascript">

    (function () {
      "use strict";
      //$.support.cors=true;

      // once cached, the css file is stored on the client forever unless
      // the URL below is changed. Any change will invalidate the cache
      var css_href = '/assets/css/fonts.css?v=02262015';
      // a simple event handler wrapper
      function on(el, ev, callback) {
        if (el.addEventListener) {
          el.addEventListener(ev, callback, false);
        } else if (el.attachEvent) {
          el.attachEvent("on" + ev, callback);
        }
      }
      
      // if we have the fonts in localStorage or if we've cached them using the native batrowser cache
      if ((window.localStorage && localStorage.font_css_cache) || document.cookie.indexOf('font_css_cache') > -1){
        // just use the cached version
        injectFontsStylesheet();
      } else {
       // otherwise, don't block the loading of the page; wait until it's done.
        on(window, "load", injectFontsStylesheet);
      }
      
      // quick way to determine whether a css file has been cached locally
      function fileIsCached(href) {
        return window.localStorage && localStorage.font_css_cache && (localStorage.font_css_cache_file === href);
      }

      // time to get the actual css file
      function injectFontsStylesheet() {
       // if this is an older browser
        if (!window.localStorage || !window.XMLHttpRequest) {
          var stylesheet = document.createElement('link');
          stylesheet.href = css_href;
          stylesheet.rel = 'stylesheet';
          stylesheet.type = 'text/css';
          document.getElementsByTagName('head')[0].appendChild(stylesheet);
          // just use the native browser cache
          // this requires a good expires header on the server
          document.cookie = "font_css_cache";
        
        // if this isn't an old browser
        } else {

            // use the cached version if we already have it
          if (fileIsCached(css_href)) {
            
            injectRawStyle(localStorage.font_css_cache);
            // otherwise, load it with ajax
          } else {
            var request = createCORSRequest("GET", css_href);
            if (request){
                request.onreadystatechange = function () {
                  if (request.readyState === 4) {
                    // once we have the content, quickly inject the css rules
                    injectRawStyle(request.responseText);
                    // and cache the text content for further use
                    // notice that this overwrites anything that might have already been previously cached
                    localStorage.font_css_cache = request.responseText;
                    localStorage.font_css_cache_file = css_href;
                  }
                };
                request.send();
            }
          }
        }
      }

      function createCORSRequest(method, url){
          var xhr = new XMLHttpRequest();
          // Check if the XMLHttpRequest object has a "withCredentials" property.
          // "withCredentials" only exists on XMLHTTPRequest2 objects.
          if ("withCredentials" in xhr){
              xhr.open(method, url, true);
          // Otherwise, check if XDomainRequest.
          // XDomainRequest only exists in IE, and is IE's way of making CORS requests.
          } else if (typeof XDomainRequest != "undefined"){
              xhr = new XDomainRequest();
              xhr.open(method, url);
          } else {
              // Otherwise, CORS is not supported by the browser.
              xhr = null;
          }
          return xhr;
      }


      // this is the simple utitily that injects the cached or loaded css text
      function injectRawStyle(text) {
        var style = document.createElement('style');
        // cater for IE8 which doesn't support style.innerHTML
        style.setAttribute("type", "text/css");
        if (style.styleSheet) {
            style.styleSheet.cssText = text;
        } else {
            style.innerHTML = text;
        }
        document.getElementsByTagName('head')[0].appendChild(style);
      }

    }());
</script><!--[if lt IE 9]> <script src="/assets/js/html5shiv.min.js"></script> <![endif]-->
    
    
  
          
        
            <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1P9VJ3CF3Y"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
 
  gtag('config', 'G-1P9VJ3CF3Y');
</script></head>

  <body class="">
    <div class="visuallyhidden">
    Documents in Portable Document Format (PDF) require Adobe Acrobat Reader 5.0 or higher to view, <a href="http://get.adobe.com/reader/" class="visuallyhidden external" title="External Link">download Adobe® Acrobat Reader</a>.
</div>
    <a href="#main" class="visuallyhidden">Skip Navigation</a>
    
    <div class="alert hidden-alert">
  <div class="container">
    <button type="button" class="close" data-dismiss="alert">×</button>
    <div class="alert-text" data-editable="editable" data-content="content" data-content-block="alert">
        <div><br></div>
    </div>
  </div>
</div>


    <div class="wrapper">
      <header class="header" role="banner">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@1,400;1,600">
<div class="fdic-banner">
  <div class="container">
    <div class="fdic-container">
      <div class="fdic-logo">
        <svg width="38" height="17" viewBox="0 0 38 17" aria-labelledby="fdicLogo">
         <title id="fdicLogo">FDIC Logo</title>
          <g>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M8.79102 0.673615H13.9183C18.5271 0.673615 21.4825 3.66654 21.4825 8.34109C21.4825 13.5134 18.216 16.0328 13.0138 16.0328H8.79102V0.673615ZM13.5956 4.19475C13.4113 4.19475 13.1751 4.2251 12.8525 4.2251V12.5057C15.4564 12.5057 17.4613 11.413 17.4613 8.25614C17.4613 5.54248 15.8194 4.20082 13.5841 4.20082L13.5956 4.19475Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M37.3603 5.14182V1.0865C36.3305 0.61301 35.2172 0.375059 34.0938 0.388356C32.0639 0.322493 30.0956 1.12816 28.6402 2.6207C27.1847 4.11323 26.3669 6.16465 26.3741 8.30473C26.3741 12.8093 29.7673 16.1118 34.0131 16.1118C35.2019 16.1973 36.3828 15.8524 37.3603 15.1344V11.073C36.4505 11.779 35.3558 12.1713 34.2263 12.1961C33.1948 12.2257 32.198 11.8027 31.4739 11.0281C30.7497 10.2535 30.3632 9.19685 30.4068 8.11047C30.3706 7.02121 30.7578 5.96358 31.4788 5.18208C32.1997 4.40058 33.192 3.96287 34.2263 3.97015C35.3567 4.01174 36.4489 4.41161 37.3603 5.11754V5.14182Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0.673615V16.0328H4.00964L4.03845 10.1563H7.93863V6.60483H4.06149L4.03845 4.22506H8.23244V0.673615H0Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M21.9092 16.0328H25.9188V0.673615H21.9092V16.0328Z" fill="currentColor"></path>
          </g>
        </svg>
      </div>
      <span class="fdic-text">FDIC-Insured - Backed by the full faith and credit of the U.S. Government</span>
    </div>
  </div>
</div>
  <div class="container">
    <a href="/" class="logo pull-left" title="First National Bank of Litchfield Litchfield, IL" itemprop="url" itemscope="" itemtype="http://schema.org/BankOrCreditUnion">
      <div class="logotype" itemprop="logo">
        <h1 class="visuallyhidden">First National Bank of Litchfield</h1>
      </div>
    </a>

    <div class="header-right">
      <form class="olb-login form-inline" action="https://olb.fnbill.com/Loginadv.aspx" method="post" name="frmLogin" autocomplete="off" id="loginForm" target="_top" data-parsley-validate="">
	<label for="username" class="olb-text">Online Banking</label>
	<input type="hidden" name="remoteLogin" value="yes">
	<input type="hidden" id="forceauth" name="forceauth" value="true">
	<div class="control-group control-username">
		<input type="text" class="olb-input input-medium" id="username" placeholder="Username" name="username" required=""> 
	</div>
	<div class="control-group control-submit">
		<label for="loginbuttonolb" class="visuallyhidden">Login Button</label>
		<input type="submit" name="login" class="btn" id="loginbuttonolb" value=" Login">
	</div>
	<div class="olb-links">
	  <a href="https://olb.fnbill.com/Enrollment/EnrollmentAdv.aspx">Sign Up Here</a>
	</div>
</form>

      
    </div>
  </div>
</header>

      <nav class="main-nav navbar">
  <div class="container">
    <a class="btn btn-navbar">
      <span class="visuallyhidden">Toggle Navbar</span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </a>
    <form method="GET" action="/search" class="navbar-search">
      <label for="searchheader" class="visuallyhidden">Search (Header)</label>
      <input placeholder="Enter search word(s)" id="searchheader" name="q" type="search">
      <a class="btn-search"><i class="icon-search">Search</i></a>
      <button class="btn-submit hide" type="submit"><i class="icon-search">Search</i></button>
    </form>
    <a data-target=".nav-collapse" data-toggle="collapse" href="#" class="brand hidden-desktop">Menu</a>
    <div class="nav-container" role="navigation">
      <ul class="banno-menu menu-7a038f80-ce40-11e4-9413-005056a30020">
                       <li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Services</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/services/checking">Checking</a>
        
      </li><li class="menu-internal">
        <a href="/services/savings">Savings</a>
        
      </li><li class="menu-internal">
        <a href="/services/loans">Loans</a>
        
      </li><li class="menu-internal">
        <a href="/services/online-banking-and-voice">Online Banking & Voice</a>
        
      </li><li class="menu-internal">
        <a href="/services/and-more">...And More</a>
        
      </li>
          </ul>
      </li><li class="menu-internal">
        <a href="/rates">Rates</a>
        
      </li><li class="menu-internal">
        <a href="/atm/debit-cards">ATM/Debit Cards</a>
        
      </li><li class="menu-internal">
        <a href="/mobile-banking/app-links">App Links</a>
        
      </li><li class="menu-internal">
        <a href="/calculator/financial-calculators">Calculators </a>
        
      </li><li class="dropdown menu-group">
        <span role="button" aria-expanded="false" class="group-item" tabindex="0">Contact</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/contact-us">Contact Us</a>
        
      </li><li class="menu-internal">
        <a href="/locations">Hours and Locations</a>
        
      </li>
          </ul>
      </li>
                     </ul>
    </div>
  </div>
</nav>

      <div class="body" id="main" role="main">
        <div class="body-container">
          <article class="hero">
            <div class="flexslider">
              <ul class="slides">
                <li>
                  <div data-editable="editable" data-content="content" data-content-block="hero1" class="contentarea">
                      <div><img alt="" src="/assets/files/Q8TZurFG/hero_shredded_paper.jpg" image-id="Q8TZurFG"></div>
                  </div>
                  <div class="content blurb" data-editable="editable" data-content="content" data-content-block="hero2">
                      <h3><span style="font-weight: normal;">Mail Piling Up?</span></h3>
<h1>Switch To Paperless</h1>
<h6><span style="font-weight: normal;">Online Customers Can Opt Out Of Paper Statements.</span></h6>
<h6><span style="font-weight: normal;"><a href="https://olb.fnbill.com/Enrollment/EnrollmentAdv.aspx" data-link-id="" data-link-type-id="url" class="btn btn-default " data-disclaimer-id="null" target="_self" data-mce-fragment="1">Not An Online Customer? ENROLL TODAY</a></span></h6>
                  </div>
                </li>
                <li>
                  <div data-editable="editable" data-content="content" data-content-block="hero3" class="contentarea">
                      <div><img alt="" src="/assets/content/7fJeKkKF/2015/03/30/hero_man_phone.jpg" image-id="B1EvOUqI"></div>
                  </div>
                  <div class="content blurb" data-editable="editable" data-content="content" data-content-block="hero4">
                      <h3><span style="font-weight: normal;">Go Mobile and</span></h3>
<h1>Bank on the go!</h1>
<h6><span style="font-weight: normal;">It's safe and you'll love the convenience of banking from your phone!</span></h6>
<div><span style="font-weight: normal;"> </span><span style="font-weight: normal;"><a href="/mobile-banking/app-links" data-link-id="/mobile-banking/app-links" data-link-type-id="page" class="btn btn-default " data-disclaimer-id="null" target="_self">Learn More</a></span></div>
                  </div>
                </li>
                <li>
                  <div data-editable="editable" data-content="content" data-content-block="hero5" class="contentarea">
                      <div><img alt="" src="/assets/content/dPKpJtlx/2015/06/22/hero_mother_daughter.jpg" image-id="Pg3XbhQo"></div>
                  </div>
                  <div class="content blurb" data-editable="editable" data-content="content" data-content-block="hero6">
                      <h3><span style="font-weight: normal;">Plan for what is important</span></h3>
<h1>Save with a CD</h1>
<h6><span style="font-weight: normal;">Keep the future worry-free with a CD from First National Bank of Litchfield.</span></h6>
<p><a href="/rates" data-link-id="/rates" data-link-type-id="page" class="btn" data-disclaimer-id="null" target="_self">Learn More</a></p>
                  </div>
                </li>
              </ul>
            </div>
          </article>
          <div class="container">
            <div class="row sub-row">
              <div class="span3 span6-tablet">
                <div class="sub">
                <div class="content" data-editable="editable" data-content="content" data-content-block="subAd1">
                      <h4>Branch Information</h4>
<p><a href="/branch-information" data-link-id="/branch-information" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">About Us</a></p>
<p><a href="/locations" data-link-id="/locations" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">Branches</a></p>
<p><a href="/contact-us" data-link-id="/contact-us" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">Contact Us</a></p>
<p><a href="/branch-information#BankingSafety" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Banking Safety</a></p>
                  </div>
                </div>
              </div>
              <div class="span3 span6-tablet">
                <div class="sub">
                <div class="content" data-editable="editable" data-content="content" data-content-block="subAd2">
                      <h4>Manage Your Account</h4>
<p><a href="/manage-your-account#OnlineBanking" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Online Banking</a></p>
<p><a href="/mobile-banking/app-links" data-link-id="/mobile-banking/app-links" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">Mobile Banking</a></p>
<p><a href="/mobile-banking/app-links" data-link-id="/mobile-banking/app-links" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">App Links</a></p>
<p><a href="/first-national-bank-litchfield/secure-code" data-link-id="/first-national-bank-litchfield/secure-code" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">Secure Code</a></p>
                  </div>
                </div>
              </div>
              <div class="span3 span6-tablet">
                <div class="sub">
                <div class="content" data-editable="editable" data-content="content" data-content-block="subAd3">
                      <h4>Loans</h4>
<p><a href="/services/loans#ConsumerLoans" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Consumer Loans</a></p>
<p><a href="/services/loans#RealEstateLoans" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Real Estate Loans</a></p>
<p><a href="/services/loans#CommercialLoans" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Commercial Loans</a></p>
<p><a href="/services/loans#AgricultureLoans" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Agriculture Loans</a></p>
                  </div>
                </div>
              </div>
              <div class="span3 span6-tablet">
                <div class="sub">
                  <div class="content" data-editable="editable" data-content="content" data-content-block="subAd4">
                      <h4>Latest News</h4>
<p><strong><a href="/latest-news#hours" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Bank Hours Change</a></strong></p>
<p><a href="/latest-news#paperless" data-link-id="" data-link-type-id="anchor" class="" data-disclaimer-id="null" target="_self">Tired Of Paper? Opt Out Of Paper Statements </a></p>
                  </div>
                </div>
              </div>
            </div>
          </div>
          
        </div>
      </div>
      
    </div>

    <footer class="footer">
  <div class="container">
    <div class="copyright pull-left">
      <ul class="banno-menu menu-7cae6430-ce40-11e4-9413-005056a30020">
                       <li class="menu-internal">
        <a href="/privacy-statement">Privacy Statement</a>
        
      </li><li class="menu-internal">
        <a href="/mobile-privacy">Mobile Privacy</a>
        
      </li><li class="menu-internal">
        <a href="/security">Security</a>
        
      </li><li class="menu-internal">
        <a href="/terms-and-conditions">Terms and Conditions</a>
        
      </li><li class="menu-internal">
        <a href="/eft-rights-and-responsibilities">EFT Rights and Responsibilities</a>
        
      </li>
                     </ul>
      © <script>
        var d = new Date();
        var year = d.getFullYear();
        document.write(year);
      </script> First National Bank of Litchfield. Member FDIC. Equal Housing Lender 
      <img class="ehl" alt="Equal Housing Lender" src="/assets/img/ehl.png" srcset="/assets/img/ehl.png 1x, /assets/img/[email protected] 2x">
    </div>
  </div>
</footer>

    <script src="/assets/js/jquery.min.js"></script>
<script defer="" src="/assets/js/script.min.js"></script>

  
<script src="/assets/target/disclaimers.js?bh=84c36a" id="disclaimerscript" defer="defer" proceed="Proceed" cancel="Cancel"></script><script nomodule="nomodule" type="text/javascript">
            
    function ieWarning() {
      document.body.setAttribute("style", "padding-bottom: 120px;");
      var warning = document.createElement("section");
      warning.setAttribute("class", "ie-disclaimer");
      warning.setAttribute("style", "background-color: #000; color:#fff; padding: 10px 40px; position: fixed; bottom: 0; z-index: 1040; height: 120px;");
      warning.setAttribute("aria-label", "Important notice regarding browser support");
      var warningContent = 'Please note: As of February 15, 2022, this website will no longer function with this browser' +
      ' version. This website was built to support the use of modern browsers. The browser that you are currently using' +
      ' is no longer fully supported by Microsoft and is not considered a modern browser. To use this site, please open' +
      ' in a modern browser like Google Chrome, Firefox, Safari, or a currently supported version of Microsoft Edge.';
      warning.innerHTML = warningContent;
      var firstElement = document.body.children[0];
      document.body.insertBefore(warning, firstElement);
    }
    window.addEventListener("load", ieWarning);
  
          </script>
          
        
            </body></html>                               

Whois info of domain

Domain Name: FNBL.COM
Registry Domain ID: 1433021_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2023-10-14T18:14:45Z
Creation Date: 1996-11-14T05:00:00Z
Registry Expiry Date: 2028-11-13T05:00:00Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS10.DNSMADEEASY.COM
Name Server: NS11.DNSMADEEASY.COM
Name Server: NS12.DNSMADEEASY.COM
Name Server: NS13.DNSMADEEASY.COM
Name Server: NS14.DNSMADEEASY.COM
Name Server: NS15.DNSMADEEASY.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-20T12:41:23Z <<<
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