Returning 10 result(s) out of 50 in 0.085 second(s)

  • 14.100.118.170:3260 (tcp/http) - last seen on 2024-11-07 at 05:26:43 UTC

    • IP
      14.100.118.170
      Network
      14.100.0.0/17
      Device

      <enterprise field>: device.class <enterprise field>: device.productvendor

      Operating System
      Linux Linux 2
      URL

      http://14.100.118.170:3260/ 200

      HTTP Title
      ::: Login :::
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux 2
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      498757ed6cd314988f10f57b901a6c7b
      HTTP Header MD5
      15514d09ab3a6e41ccb6a3bff154ef8a
      HTTP Body MD5
      c1795339bfc5fbb0f593b34bec5a77c1
    • HTTP/1.1 200 OK
      Date: Thu, 07 Nov 2024 13:26:42 GMT
      Server: Linux/2.x UPnP/1.0 Avtech/1.0
      Connection: close
      Last-Modified: Wed, 19 Jul 2017 09:45:11 GMT
      Content-Type: text/html
      ETag: 162-15850-1500457511
      Content-Length: 15850
      
      <html>
      <head>
      <link rel="icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="shortcut icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="bookmark" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <meta name="googlebot" content="nosnippet">
      <meta name="robots" content="noarchive">
      <title>::: Login :::</title>
      <style>
      <!--
      body {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}
      td { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}
      .inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}
      .codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}
      .font0{font-size:36px;font-family:Arial; font-style:italic;}
      .font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}
      -->
      </style>
      <script language="JavaScript">
      //Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm
      if(document.URL.indexOf("?a=") > 0){
          var VerifyStr_Base64 = document.URL.split("?")[1].substring(2);
          location.href="/nobody/ez.htm?a="+VerifyStr_Base64+"&rnd=" + Math.random();
      }
      /* ========== loginQuickDevice.js ========== */
      function getCookie(c_name){
          if (document.cookie.length>0){
              c_start=document.cookie.indexOf(c_name + "=");
              if (c_start!=-1){ 
                  c_start=c_start + c_name.length+1; 
                  c_end=document.cookie.indexOf(";",c_start);
                  if (c_end==-1) c_end=document.cookie.length;
                  return unescape(document.cookie.substring(c_start,c_end));
              } 
          }
          return "";
      }
      
      function setCookie(c_name,value,expiredays){
          var exdate=new Date();
          exdate.setDate(exdate.getDate()+expiredays);
          document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
      }
      
      var w = window.screen.availWidth;
      
      if(getCookie("ViewMode")!="Classic"){
          if(w <= 800){//mobile screen width < 800
          	if(w >= 320)
          		location.href="/nobody/mobile320.htm?Login=Quick";
          	else
          		location.href="/nobody/mobile.htm?Login=Quick";
          }
      }
      
      //no use
      function isMobileBrowser(){
          var u = navigator.userAgent.toLowerCase();
          
          if(u.indexOf("midp") != -1)
          	return true;
          else if(u.indexOf("mobile") != -1)
          	return true;
          else if(u.indexOf("iphone") != -1 || u.indexOf("ipod") != -1)
          	return true;
          else if(u.indexOf("series60") != -1 || u.indexOf("symbian") != -1)
          	return true;
          else if(u.indexOf("blackberry") != -1)
          	return true;
          else if(u.indexOf("android") != -1)
          	return true;
          else if(u.indexOf("windows ce") != -1 || u.indexOf("windows phone") != -1)
          	return true;
          else if(u.indexOf("htc") != -1 || u.indexOf("hd2_") != -1)
          	return true;
          else if(u.indexOf("palm") != -1)
          	return true;
          else
          	return false;
      }
      
      
      /* ========== webtoolkit.base64.js ========== */
      var Base64 = {
      
      	// private property
      	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
      
      	// public method for encoding
      	encode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = Base64._utf8_encode(input);
      
      		while (i < input.length) {
      
      			chr1 = input.charCodeAt(i++);
      			chr2 = input.charCodeAt(i++);
      			chr3 = input.charCodeAt(i++);
      
      			enc1 = chr1 >> 2;
      			enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
      			enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
      			enc4 = chr3 & 63;
      
      			if (isNaN(chr2)) {
      				enc3 = enc4 = 64;
      			} else if (isNaN(chr3)) {
      				enc4 = 64;
      			}
      
      			output = output +
      			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
      			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
      
      		}
      
      		return output;
      	},
      
      	// public method for decoding
      	decode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3;
      		var enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
      
      		while (i < input.length) {
      
      			enc1 = this._keyStr.indexOf(input.charAt(i++));
      			enc2 = this._keyStr.indexOf(input.charAt(i++));
      			enc3 = this._keyStr.indexOf(input.charAt(i++));
      			enc4 = this._keyStr.indexOf(input.charAt(i++));
      
      			chr1 = (enc1 << 2) | (enc2 >> 4);
      			chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
      			chr3 = ((enc3 & 3) << 6) | enc4;
      
      			output = output + String.fromCharCode(chr1);
      
      			if (enc3 != 64) {
      				output = output + String.fromCharCode(chr2);
      			}
      			if (enc4 != 64) {
      				output = output + String.fromCharCode(chr3);
      			}
      
      		}
      
      		output = Base64._utf8_decode(output);
      
      		return output;
      
      	},
      
      	// private method for UTF-8 encoding
      	_utf8_encode : function (string) {
      		string = string.replace(/\r\n/g,"\n");
      		var utftext = "";
      
      		for (var n = 0; n < string.length; n++) {
      
      			var c = string.charCodeAt(n);
      
      			if (c < 128) {
      				utftext += String.fromCharCode(c);
      			}
      			else if((c > 127) && (c < 2048)) {
      				utftext += String.fromCharCode((c >> 6) | 192);
      				utftext += String.fromCharCode((c & 63) | 128);
      			}
      			else {
      				utftext += String.fromCharCode((c >> 12) | 224);
      				utftext += String.fromCharCode(((c >> 6) & 63) | 128);
      				utftext += String.fromCharCode((c & 63) | 128);
      			}
      
      		}
      
      		return utftext;
      	},
      
      	// private method for UTF-8 decoding
      	_utf8_decode : function (utftext) {
      		var string = "";
      		var i = 0;
      		var c = c1 = c2 = 0;
      
      		while ( i < utftext.length ) {
      
      			c = utftext.charCodeAt(i);
      
      			if (c < 128) {
      				string += String.fromCharCode(c);
      				i++;
      			}
      			else if((c > 191) && (c < 224)) {
      				c2 = utftext.charCodeAt(i+1);
      				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
      				i += 2;
      			}
      			else {
      				c2 = utftext.charCodeAt(i+1);
      				c3 = utftext.charCodeAt(i+2);
      				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
      				i += 3;
      			}
      
      		}
      
      		return string;
      	}
      
      }
      
      /* ========== loginQuick.js ========== */
      var ff;
      var CheckOnlySupportIE = false;
      var DVR_ONLY_SUPPORT_IE = "_042_082_162_046_";
      var isIEBrowser = false;
      
      if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC") && (navigator.platform != "Mac68k")) {
        isIEBrowser = true;
      }
      
      /* disabled backspace key */
      if(typeof window.event != 'undefined'){
          document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}
      }else{
          document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}
      }
      
      function init(){
      	ff = document.myForm;
      	ff.Username.value = "";
      	ff.Password.value = "";
      	ff.Username.focus();
      	//setTimeout("getCaptchaImg()", 1000);
      }
      
      function getCaptchaImg(){
      	document.getElementById("Captcha").src = "/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp";
      }
      
      function goCheck(e){
          if(window.event && e.keyCode ==13) //IE
              check(); 
          else if(e.which == 13) // Netscape/Firefox/Opera
              check();
      }
      
      function check(){
          if(!ff){return false;}
          
          document.cookie = "x=1";
          if (document.cookie.indexOf("x=")==-1){
              alert("Browser Cookie not supported.");
              frmReload();
              return false;
          }
          var actionStr = "/cgi-bin/nobody/VerifyCode.cgi"
          actionStr += "?account="+Base64.encode(ff.Username.value+":"+ff.Password.value);
          //actionStr += "&captcha_code="+ff.CaptchaCode.value;
          //actionStr += "&verify_code="+getCookie("captcha");
          actionStr += "&rnd="+Math.random();
      	var httpObj = createHttpRequestObj();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		tmpStr = objStr.strSrc.split("\n");
                  if (tmpStr[1] == "OK"){
                      getUserLevel();
                  }else{
                      alert(tmpStr[1]);
                      frmReload();
                  }
              }
          };
      	httpObj.open("get", actionStr, true);
      	httpObj.send(null);
      	return false;
      }
      
      function getUserLevel(){
      	/*
      	var httpObj = createHttpRequestObj();
      	requestData = "/cgi-bin/guest/Login.cgi?rnd="+Math.random();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		
          		if (CheckOnlySupportIE && GetCgiParam(objStr, "Product-ID-Minor=") == 1){
          		    var pid = objStr.strGet;
          		    var pidc = "_"+pid+"_";
          		    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){
          		        //alert("This machine is not supported, please visit 'www.avtech.com.tw' for more details.");
          		        if(confirm("This machine is not supported.\nDo you want to get more details?")){
          		            location.href = "http://www.eagleeyescctv.com/jump/dvr.htm";
          		        }
          		        return false;
          		    }
          		}
          		
          		if (GetCgiParam(objStr, "User-Level=") == 1){
          			setCookie("LifeTime", "");
          			setCookie("ReloWebTime", 0);
          			if(objStr.strGet == "SUPERVISOR")
                          location.href="/index.htm";
                      else
                          location.href="/index.htm";
      					//location.href="/default.htm";
                  }else{alert('Login Failed.');}
                  
          	}
          };
      	httpObj.open("get", requestData, true);
      	httpObj.send(null);
      	*/
      	setCookie("brokenhdd", "");
      	setCookie("LifeTime", "");
      	setCookie("ReloWebTime", 0);
      	location.href="/index.htm";
      }
      
      function frmReload(){
          ff.Username.value="";
          ff.Password.value="";
          //ff.CaptchaCode.value="";
          location.reload();
      }
      
      function createHttpRequestObj(){
      	var XMLhttpObject = null;
      	try {XMLhttpObject = new XMLHttpRequest();}
      	catch(e){
      		try {XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP");}
      		catch(e){
      			try {XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");}
      			catch(e) {return null;}
      		}
      	}
      	return XMLhttpObject;
      }
      
      function GetCgiParam(objStr, strSearch){
      	var curr_pos;var result;
      	objStr.strSearch=strSearch;
      	objStr.curr_pos=0;
      	do{
      		result = 1;
      		curr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);
      		if (curr_pos < 0){
      			result = 0;
      			break;
      		}
      		objStr.curr_pos = curr_pos + objStr.strSearch.length;
      		curr_pos = objStr.strSrc.indexOf('\n', objStr.curr_pos);
      		if (curr_pos < 0){
      			if (objStr.curr_pos < objStr.strSrc.length){
      				objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);
      				objStr.curr_pos = curr_pos;	
      				break;
      			}
      			result = 0;
      			break;
      		}
      		objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, curr_pos);
      		objStr.curr_pos = curr_pos;
      	} while(0);
      	return result;
      }
      
      function goMobile(){
          setCookie("ViewMode", "Mobile");
      	var w = window.screen.availWidth;
      	if(w >= 320)
      		location.href="/nobody/mobile320.htm?Login=Quick";
      	else
      		location.href="/nobody/mobile.htm?Login=Quick";
      }
      
      </script>
      </head>
      <body onload="init()">
      <form name="myForm" method="POST" target="_top" onSubmit="return check();">
      <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr><td width="778" height="197" valign="middle" >
              <table width="201" border="0" cellspacing="0" cellpadding="0">
                  <tr><td width="201" height="25">&nbsp;</td></tr>
              </table>
              <table width="467" height="88" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="493" height="53" class="font0">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>
                  <tr><td class="font1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>
              </table></td></tr>
          <tr><td height="114" valign="middle">
              <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="221" height="247" valign="top"></td>
              <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td height="94" valign="top"><table width="341" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="21"><img src="/nobody/jpg/lcorner.jpg" width="21" height="33" alt=""></td>
                      <td width="306" align="center" background="/nobody/jpg/banner.jpg"> Customer Login </td>
                      <td width="14"><img src="/nobody/jpg/rcor.jpg" width="18" height="33"></td>
                    </tr>
                  </table>
                          <table width="341" border="0" align="left" cellpadding="0" cellspacing="0">
                            <tr>
                              <td width="8%"><img src="/nobody/jpg/mem.jpg" width="83" height="168"></td>
                              <td width="87%" background="/nobody/jpg/bg09.gif">
                                  <!-- input box -->
                                  <table width="233" height="80" border="0" cellpadding="0" cellspacing="0">
                                  <tr>
                                    <td width="96" height="41" align="right">Username :&nbsp;</td>
                                    <td width="124"><input name="Username" maxlength="31" type="text" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  <tr>
                                    <td width="96" height="37" align="right">Password :&nbsp;</td>
                                    <td><input name="Password" maxlength="31" type="password" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  </table></td>
      
                              <td width="5%"><img src="/nobody/jpg/line11.jpg" width="18" height="168"></td>
                            </tr>
                        </table></td>
                </tr>
                <tr>
                  <td valign="top"><table width="341" border="0" align="center" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="17" valign="top" background="/nobody/jpg/bg14.jpg"><img src="/nobody/jpg/cor.jpg" width="17" height="46"></td>
                      <td width="305" background="/nobody/jpg/bg14.jpg">
                          <!-- button -->
                          <table width="100%" border="0" cellspacing="0" cellpadding="0">
                          <tr><td align="center"><img src="/nobody/jpg/login.gif" style="cursor:pointer" width="103" height="29" border="0" onClick="check();"></td></tr>
                          </table></td>
                      <td width="18" valign="top"><img src="/nobody/jpg/cor18.jpg" width="18" height="46"></td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
              <td width="218" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td></td>
                </tr>
                
              </table></td>
            </tr>
          </table>
          <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
              <td width="213"></td>
              <td width="339" height="132" align="center">View: <a href="#" style='color:#00ffff' onclick="goMobile()">Mobile</a> | PC</td>
              <td width="226"></td>
            </tr>
          </table></td>
        </tr>
      </table>
      </form>
      </body>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:26:43.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "eagleeyescctv.com"
               ],
               "file" : [
                  "verifycode.cgi"
               ],
               "hostname" : [
                  "www.eagleeyescctv.com"
               ],
               "url" : [
                  "http://www.eagleeyescctv.com/jump/dvr.htm"
               ]
            },
            "favicon" : {
               "url" : "/nobody/favicon.ico"
            },
            "http" : {
               "bodymd5" : "c1795339bfc5fbb0f593b34bec5a77c1",
               "bodymmh3" : -878287826,
               "header" : [
                  {
                     "name" : "Last-Modified",
                     "value" : "Wed, 19 Jul 2017 09:45:11 GMT"
                  },
                  {
                     "value" : "162-15850-1500457511",
                     "name" : "ETag"
                  }
               ],
               "headermd5" : "15514d09ab3a6e41ccb6a3bff154ef8a",
               "headermmh3" : 1751878380,
               "title" : "::: Login :::"
            },
            "length" : 16086
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nDate: Thu, 07 Nov 2024 13:26:42 GMT\r\nServer: Linux/2.x UPnP/1.0 Avtech/1.0\r\nConnection: close\r\nLast-Modified: Wed, 19 Jul 2017 09:45:11 GMT\r\nContent-Type: text/html\r\nETag: 162-15850-1500457511\r\nContent-Length: 15850\r\n\r\n<html>\r\n<head>\r\n<link rel=\"icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"shortcut icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"bookmark\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"googlebot\" content=\"nosnippet\">\r\n<meta name=\"robots\" content=\"noarchive\">\r\n<title>::: Login :::</title>\r\n<style>\r\n<!--\r\nbody {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}\r\ntd { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}\r\n.inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}\r\n.codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}\r\n.font0{font-size:36px;font-family:Arial; font-style:italic;}\r\n.font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}\r\n-->\r\n</style>\r\n<script language=\"JavaScript\">\r\n//Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm\r\nif(document.URL.indexOf(\"?a=\") > 0){\r\n    var VerifyStr_Base64 = document.URL.split(\"?\")[1].substring(2);\r\n    location.href=\"/nobody/ez.htm?a=\"+VerifyStr_Base64+\"&rnd=\" + Math.random();\r\n}\r\n/* ========== loginQuickDevice.js ========== */\r\nfunction getCookie(c_name){\r\n    if (document.cookie.length>0){\r\n        c_start=document.cookie.indexOf(c_name + \"=\");\r\n        if (c_start!=-1){ \r\n            c_start=c_start + c_name.length+1; \r\n            c_end=document.cookie.indexOf(\";\",c_start);\r\n            if (c_end==-1) c_end=document.cookie.length;\r\n            return unescape(document.cookie.substring(c_start,c_end));\r\n        } \r\n    }\r\n    return \"\";\r\n}\r\n\r\nfunction setCookie(c_name,value,expiredays){\r\n    var exdate=new Date();\r\n    exdate.setDate(exdate.getDate()+expiredays);\r\n    document.cookie=c_name+ \"=\" +escape(value)+((expiredays==null) ? \"\" : \";expires=\"+exdate.toGMTString());\r\n}\r\n\r\nvar w = window.screen.availWidth;\r\n\r\nif(getCookie(\"ViewMode\")!=\"Classic\"){\r\n    if(w <= 800){//mobile screen width < 800\r\n    \tif(w >= 320)\r\n    \t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n    \telse\r\n    \t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n    }\r\n}\r\n\r\n//no use\r\nfunction isMobileBrowser(){\r\n    var u = navigator.userAgent.toLowerCase();\r\n    \r\n    if(u.indexOf(\"midp\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"mobile\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"iphone\") != -1 || u.indexOf(\"ipod\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"series60\") != -1 || u.indexOf(\"symbian\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"blackberry\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"android\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"windows ce\") != -1 || u.indexOf(\"windows phone\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"htc\") != -1 || u.indexOf(\"hd2_\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"palm\") != -1)\r\n    \treturn true;\r\n    else\r\n    \treturn false;\r\n}\r\n\r\n\r\n/* ========== webtoolkit.base64.js ========== */\r\nvar Base64 = {\r\n\r\n\t// private property\r\n\t_keyStr : \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",\r\n\r\n\t// public method for encoding\r\n\tencode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3, enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = Base64._utf8_encode(input);\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tchr1 = input.charCodeAt(i++);\r\n\t\t\tchr2 = input.charCodeAt(i++);\r\n\t\t\tchr3 = input.charCodeAt(i++);\r\n\r\n\t\t\tenc1 = chr1 >> 2;\r\n\t\t\tenc2 = ((chr1 & 3) << 4) | (chr2 >> 4);\r\n\t\t\tenc3 = ((chr2 & 15) << 2) | (chr3 >> 6);\r\n\t\t\tenc4 = chr3 & 63;\r\n\r\n\t\t\tif (isNaN(chr2)) {\r\n\t\t\t\tenc3 = enc4 = 64;\r\n\t\t\t} else if (isNaN(chr3)) {\r\n\t\t\t\tenc4 = 64;\r\n\t\t\t}\r\n\r\n\t\t\toutput = output +\r\n\t\t\tthis._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +\r\n\t\t\tthis._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);\r\n\r\n\t\t}\r\n\r\n\t\treturn output;\r\n\t},\r\n\r\n\t// public method for decoding\r\n\tdecode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3;\r\n\t\tvar enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = input.replace(/[^A-Za-z0-9\\+\\/\\=]/g, \"\");\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tenc1 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc2 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc3 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc4 = this._keyStr.indexOf(input.charAt(i++));\r\n\r\n\t\t\tchr1 = (enc1 << 2) | (enc2 >> 4);\r\n\t\t\tchr2 = ((enc2 & 15) << 4) | (enc3 >> 2);\r\n\t\t\tchr3 = ((enc3 & 3) << 6) | enc4;\r\n\r\n\t\t\toutput = output + String.fromCharCode(chr1);\r\n\r\n\t\t\tif (enc3 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr2);\r\n\t\t\t}\r\n\t\t\tif (enc4 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr3);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\toutput = Base64._utf8_decode(output);\r\n\r\n\t\treturn output;\r\n\r\n\t},\r\n\r\n\t// private method for UTF-8 encoding\r\n\t_utf8_encode : function (string) {\r\n\t\tstring = string.replace(/\\r\\n/g,\"\\n\");\r\n\t\tvar utftext = \"\";\r\n\r\n\t\tfor (var n = 0; n < string.length; n++) {\r\n\r\n\t\t\tvar c = string.charCodeAt(n);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tutftext += String.fromCharCode(c);\r\n\t\t\t}\r\n\t\t\telse if((c > 127) && (c < 2048)) {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn utftext;\r\n\t},\r\n\r\n\t// private method for UTF-8 decoding\r\n\t_utf8_decode : function (utftext) {\r\n\t\tvar string = \"\";\r\n\t\tvar i = 0;\r\n\t\tvar c = c1 = c2 = 0;\r\n\r\n\t\twhile ( i < utftext.length ) {\r\n\r\n\t\t\tc = utftext.charCodeAt(i);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tstring += String.fromCharCode(c);\r\n\t\t\t\ti++;\r\n\t\t\t}\r\n\t\t\telse if((c > 191) && (c < 224)) {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tstring += String.fromCharCode(((c & 31) << 6) | (c2 & 63));\r\n\t\t\t\ti += 2;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tc3 = utftext.charCodeAt(i+2);\r\n\t\t\t\tstring += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));\r\n\t\t\t\ti += 3;\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn string;\r\n\t}\r\n\r\n}\r\n\r\n/* ========== loginQuick.js ========== */\r\nvar ff;\r\nvar CheckOnlySupportIE = false;\r\nvar DVR_ONLY_SUPPORT_IE = \"_042_082_162_046_\";\r\nvar isIEBrowser = false;\r\n\r\nif ((navigator.appName == \"Microsoft Internet Explorer\") && (navigator.platform != \"MacPPC\") && (navigator.platform != \"Mac68k\")) {\r\n  isIEBrowser = true;\r\n}\r\n\r\n/* disabled backspace key */\r\nif(typeof window.event != 'undefined'){\r\n    document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}\r\n}else{\r\n    document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}\r\n}\r\n\r\nfunction init(){\r\n\tff = document.myForm;\r\n\tff.Username.value = \"\";\r\n\tff.Password.value = \"\";\r\n\tff.Username.focus();\r\n\t//setTimeout(\"getCaptchaImg()\", 1000);\r\n}\r\n\r\nfunction getCaptchaImg(){\r\n\tdocument.getElementById(\"Captcha\").src = \"/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp\";\r\n}\r\n\r\nfunction goCheck(e){\r\n    if(window.event && e.keyCode ==13) //IE\r\n        check(); \r\n    else if(e.which == 13) // Netscape/Firefox/Opera\r\n        check();\r\n}\r\n\r\nfunction check(){\r\n    if(!ff){return false;}\r\n    \r\n    document.cookie = \"x=1\";\r\n    if (document.cookie.indexOf(\"x=\")==-1){\r\n        alert(\"Browser Cookie not supported.\");\r\n        frmReload();\r\n        return false;\r\n    }\r\n    var actionStr = \"/cgi-bin/nobody/VerifyCode.cgi\"\r\n    actionStr += \"?account=\"+Base64.encode(ff.Username.value+\":\"+ff.Password.value);\r\n    //actionStr += \"&captcha_code=\"+ff.CaptchaCode.value;\r\n    //actionStr += \"&verify_code=\"+getCookie(\"captcha\");\r\n    actionStr += \"&rnd=\"+Math.random();\r\n\tvar httpObj = createHttpRequestObj();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\ttmpStr = objStr.strSrc.split(\"\\n\");\r\n            if (tmpStr[1] == \"OK\"){\r\n                getUserLevel();\r\n            }else{\r\n                alert(tmpStr[1]);\r\n                frmReload();\r\n            }\r\n        }\r\n    };\r\n\thttpObj.open(\"get\", actionStr, true);\r\n\thttpObj.send(null);\r\n\treturn false;\r\n}\r\n\r\nfunction getUserLevel(){\r\n\t/*\r\n\tvar httpObj = createHttpRequestObj();\r\n\trequestData = \"/cgi-bin/guest/Login.cgi?rnd=\"+Math.random();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\t\r\n    \t\tif (CheckOnlySupportIE && GetCgiParam(objStr, \"Product-ID-Minor=\") == 1){\r\n    \t\t    var pid = objStr.strGet;\r\n    \t\t    var pidc = \"_\"+pid+\"_\";\r\n    \t\t    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){\r\n    \t\t        //alert(\"This machine is not supported, please visit 'www.avtech.com.tw' for more details.\");\r\n    \t\t        if(confirm(\"This machine is not supported.\\nDo you want to get more details?\")){\r\n    \t\t            location.href = \"http://www.eagleeyescctv.com/jump/dvr.htm\";\r\n    \t\t        }\r\n    \t\t        return false;\r\n    \t\t    }\r\n    \t\t}\r\n    \t\t\r\n    \t\tif (GetCgiParam(objStr, \"User-Level=\") == 1){\r\n    \t\t\tsetCookie(\"LifeTime\", \"\");\r\n    \t\t\tsetCookie(\"ReloWebTime\", 0);\r\n    \t\t\tif(objStr.strGet == \"SUPERVISOR\")\r\n                    location.href=\"/index.htm\";\r\n                else\r\n                    location.href=\"/index.htm\";\r\n\t\t\t\t\t//location.href=\"/default.htm\";\r\n            }else{alert('Login Failed.');}\r\n            \r\n    \t}\r\n    };\r\n\thttpObj.open(\"get\", requestData, true);\r\n\thttpObj.send(null);\r\n\t*/\r\n\tsetCookie(\"brokenhdd\", \"\");\r\n\tsetCookie(\"LifeTime\", \"\");\r\n\tsetCookie(\"ReloWebTime\", 0);\r\n\tlocation.href=\"/index.htm\";\r\n}\r\n\r\nfunction frmReload(){\r\n    ff.Username.value=\"\";\r\n    ff.Password.value=\"\";\r\n    //ff.CaptchaCode.value=\"\";\r\n    location.reload();\r\n}\r\n\r\nfunction createHttpRequestObj(){\r\n\tvar XMLhttpObject = null;\r\n\ttry {XMLhttpObject = new XMLHttpRequest();}\r\n\tcatch(e){\r\n\t\ttry {XMLhttpObject = new ActiveXObject(\"Msxml2.XMLHTTP\");}\r\n\t\tcatch(e){\r\n\t\t\ttry {XMLhttpObject = new ActiveXObject(\"Microsoft.XMLHTTP\");}\r\n\t\t\tcatch(e) {return null;}\r\n\t\t}\r\n\t}\r\n\treturn XMLhttpObject;\r\n}\r\n\r\nfunction GetCgiParam(objStr, strSearch){\r\n\tvar curr_pos;var result;\r\n\tobjStr.strSearch=strSearch;\r\n\tobjStr.curr_pos=0;\r\n\tdo{\r\n\t\tresult = 1;\r\n\t\tcurr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.curr_pos = curr_pos + objStr.strSearch.length;\r\n\t\tcurr_pos = objStr.strSrc.indexOf('\\n', objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tif (objStr.curr_pos < objStr.strSrc.length){\r\n\t\t\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);\r\n\t\t\t\tobjStr.curr_pos = curr_pos;\t\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, curr_pos);\r\n\t\tobjStr.curr_pos = curr_pos;\r\n\t} while(0);\r\n\treturn result;\r\n}\r\n\r\nfunction goMobile(){\r\n    setCookie(\"ViewMode\", \"Mobile\");\r\n\tvar w = window.screen.availWidth;\r\n\tif(w >= 320)\r\n\t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n\telse\r\n\t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n}\r\n\r\n</script>\r\n</head>\r\n<body onload=\"init()\">\r\n<form name=\"myForm\" method=\"POST\" target=\"_top\" onSubmit=\"return check();\">\r\n<table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tr><td width=\"778\" height=\"197\" valign=\"middle\" >\r\n        <table width=\"201\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr><td width=\"201\" height=\"25\">&nbsp;</td></tr>\r\n        </table>\r\n        <table width=\"467\" height=\"88\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"493\" height=\"53\" class=\"font0\">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>\r\n            <tr><td class=\"font1\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>\r\n        </table></td></tr>\r\n    <tr><td height=\"114\" valign=\"middle\">\r\n        <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"221\" height=\"247\" valign=\"top\"></td>\r\n        <td valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td height=\"94\" valign=\"top\"><table width=\"341\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n              <tr>\r\n                <td width=\"21\"><img src=\"/nobody/jpg/lcorner.jpg\" width=\"21\" height=\"33\" alt=\"\"></td>\r\n                <td width=\"306\" align=\"center\" background=\"/nobody/jpg/banner.jpg\"> Customer Login </td>\r\n                <td width=\"14\"><img src=\"/nobody/jpg/rcor.jpg\" width=\"18\" height=\"33\"></td>\r\n              </tr>\r\n            </table>\r\n                    <table width=\"341\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td width=\"8%\"><img src=\"/nobody/jpg/mem.jpg\" width=\"83\" height=\"168\"></td>\r\n                        <td width=\"87%\" background=\"/nobody/jpg/bg09.gif\">\r\n                            <!-- input box -->\r\n                            <table width=\"233\" height=\"80\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                            <tr>\r\n                              <td width=\"96\" height=\"41\" align=\"right\">Username :&nbsp;</td>\r\n                              <td width=\"124\"><input name=\"Username\" maxlength=\"31\" type=\"text\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            <tr>\r\n                              <td width=\"96\" height=\"37\" align=\"right\">Password :&nbsp;</td>\r\n                              <td><input name=\"Password\" maxlength=\"31\" type=\"password\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            </table></td>\r\n\r\n                        <td width=\"5%\"><img src=\"/nobody/jpg/line11.jpg\" width=\"18\" height=\"168\"></td>\r\n                      </tr>\r\n                  </table></td>\r\n          </tr>\r\n          <tr>\r\n            <td valign=\"top\"><table width=\"341\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n                <td width=\"17\" valign=\"top\" background=\"/nobody/jpg/bg14.jpg\"><img src=\"/nobody/jpg/cor.jpg\" width=\"17\" height=\"46\"></td>\r\n                <td width=\"305\" background=\"/nobody/jpg/bg14.jpg\">\r\n                    <!-- button -->\r\n                    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                    <tr><td align=\"center\"><img src=\"/nobody/jpg/login.gif\" style=\"cursor:pointer\" width=\"103\" height=\"29\" border=\"0\" onClick=\"check();\"></td></tr>\r\n                    </table></td>\r\n                <td width=\"18\" valign=\"top\"><img src=\"/nobody/jpg/cor18.jpg\" width=\"18\" height=\"46\"></td>\r\n              </tr>\r\n            </table></td>\r\n          </tr>\r\n        </table></td>\r\n        <td width=\"218\" valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td></td>\r\n          </tr>\r\n          \r\n        </table></td>\r\n      </tr>\r\n    </table>\r\n    <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n        <td width=\"213\"></td>\r\n        <td width=\"339\" height=\"132\" align=\"center\">View: <a href=\"#\" style='color:#00ffff' onclick=\"goMobile()\">Mobile</a> | PC</td>\r\n        <td width=\"226\"></td>\r\n      </tr>\r\n    </table></td>\r\n  </tr>\r\n</table>\r\n</form>\r\n</body>\r\n</html>",
         "datamd5" : "498757ed6cd314988f10f57b901a6c7b",
         "datammh3" : -1933980046,
         "device" : {
            "class" : "<enterprise field>: device.class",
            "productvendor" : "<enterprise field>: device.productvendor"
         },
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "14.100.0.0/17"
         },
         "ip" : "14.100.118.170",
         "ipv6" : "false",
         "latitude" : "1.3248",
         "location" : "1.3248,103.7799",
         "longitude" : "103.7799",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux",
         "osvendor" : "Linux",
         "osversion" : "2",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "14.100.0.0/17",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 116.15.48.37:3260 (tcp/http) - last seen on 2024-11-07 at 03:15:28 UTC

    • IP
      116.15.48.37
      Network
      116.15.0.0/18
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://116.15.48.37:3260/ 200

      Reverse DNS
      bb116-15-48-37.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      F5 Nginx
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      3d029073a160c198d3155d58727a3f3c
      HTTP Header MD5
      e95353e6c88f3e96a977c5f942702ad1
      HTTP Body MD5
      cb1a5007a60faece0a1b494f7df8b60c
    • HTTP/1.1 200 OK
      Server: nginx
      Content-Length: 736
      Content-Type: text/html
      Connection: close
      
      <!DOCTYPE html>
      <html lang="en">
      
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <link rel="icon" href="./favicon.ico" type="image/x-icon" />
        <link rel="stylesheet" href="./dist/style.css">
        <title></title>
      </head>
      
      <body>
        <div id="app"></div>
        <script type="text/javascript" src="view1.js"></script>
        <script src="./dist/build.js"></script>
        <script src="./dist/import.js"></script>
        <script src="./main.js"></script>
        <!-- <script type="text/javascript" src="xml.js"></script> -->
        <script type="text/javascript" src="swfobject.js"></script>
        <script>
        </script>
      </body>
      
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T03:15:28.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "cb1a5007a60faece0a1b494f7df8b60c",
               "bodymmh3" : -275841746,
               "headermd5" : "e95353e6c88f3e96a977c5f942702ad1",
               "headermmh3" : -61428028
            },
            "length" : 835
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nServer: nginx\r\nContent-Length: 736\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n  <meta charset=\"utf-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\r\n  <link rel=\"icon\" href=\"./favicon.ico\" type=\"image/x-icon\" />\r\n  <link rel=\"stylesheet\" href=\"./dist/style.css\">\r\n  <title></title>\r\n</head>\r\n\r\n<body>\r\n  <div id=\"app\"></div>\r\n  <script type=\"text/javascript\" src=\"view1.js\"></script>\r\n  <script src=\"./dist/build.js\"></script>\r\n  <script src=\"./dist/import.js\"></script>\r\n  <script src=\"./main.js\"></script>\r\n  <!-- <script type=\"text/javascript\" src=\"xml.js\"></script> -->\r\n  <script type=\"text/javascript\" src=\"swfobject.js\"></script>\r\n  <script>\r\n  </script>\r\n</body>\r\n\r\n</html>\r\n",
         "datamd5" : "3d029073a160c198d3155d58727a3f3c",
         "datammh3" : -92932080,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "116.14.0.0/15"
         },
         "host" : [
            "bb116-15-48-37"
         ],
         "hostname" : [
            "bb116-15-48-37.singnet.com.sg"
         ],
         "ip" : "116.15.48.37",
         "ipv6" : "false",
         "latitude" : "1.3856",
         "location" : "1.3856,103.8658",
         "longitude" : "103.8658",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "Nginx",
         "productvendor" : "F5",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb116-15-48-37.singnet.com.sg"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "116.15.0.0/18",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.4.230:3260 (tcp/http) - last seen on 2024-11-06 at 23:38:48 UTC

    • IP
      219.74.4.230
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.4.230:3260/ 200

      Reverse DNS
      bb219-74-4-230.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      c03ea71cf5d488ef183005e3486689bd
      HTTP Header MD5
      fd8e0a765092d70d012b61df4ef95edf
      HTTP Body MD5
      167b799d5d5294a1c72f3865f37e43c3
      Favicon MD5
      89b932fcc47cf4ca3faadb0cfdef89cf
      Favicon MMH3
      999357577
    • HTTP/1.1 200 OK
      Vary: Accept-Encoding
      X-Frame-Options: SAMEORIGIN
      Content-Type: text/html
      X-Content-Type-Options: nosniff
      Date: Thu, 07 Nov 2024 06:54:08 GMT
      ETag: 1728304293
      Content-Length: 481
      X-XSS-Protection: 1; mode=block
      Last-Modified: Tue, 20 Jun 2023 03:52:36 GMT
      Connection: close
      Accept-Ranges: bytes
      
      <!doctype html>
      <html>
      <head>
      	<title></title>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      	<meta http-equiv="X-UA-Compatible" content="IE=edge" >
      	<meta http-equiv="Pragma" content="no-cache" />
      	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
      	<meta http-equiv="Expires" content="0" />
      </head>
      <body>
      </body>
      <script>
      	window.location.href = "./doc/page/login.asp?_" + (new Date()).getTime();
      </script>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-06T23:38:48.000Z",
         "app" : {
            "favicon" : {
               "image" : "AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkJCSYJCQksmQkJL/kJCS/5CQkv+QkJL/kJCS/5CQkv+QkJL/kJCS/5CQkv+QkJL/kJCS25CQknIAAAAAkpKUb6Cgov/ExMr/0tLY/9LS2P/S0tj/0tLY/9LS2P/S0tj/0tLY/9LS2P/S0tj/0tLY/8nJzv+np6r/kpKUkJWVlti/v8D/xsbI/8bGyP/CwsT/jo6Q/11dXv8vLy//KCgp/1FRUv+OjpD/wMDC/8bGyP/Gxsj/xcXH/5iYmf+YmJn/x8fI/8fHyP/Dw8T/aGhp/xISEv8HBwf/FxcV/x4eHP8JCQn/CAgI/z09Pf/CwsL/x8fI/8fHyP+goKH/m5ud/8jIyf/IyMn/kJCQ/xEREf8YGBf/R0dG/2BgZf9/fYT/pqaj/1paVf8CAgL/X19g/8jIyf/IyMn/o6Ol/5+fof/Kysv/w8PD/yEgIf8XFxf/NDQ0/ygpLP8SECj/Cwk5/0VEdP+rqLT/b3Fs/wAAAP+jo6T/ysrL/6enqP+ioqT/zMzN/4ODhP8TExP/IiIi/wwNDf8AAAD/AAAm/ywpcP8rKW//JiNp/5eWnP8sLCn/OTk6/8zMzf+pqav/pqao/8/Pz/9ZWVn/Ghoa/xUUE/8mIA7/FxQQ/wAAMP9xbb3/jYnQ/wsLTP9CQWP/UFBK/wUFBf/Pz8//ra2v/6urrf/T09T/XV1d/xsbHv8iHxL/s5tV/0E4H/9wY0L/LSg1/wICPv8AADD/Hx5C/0pKRv8HBwb/09PU/7KytP+vr7H/3t7f/4iIif8nJyv/FhQL/8etXf+mkU7/V04y/y0pF/8AAAD/AAAM/ycmNP80NDP/Kysr/97e3/+3t7n/srK0/+Pj5P/Fxcb/SkpL/wMFBf+WgkT/07Vj/6+WUv9HPSH/BQQA/wUFBf82Njb/FRUU/4qKi//j4+T/u7u8/7a2uP/o6Or/6Ojq/4+Pj/84ODv/AAAA/415Qf+xmFT/SD4i/wYFBf8dHR3/JiYm/ysrK//l5ef/6Ojq/7+/wf+5ubz/7u7w/+7u8P/p6ev/l5eY/z9AQf8JCw7/AAAC/wcHCP8XFxf/Hx8f/0tLTP/f3+D/7u7w/+7u8P/CwsX/vLy/2+vr7f/z8/X/8/P1//Pz9f/ExMb/hYWG/0xMTv8/QUH/aGho/6Ojpf/z8/X/8/P1//Pz9f/y8vT/wMDD/7+/wXLNzc//7u7x//b2+f/29vn/9vb5//b2+f/29vn/9vb5//b2+f/29vn/9vb5//b2+f/x8fT/1NTX/7+/wZAAAAAAwcHDcsHBw9vBwcP/wcHD/8HBw//BwcP/wcHD/8HBw//BwcP/wcHD/8HBw//BwcP/wcHD6sHBw4EAAAAAgAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAEAAA==",
               "imagemd5" : "89b932fcc47cf4ca3faadb0cfdef89cf",
               "imagemmh3" : 999357577,
               "length" : 1150,
               "url" : "/favicon.ico"
            },
            "http" : {
               "bodymd5" : "167b799d5d5294a1c72f3865f37e43c3",
               "bodymmh3" : -370724244,
               "header" : [
                  {
                     "name" : "ETag",
                     "value" : 1728304293
                  },
                  {
                     "value" : "Tue, 20 Jun 2023 03:52:36 GMT",
                     "name" : "Last-Modified"
                  }
               ],
               "headermd5" : "fd8e0a765092d70d012b61df4ef95edf",
               "headermmh3" : -1631335429
            },
            "length" : 806
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Type: text/html\r\nX-Content-Type-Options: nosniff\r\nDate: Thu, 07 Nov 2024 06:54:08 GMT\r\nETag: 1728304293\r\nContent-Length: 481\r\nX-XSS-Protection: 1; mode=block\r\nLast-Modified: Tue, 20 Jun 2023 03:52:36 GMT\r\nConnection: close\r\nAccept-Ranges: bytes\r\n\r\n\ufeff<!doctype html>\r\n<html>\r\n<head>\r\n\t<title></title>\r\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" >\r\n\t<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n\t<meta http-equiv=\"Cache-Control\" content=\"no-cache, must-revalidate\" />\r\n\t<meta http-equiv=\"Expires\" content=\"0\" />\r\n</head>\r\n<body>\r\n</body>\r\n<script>\r\n\twindow.location.href = \"./doc/page/login.asp?_\" + (new Date()).getTime();\r\n</script>\r\n</html>",
         "datamd5" : "c03ea71cf5d488ef183005e3486689bd",
         "datammh3" : 734548108,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-4-230"
         ],
         "hostname" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "ip" : "219.74.4.230",
         "ipv6" : "false",
         "latitude" : "1.3216",
         "location" : "1.3216,103.8789",
         "longitude" : "103.8789",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "seen_date" : "2024-11-06",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.4.230:3260 (tcp/http) - last seen on 2024-11-06 at 22:54:10 UTC

    • IP
      219.74.4.230
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.4.230:3260/ 200

      Reverse DNS
      bb219-74-4-230.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      c03ea71cf5d488ef183005e3486689bd
      HTTP Header MD5
      fd8e0a765092d70d012b61df4ef95edf
      HTTP Body MD5
      167b799d5d5294a1c72f3865f37e43c3
    • HTTP/1.1 200 OK
      Vary: Accept-Encoding
      X-Frame-Options: SAMEORIGIN
      Content-Type: text/html
      X-Content-Type-Options: nosniff
      Date: Thu, 07 Nov 2024 06:54:08 GMT
      ETag: 1728304293
      Content-Length: 481
      X-XSS-Protection: 1; mode=block
      Last-Modified: Tue, 20 Jun 2023 03:52:36 GMT
      Connection: close
      Accept-Ranges: bytes
      
      <!doctype html>
      <html>
      <head>
      	<title></title>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      	<meta http-equiv="X-UA-Compatible" content="IE=edge" >
      	<meta http-equiv="Pragma" content="no-cache" />
      	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
      	<meta http-equiv="Expires" content="0" />
      </head>
      <body>
      </body>
      <script>
      	window.location.href = "./doc/page/login.asp?_" + (new Date()).getTime();
      </script>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-06T22:54:10.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "167b799d5d5294a1c72f3865f37e43c3",
               "bodymmh3" : -370724244,
               "header" : [
                  {
                     "value" : 1728304293,
                     "name" : "ETag"
                  },
                  {
                     "value" : "Tue, 20 Jun 2023 03:52:36 GMT",
                     "name" : "Last-Modified"
                  }
               ],
               "headermd5" : "fd8e0a765092d70d012b61df4ef95edf",
               "headermmh3" : -1631335429
            },
            "length" : 806
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Type: text/html\r\nX-Content-Type-Options: nosniff\r\nDate: Thu, 07 Nov 2024 06:54:08 GMT\r\nETag: 1728304293\r\nContent-Length: 481\r\nX-XSS-Protection: 1; mode=block\r\nLast-Modified: Tue, 20 Jun 2023 03:52:36 GMT\r\nConnection: close\r\nAccept-Ranges: bytes\r\n\r\n\ufeff<!doctype html>\r\n<html>\r\n<head>\r\n\t<title></title>\r\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" >\r\n\t<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n\t<meta http-equiv=\"Cache-Control\" content=\"no-cache, must-revalidate\" />\r\n\t<meta http-equiv=\"Expires\" content=\"0\" />\r\n</head>\r\n<body>\r\n</body>\r\n<script>\r\n\twindow.location.href = \"./doc/page/login.asp?_\" + (new Date()).getTime();\r\n</script>\r\n</html>",
         "datamd5" : "c03ea71cf5d488ef183005e3486689bd",
         "datammh3" : 734548108,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-4-230"
         ],
         "hostname" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "ip" : "219.74.4.230",
         "ipv6" : "false",
         "latitude" : "1.3216",
         "location" : "1.3216,103.8789",
         "longitude" : "103.8789",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "seen_date" : "2024-11-06",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 118.200.33.181:3260 (tcp/http) - last seen on 2024-11-06 at 08:19:17 UTC

    • IP
      118.200.33.181
      Network
      118.200.0.0/17
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://118.200.33.181:3260/ 400

      HTTP Title
      400 The plain HTTP request was sent to HTTPS port
      Reverse DNS
      bb118-200-33-181.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      F5 Nginx
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      a3768245d18923b85ff9fbd3823b817e
      HTTP Header MD5
      a629a0fe278971ad61801ba6975ba467
      HTTP Body MD5
      4481ddb7dc4c86ee57d53e06632d175b
    • HTTP/1.1 400 Bad Request
      Server: nginx
      Date: Wed, 06 Nov 2024 08:19:16 GMT
      Content-Type: text/html
      Content-Length: 264
      Connection: close
      
      <html>
      <head><title>400 The plain HTTP request was sent to HTTPS port</title></head>
      <body bgcolor="white">
      <center><h1>400 Bad Request</h1></center>
      <center>The plain HTTP request was sent to HTTPS port</center>
      <hr><center>nginx</center>
      </body>
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-06T08:19:17.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "4481ddb7dc4c86ee57d53e06632d175b",
               "bodymmh3" : 1578429100,
               "headermd5" : "a629a0fe278971ad61801ba6975ba467",
               "headermmh3" : -592904299,
               "title" : "400 The plain HTTP request was sent to HTTPS port"
            },
            "length" : 409
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 400 Bad Request\r\nServer: nginx\r\nDate: Wed, 06 Nov 2024 08:19:16 GMT\r\nContent-Type: text/html\r\nContent-Length: 264\r\nConnection: close\r\n\r\n<html>\r\n<head><title>400 The plain HTTP request was sent to HTTPS port</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>400 Bad Request</h1></center>\r\n<center>The plain HTTP request was sent to HTTPS port</center>\r\n<hr><center>nginx</center>\r\n</body>\r\n</html>\r\n",
         "datamd5" : "a3768245d18923b85ff9fbd3823b817e",
         "datammh3" : 227797036,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "118.200.0.0/17"
         },
         "host" : [
            "bb118-200-33-181"
         ],
         "hostname" : [
            "bb118-200-33-181.singnet.com.sg"
         ],
         "ip" : "118.200.33.181",
         "ipv6" : "false",
         "latitude" : "1.3248",
         "location" : "1.3248,103.7799",
         "longitude" : "103.7799",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "Nginx",
         "productvendor" : "F5",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Bad Request",
         "reverse" : [
            "bb118-200-33-181.singnet.com.sg"
         ],
         "seen_date" : "2024-11-06",
         "source" : "datascan",
         "status" : 400,
         "subnet" : "118.200.0.0/17",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 101.78.88.252:3260 (tcp/http) - last seen on 2024-11-05 at 21:58:22 UTC

    • IP
      101.78.88.252
      Network
      101.78.64.0/19
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://101.78.88.252:3260/ 302

      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      lighttpd lighttpd
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      0799c7337d25a5728659d35dc8bd4be5
      HTTP Header MD5
      c3dc347a45e38d7c3d1575ee14f4a5d7
      HTTP Body MD5
      d41d8cd98f00b204e9800998ecf8427e
    • HTTP/1.1 302 Found
      Location: https://<ip>/
      X-XSS-Protection: 1; mode=block
      X-Frame-Options: sameorigin
      Referrer-Policy: same-origin
      X-Content-Type-Options: nosniff
      Strict-Transport-Security: max-age=31536000;includeSubDomains
      Content-Length: 0
      Connection: close
      Content-Security-Policy: img-src 'self' data:;object-src 'none';style-src 'self' 'unsafe-inline';connect-src 'self';script-src 'nonce-nonce_static_placeholder' 'unsafe-inline';base-uri 'self';
      Date: Tue, 05 Nov 2024 21:58:21 GMT
      Server: lighttpd
      
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-05T21:58:22.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "d41d8cd98f00b204e9800998ecf8427e",
               "bodymmh3" : -1,
               "headermd5" : "c3dc347a45e38d7c3d1575ee14f4a5d7",
               "headermmh3" : -281085065
            },
            "length" : 522
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 302 Found\r\nLocation: https://<ip>/\r\nX-XSS-Protection: 1; mode=block\r\nX-Frame-Options: sameorigin\r\nReferrer-Policy: same-origin\r\nX-Content-Type-Options: nosniff\r\nStrict-Transport-Security: max-age=31536000;includeSubDomains\r\nContent-Length: 0\r\nConnection: close\r\nContent-Security-Policy: img-src 'self' data:;object-src 'none';style-src 'self' 'unsafe-inline';connect-src 'self';script-src 'nonce-nonce_static_placeholder' 'unsafe-inline';base-uri 'self';\r\nDate: Tue, 05 Nov 2024 21:58:21 GMT\r\nServer: lighttpd\r\n\r\n",
         "datamd5" : "0799c7337d25a5728659d35dc8bd4be5",
         "datammh3" : 1157605880,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "101.78.64.0/19"
         },
         "ip" : "101.78.88.252",
         "ipv6" : "false",
         "latitude" : "1.3756",
         "location" : "1.3756,103.7685",
         "longitude" : "103.7685",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "lighttpd",
         "productvendor" : "lighttpd",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Found",
         "seen_date" : "2024-11-05",
         "source" : "datascan",
         "status" : 302,
         "subnet" : "101.78.64.0/19",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 128.106.219.33:3260 (tcp/unknown) - last seen on 2024-11-05 at 08:24:14 UTC

    • IP
      128.106.219.33
      Network
      128.106.192.0/18
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      Reverse DNS
      bb128-106-219-33.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      unknown
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      27b235e1812cf15ed38f02201bc5fc2c
    • \x0d
      ser2net port 3260 device /dev/F9PBASE [9600 N81] (Debian GNU/Linux)\x0d
      \x0d
      $GNTXT,01,01,01,USB: unkn CDC req*32\x0d
      \xb5b\x02\x15\x90	\xd3Mb\x10\xf8\xc9\x08A#	\x12L\x01\x01\x9fc\xb4\xed\x02\xfc[\xb6\x81A\xc4\xf76\xeb\x0dE\xa7A\x80\xe3\xa0\xc3\x05\x04\x00\x00\xf4\xfb)\x04\x02\x07\x0f\x00\x13\xed\x9d\x96?\x85\x84A\x88\xc0X\x00\x80\xf5\xaaA*K\xe4\xc4\x05\x02\x00\x00\xf4\xfb&\x05\x02\x07\x07\x00\x08\xe5\xd9R\xc6Y{A\x17\xf3F\xbcQ\xf7\xa1A\x86\x13I\xc5\x02\x1f\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00AZ\xf7\xdb\x1e\x96yA\xc3\xb8\x0dt\xa4\xce\xa0A\xfb\xb0\x01\xc5\x02\x18\x00\x00\xf4\xfb(\x04\x02\x06\x07\x000\x8c\xae\xab\xd0\xf4xA\xe9\xb0G\x88\xaed\xa0A\xf7\x99BD\x00\x15\x00\x00\xf4\xfb!\x06\x05\x08\x0f\x00@\x1cPW\x87T\x83A0-$8-e\xa9A49X\xc4\x01\x7f\x00\x00\xf4\xfb%\x05\x03\x08\x0f\x00n\xea>\xea
      D\x82A\xb4\x01\x1a\xeaW\xc7\xa7A\xec\xad?\xc4\x03\x07\x00\x00\xf4\xfb*\x03\x02\x06\x0f\x00!\x8e\.?\\x83A\xcc$If\x1d4\xa9A\xd0\xcc7\xc3\x03\x06\x00\x00\xf4\xfb$\x05\x03\x08\x07\x000\xc5\x95N\xbdb\x82A\x0cz \x05N\xef\xa7AL?-\xc4\x03
      \x00\x00\xf4\xfb)\x04\x02\x07\x0f\x00	M.lA\xcb\x83A\xaa+H\xa4\xa0\xc4\xa9AH\xcf\xb6\xc3\x03	\x00\x00\xf4\xfb"\x05\x04\x08\x07\x00h?v\x8c_\x07\x83A\xac\xb2\xbfG\xa0\xc5\xa8A\xbc{\x0b\xc5\x03\x0d\x00\x00\xf4\xfb&\x04\x03\x07\x0f\x00\xf1/\xf2\x17%h\x83A\xdc\xdeg\xac\x9aC\xa9A\xdeL\x10\xc5\x03\x08\x00\x00\xf4\xfb$\x05\x03\x08\x07\x00\xe2\xc9\x13$\xbektA\xcf\xce\x92\x9f\x97V\x9bAB\xbe\xd2\xc4\x06\x04\x00\x0d\xf4\xfb+\x05\x01\x06\x07\x00?\xcbr\xd3\x93\x99wAe[v<A\x84\x9fA'A\xe7\xc4\x06\x10\x00\x06\xf4\xfb#\x06\x04\x08\x07\x00]_}Zs\xd6uAp2\xa7\xf9\x0d/\x9dAt\xd0\x02E\x06\x05\x00\x08\xf4\xfb)\x05\x02\x06\x07\x00?\xd6!\xd6)\x95wA\x93\xfb\xae\x04\x87\x8c\x9fA@\xbf\x8f\xc2\x06\x11\x00\x0b\xf4\xfb'\x06\x02\x07\x0f\x00J\xac\x9b\xab/}wA\x10g\xa2\xd4\xb3X\x9fA\xb9\xf8\xa6D\x06\x12\x00\x04\xf4\xfb$\x06\x03\x07\x0f\x00~%\x08\xc7\xcemyAb\xaa\xee\xb4'\xb4\xa0A\xfe\x0c\xc1\xc4\x02\x04\x00\x00\xf4\xfb)\x04\x01\x06\x07\x00\xf8\xdc\xc7\xcbx\x9e\x82A@\x0b\x801\xfdu\xa8A\xb8\x97\xa9\xc4\x05\x03\x00\x00\xf4\xfb$\x05\x03\x08\x0f\x00@\x14\x89&\xc4\xa5xA*\x84O\xfc\xc00\xa0A\xd0SX\xc4\x00\x1f\x00\x00\xf4\xfb%\x05\x04\x08\x0f\x00\x8eb	\x12d\xa7yA\xfa\xf7/\xb2\xfa\xd9\xa0A\x00Bt\xc4\x00\x1c\x00\x00\xf4\xfb!\x05\x04\x08\x07\x00&}LlKPwAnc\xdd\xd5\xe7\xa0\x9eA\x84\xa6C\xc4\x00\x03\x00\x00\xf4\xfb%\x04\x02\x07\x07\x00k\xba:hQs\x82Ad\x92\xbb\x9cL=\xa8AWI[\xc4\x05\x07\x00\x00\xf4\xfb$\x05\x03\x08\x0f\x00k\x02\xf7~4y\x83A\x80\xc8j1\xd0Y\xa9A\x00\xb8t\xc1\x03\x10\x00\x00\xf4\xfb%\x04\x03\x07\x07\x00\x8e\xbe2q\xd5NxA\xf2{K\x10\xfb\xa4\x9fA\xa0a\x85\xc2\x03\x1e\x00\x00\xf4\xfb+\x03\x01\x06\x0f\x00\x16$c\x14+\xccwA\xae1\xab]\xac\xca\x9fA828\xc5\x06\x0f\x00\x07\xf4\xfb$\x06\x03\x08\x0f\x00\x8e]\xb8\xe1\x04\x0cwA\xb6\xa2\xa0\xb4\xd1\xd7\x9eA\xdcJ\x94\xc5\x06\x03\x00\x0c\xf4\xfb'\x06\x02\x07\x0f\x00\xa6\x18^\xafg\xc0xA\x8a\xf5_\x98@B\xa0Ayob\xc5\x00\x1a\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00\xda\xb9!\x9f\x06\x8cuA\xf9,\x83\xe7\xbcN\x9cA\x00\xfb\xde\xc2\x00\x1b\x00\x00\xf4\xfb,\x03\x01\x06\x0f\x00\x9d6\xdc$U\xb7xA4Xf\xa3L<\xa0A\xb8\xfa\xa8\xc3\x02\x06\x00\x00\xf4\xfb*\x04\x01\x06\x07\x00^G&\xa9jc\x82A@\x06\x8dQh(\xa8Al\x13Z\xc4\x01\x80\x00\x00\xf4\xfb+\x03\x01\x06\x07\x00kl\xab\xda\x18\xeczA@\xc2/\xc9E\xaf\xa1A\xbc~\x18D\x02\x12\x00\x00\xf4\xfb'\x04\x02\x07\x07\x00\x9e(\x02\x10,8vAf\x99\x9e\x10\xe60\x9dA\xca\xf2\xd3D\x00\x08\x00\x00\xf4\xfb*\x04\x02\x07\x07\x00\xd0g\xda\x98Q\x9b{A\x7f;\x87\xfe^"\xa2A(\xd1\xfb\xc3\x02\x0b\x00\x00\xf4\xfb\x1f\x07\x06\x08\x07\x00&\xb40HQs\x82A\xa8\x15\xa7@L=\xa8A\xdbL[\xc4\x01\x89\x00\x00\xf4\xfb(\x04\x02\x07\x07\x00Z\xf6\xf6\x04\xd6\xe3zA
      F\x13D\xda\xa9\xa1A\x00\xc4\xb8\xc2\x02\x19\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00\xf8\x9a`\xbc\xb9:yA\xdci\xce#\x9c\x92\xa0A\x00\xef:D\x02	\x00\x00\xf4\xfb*\x04\x02\x06\x07\x00\xb2 t \x94nxA\xd6B(k\x82\x0c\xa0A\x1a\xeb\x1bE\x00\x04\x00\x00\xf4\xfb#\x05\x03\x08\x07\x00-Q\xd6\x04=zxAP~t\x19(\x14\xa0A)\x00^\xc5\x00 \x00\x00\xf4\xfb&\x04\x02\x07\x07\x00 \xb8=u\xde\xec{Av\x98\x83f\xf0W\xa2A\x08\x92\xc5\xc3\x02
      \x00\x00\xf4\xfb"\x05\x04\x08\x07\x00{\x1a\x00\x88\xbe\xb0vA\x0b\xf1\x18\x83K\xcf\x9dA\xdeDM\xc5\x00\x10\x00\x00\xf4\xfb(\x04\x02\x07\x0f\x00\x89\xbc\xdct\xbdb\x82A@%5\xe2\x05\x82\xa2A\xbc\xfe\x05\xc4\x03
      \x02\x00\xf4\xfb,\x03\x01\x06\x07\x00\xe9p)\xe8
      D\x82A\xf8\x86 \x0c\x1fc\xa2A\x8cH\x14\xc4\x03\x07\x02\x00\x04.-\x03\x01\x06\x0f\x00\x9a]+L?\\x83ANS\x8d;0}\xa3A\xe0R\x0e\xc3\x03\x06\x02\x00\x98\x12(\x06\x02\x07\x03\x00$0^\x99\x1f\x96yA@\xb3lz\xa8\xc1\x99A\xf2\xbe\xc6\xc4\x02\x18\x06\x00\xf4\xfb,\x03\x01\x05\x07\x00\xb0F\xea\x0c`\x07\x83A\x8a|\\x95\xc0'\xa3A\x0e\xa7\xd7\xc4\x03\x0d\x02\x00\xf0-)\x03\x02\x06\x0f\x00\x06\x06g\xda4y\x83AJe\xe0\x0cW\x9a\xa3A\xff0:\xc1\x03\x10\x02\x00\xcc\xdd(\x04\x02\x07\x07\x00\x87\xfb\Q%h\x83A\xa8G\xf5\x82*\x89\xa3AT%\xdf\xc4\x03\x08\x02\x00\x98\x12)\x06\x02\x06\x03\x00\x88o\x87\x94\xcfmyA`\xcb\x9d\xd0\x13\x99\x99A\x0c\xe7\x93\xc4\x02\x04\x06\x00\xf4\xfb-\x03\x01\x05\x07\x00\xce\xb1\x96\x8a\xc7Y{A\xdd\xff\xa3\xecP\x88\x9bA\x13\x18\x1a\xc5\x02\x1f\x06\x00\x9ch*\x03\x01\x06\x07\x00\xae\x99O\xb4A\xcb\x83Af[\xa8\x88\xef\xec\xa3A\x808\x8d\xc3\x03	\x02\x00\xf0-)\x03\x02\x06\x07\x00\xea\x8dA\xc1\x19\xeczA\xb6\xa4\x00\x85\xe8\x19\x9bAX\xbe\xe9C\x02\x12\x06\x00\xb8\xdd*\x03\x02\x06\x07\x00\x16B\x9b1\xc2w|A\xdb\xc5\x14)2\xa8\x9cA(D\x97\xc3\x02\x0c\x06\x00\x00\x00\x16	\x0f\x0c\x01\x00\x91a\x1b{\xba:yA\x04\xf5h\xde\xa7e\x99A\xbcA\x0fD\x02	\x06\x00\xb8\xdd.\x03\x01\x05\x07\x00\xc9;\x18\x1a\xe0\xec{A\xd0\xb0b\xc4c\x1c\x9cA\xc0h\x97\xc3\x02
      \x06\x00\x98\x12*\x04\x01\x06\x07\x00\x05:\x9d\x1fS\x9b{A}\xbd\xab\x08L\xca\x9bA'\xe1\xc0\xc3\x02\x0b\x06\x00\xac\x12$\x06\x03\x07\x07\x00\x00r\x97\xe4U\xb7xAD\xbd\xce\xb3c\xe1\x98A\xd8\x81\x81\xc3\x02\x06\x06\x00\xf4\xfb.\x03\x01\x05\x07\x00$$\x1dT>zxA\xa3\x0dk\x08\xce\x0e\x99A\xf6\xf9,\xc5\x00 \x03\x00\xac\x12$\x07\x03\x08\x07\x00\xb3K Qy\x9e\x82A\xd8\x9bTvz\x0f\xa3A\x94&\x84\xc4\x05\x03\x05\x00\xf0-(\x04\x02\x07\x07\x00\x03\xcf\x1a\x07@\x85\x84A\xd0\xc8o\x8c\xcb\x01\xa5A\xf9\xe6\xb1\xc4\x05\x02\x05\x00\x98\x12)\x06\x02\x07\x07\x00bc\xd3\x02t\xd6uA\x17\xf7\xe3\xe6\xcf\xb2\x96A\xe8~\xcbD\x06\x05\x02\x08\xdc\x87,\x05\x01\x06\x0f\x00_\xf2f\xc7*\x95wA\x88Oo\xed\xbd\x89\x98A@f`\xc2\x06\x11\x02\x0b\xd4I(\x05\x02\x07\x0f\x00\xa9\xc8\xf2\x84\xbektAq&C\xa9WC\x95A\xe4\xe1\xa3\xc4\x06\x04\x02\x0d\x88h.\x05\x01\x05\x0f\x00\xbd\xa1\x9a\xf10}wA\x1c#>\xffoa\x98A@\xd3\x81D\x06\x12\x02\x04\xf0-+\x05\x02\x06\x0f\x00\xc9kG\xf5\x94\x99wAk ?|P\x83\x98A\x0b\xd3\xb3\xc4\x06\x10\x02\x06\x04.*\x05\x02\x06\x07\x00\xc0\xad\x98\xdf,8vA\x00\xff\x15\xf5\x07\xbf\x96A\x160\xa5D\x00\x08\x03\x00\xf0-(\x04\x02\x07\x07\x00Bx\xbe\xd8h\xc0xAH\xa5<\\xa2V\x99A\xc2p0\xc5\x00\x1a\x03\x00\xac\x12%\x07\x02\x07\x07\x00@\xa3\x0f>e\xa7yA\xc3,\x9c\xac\x18C\x9aA\xa1K>\xc4\x00\x1c\x03\x00\x98\x12&\x07\x02\x07\x07\x00R\M\xfe\x94nxAo\x11_\xe6\xdd\x02\x99A\xdf\x00\xf3D\x00\x04\x03\x00\xac\x12'\x07\x02\x07\x07\x00$\xd6E\xb4Qs\x82A8{\x0c\xf5L\xe3\xa2A\xe4\xde*\xc4\x05\x07\x05\x00\x98\x12-\x06\x01\x06\x07\x00\xdc3\xd0\x0d\xc5\xa5xAL\xdfp\xc9\;\x99A\xe8\x93(\xc4\x00\x1f\x03\x00\xac\x12%\x07\x03\x07\x07\x00\xd0\xeaW/,\xccwAv\xf7U\x8a\x15\xba\x98A\x9bC\x0f\xc5\x06\x0f\x02\x07\xb8\xdd)\x05\x01\x06\x07\x00\xaf:b\xd6\x05\x0cwAH>-\xa61\xfd\x97A \xaff\xc5\x06\x03\x02\x0c\x9ch+\x05\x01\x06\x0f\x00\xcc'\xdbKLPwA4K-\xb7\xcb\xdd\x97A\x11s\x18\xc4\x00\x03\x03\x00\xf0-)\x04\x02\x07\x07\x00\x0d\xbftU\\xb6\x81A\xa8a\xc3\xab\xdc!\xa2A \x8fz\xc3\x05\x04\x05\x00\xac\x12+\x06\x01\x06\x07\x00\x11\xebN@\x07\x8cuA\xbf\x1aa\xb2\xcd\x0e\x96A\xa0\xbf\xad\xc2\x00\x1b\x03\x00\xac\x12+\x06\x01\x06\x07\x00-0\xd3\x01\x0dCP\x000jxf\x00\x00\x18\x80\x849\x80\x00\x00\x00 \x00\x80\x00\x7f_\xfaJj2:zr\x1a\x92rh\x00\x00\x00\x00\x06\xe1\x8b\x045\xc4\xd9\xc7W!t5\xdc\x80"\x14\x00=\x1f\x1b\x02u\xef\xa8\x12\x1f\xf6\x80\x03\xf0\x19^d\x18\xf4.\x9b\xad\xec\xc2\xc8\xee\xfa\x11\xc5\xb8~K\xed\xb7\xb1\xd9\xd2!\xadG'\xde\xf4\xb1\xa0t\xa0\x8bcw\x10\x88\xf41\x7f!Bv\xa8\xd0f\xef\xe8d\x17\xa7\xbax\x87\xb2\x8c\xd0OV\xf8D\xd3@+\x15\xa7\xb8|Xm\xb9\x10\x85\xd1o\xe5E_\xd2\xe1\xb0\x01\xaf\x80,\x98\xc7\xbaI?\xce\x93\x97\xa9f\xe7\xdam\xcc\x9c\x96\xc3\x88,`\x96\xceQ\x1d\x08\x82\xcc\xc8-&\x82\xd1H-\x1e\x82\x80\x00\x12\x85!\x18N\x15\x05\x01@B\x12\x04\xa1`V\x10\x84\xc1(J\x13\x04\x80#TIB\x08\xd4\x0cH0PX^\x0b\x11\xf7\xc9\xaf\x96\xeaRt\xa37\xa8/'\x11 "\x13\x83/\x07@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x8c\xfa\xd3\x00yC\xf0\x00I\xc9\xad&\x00\x00\x1c\x01\x00\x00\x00\x00\x00\x00 \x80\x00\x00\x7f\xa4\x1f\xa2%\xe6\xc3\xf6\xb7\xc5\x95\x1a\xfaa\xfb`E\xbf?\x87\xc9h\xb2\x12\xe0\x95f\x1e\x83\x82\xa8 ON\x9a\xf7Q\xedP\x01+\x01\x82\xbe\xea\xf9\x9c\xe7xu\x84\x81\x11!\x01B\xb6\x06'O\x87\x81\xc8MJ\xa4\xba\xaaA\x0b\x0c\xd8\xbb\x80N\x15\x85apR\x16\x04\x81Hrg\xe4\xeb\x9ek=\x81\xb8\x03m\x1b\xadwv\x00>\xafv\xd3\x00\xaaD\x90\x000jxf\x00\x00
      0\x00\x81\x00\x00\x00\x00 \x01\x00\x00\x7f\xfa\x8ar\xca\xc2\x8a\xb8\x00\x00\x02\x11\x88~\xbc\x06y\xf5\xff\x02\x03(\x0b@#~9\xf2\x11\xf1P\xa1\xe3\xd6 \x7f\xe4\xa6\x91\x93\xe1\x1e\xfe\x19\xcc\xfd\xa2&\x99\xf5\xe8!\xf4\xf9\xc7\xa0\xa0\xbc`j\x1e \x86\x81\xff\xa1/7\x92H\xe8C\x95\xe8{\xf6\xa8^:\xc8\x88\xa0\x00\x8d?\x98\x87\x84\x98d\xfeH\x82\xea\xbd2\xe3O\x0e\xa5\x10\x82\xcc\x88,\xde\xca\xd0
      \xa0\x00R\x16\x85ApD\x15\x03\xe1 P\x16\x04\x81Pd\x08\xc8\x02\x82\x15\x03\xaa)\xd4I\xe1\xa7\x83~\xe2	\xc4{\xda'\xb0\xa8\xc2r\xc3\xd3\x00\xdcFp\x000i\x9d\xa4\x00\x00\x03\xe4\x80\x02\x00\x00\x00\x00 \x02\x00\x00]\xff?\xbc@A<>\xc0&\x80\x00\x00\x00_\xc2\xf0\x97\x90\xf7-\xc4R\xad\x01\x04\x00\x97\xdd`/\x80A\xf7\xd0\x14`L\x9a\x9c7\xa9\x97\xfa\x8a\xe9^ f\x0c\xc6\x80U\xf6\xc4\xdf}	\xe2\F]\xedmN\xf6\xfc\xe9\xe1Q(Se\x9f\xd9v\x87\xe8\xc3h1\x9a\xb7\x80\x88o\x9f\xf6_\xc5\x12\x9f\xdfegq\x97\xf7\x97"\x0f\x9e6\x9f\xbee_\x88\xb4\xbd\x81`%\xd6\x05\x80\x96\xd8\x0e\x1d\x80\x96\xd8\x0b\xbc\xf6\x00	\x02\xa0\xb4$\x08\x82\x90\xa4,	\x82\x90\x94(
      \xc0\xeez\x1c\x140}0\x91\xff#\xefM0\x99\xdf\x80^\xfe\xf0\x9d\xe1<\x85d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xa7?\xd3\x00\x04L\xe0\x00\x80\xed\xed\xd6\xb5b\x01\x07\\x00\x18\x9e\x1a\x0c\xe8\x07\x0b\x05\x08\x18\x0d7\x17\x00\x00\x00%\xd3\x04\x00\x05\x01\xea \xc3\xbe\xe3=\xda\xe4\xc6\x00\xb0\xbb\x01\x00\xc6\xa3\x01\x00\x08\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
      \x00\x00\x00\x80\xa8\x12\x01\x0f'\x00\x00l\x18B>\x00\x00\x00\x00\x00\x00\x00\x00N\x87$GNRMC,082413.00,A,0118.20829,N,10350.01410,E,0.000,,051124,,,A,V*11\x0d
      $GNVTG,,T,,M,0.000,N,0.000,K,A*3D\x0d
      $GNGGA,082413.00,0118.20829,N,10350.01410,E,1,12,99.99,107.5,M,6.1,M,,*43\x0d
      $GNGSA,A,3,26,16,28,08,04,32,21,31,27,03,,,99.99,99.99,99.99,1*32\x0d
      $GNGSA,A,3,79,68,67,69,,,,,,,,,99.99,99.99,99.99,2*3C\x0d
      $GNGSA,A,3,10,24,31,06,04,11,,,,,,,99.99,99.99,99.99,3*34\x0d
      $GNGSA,A,3,09,13,08,16,07,06,30,10,,,,,99.99,99.99,99.99,4*33\x0d
      $GPGSV,4,1,13,03,36,272,37,04,22,335,35,08,51,191,42,16,43,355,40,1*65\x0d
      $GPGSV,4,2,13,21,15,201,33,26,19,022,36,27,69,122,44,28,12,069,33,1*60\x0d
      $GPGSV,4,3,13,31,22,039,37,32,24,133,38,40,34,269,37,41,66,267,43,1*6B\x0d
      $GPGSV,4,4,13,50,63,093,40,1*58\x0d
      $GPGSV,2,1,08,03,36,272,41,04,22,335,39,08,51,191,40,26,19,022,37,6*6E\x0d
      $GPGSV,2,2,08,27,69,122,43,28,12,069,38,31,22,039,37,32,24,133,36,6*65\x0d
      $GPGSV,1,1,01,02,08,215,,0*58\x0d
      $GLGSV,2,1,07,67,27,157,39,68,80,170,43,69,44,333,41,79,20,349,36,1*78\x0d
      $GLGSV,2,2,07,80,22,293,35,81,22,103,39,82,22,154,36,1*47\x0d
      $GLGSV,2,1,07,67,27,157,43,68,80,170,46,69,44,333,44,79,20,349,41,3*77\x0d
      $GLGSV,2,2,07,80,22,293,42,81,22,103,40,82,22,154,43,3*49\x0d
      $GLGSV,1,1,01,83,05,192,,0*4C\x0d
      $GAGSV,3,1,09,04,52,110,45,06,67,062,46,09,59,006,46,10,20,161,42,2*7C\x0d
      $GAGSV,3,2,09,11,19,190,36,12,16,137,22,18,39,064,42,24,54,317,44,2*7F\x0d
      $GAGSV,3,3,09,31,25,018,42,2*45\x0d
      $GAGSV,3,1,09,04,52,110,41,06,67,062,42,09,59,006,42,10,20,161,34,7*7C\x0d
      $GAGSV,3,2,09,11,19,190,31,18,39,064,39,24,54,317,40,25,30,250,36,7*72\x0d
      $GAGSV,3,3,09,31,25,018,36,7*43\x0d
      $GAGSV,1,1,03,05,13,331,,19,01,139,,36,02,234,,0*41\x0d
      $GBGSV,2,1,08,06,32,010,36,07,85,124,42,08,34,195,36,09,29,356,34,1*77\x0d
      $GBGSV,2,2,08,10,77,201,41,13,39,210,38,16,32,020,37,30,42,118,43,1*73\x0d
      $GBGSV,2,1,07,06,32,010,40,07,85,124,45,08,34,195,41,09,29,356,41,3*7E\x0d
      $GBGSV,2,2,07,10,77,201,44,13,39,210,41,16,32,020,40,3*4F\x0d
      $GBGSV,3,1,10,01,43,094,,02,67,267,,03,82,109,,04,26,093,,0*74\x0d
      $GBGSV,3,2,10,04,26,093,,05,38,270,,19,67,289,,20,53,166,,0*79\x0d
      $GBGSV,3,3,10,20,53,166,,22,17,319,,0*7E\x0d
      $GNGLL,0118.20829,N,10350.01410,E,082413.00,A,A*71\x0d
      \xb5b\x015\xb4\x02\x18\x9e\x1a\x0c\x019\x00\x00\x00\x02\x00\x08\xd7\x00\x00\x00\x10\x1a\x00\x00\x00\x03%$\x10\x01\xfe\xff\x1f\x19\x00\x00\x00\x04#\x16O\x01\x1e\x00\x1f\x19\x00\x00\x00\x08*3\xbf\x00\xe6\xff\x1f\x19\x00\x00\x00\x10(+c\x01\x0f\x00\x1f\x19\x00\x00\x00\x15!\x0f\xc9\x00\x9c\xff\x1f\x19\x00\x00\x00\x1a$\x13\x16\x00-\x00\x1f\x19\x00\x00\x00\x1b,Ez\x00\x02\x00\x1f\x19\x00\x00\x00\x1c!\x0cE\x006\x00\x1f\x19\x00\x00\x00\x1f%\x16'\x00-\x00\x1f\x19\x00\x00\x00 &\x18\x85\x00\xdd\xff\x1f\x19\x00\x00\x01\x7f%"\x0d\x01\x00\x00\x07\x1a\x00\x00\x01\x80+B\x0b\x01\x00\x00\x07\x1a\x00\x00\x01\x89(?]\x00\x00\x00\x17\x1a\x00\x00\x02\x04)4n\x00\x05\x00\x1f\x19\x00\x00\x02\x05\x00\x0dK\x01\x00\x00\x10\x12\x00\x00\x02\x06*C>\x00\x05\x00\x1f\x19\x00\x00\x02	*;\x06\x00\x00\x00\x17\x1a\x00\x00\x02
      "\x14\xa1\x00\xc2\xff\x1f\x19\x00\x00\x02\x0b\x1f\x13\xbe\x00\xb0\xff\x1f\x19\x00\x00\x02\x0c\x00\x10\x89\x00\x00\x00\x10\x1a\x00\x00\x02\x12''@\x00\x00\x00'	\x00\x00\x02\x13\x00\x01\x8b\x00\x00\x00\x10\x1a\x00\x00\x02\x18(6=\x01\x05\x00\x1f\x19\x00\x00\x02\x19$\x1e\xfa\x00\x00\x00\x17\x1a\x00\x00\x02\x1f$\x19\x12\x00(\x00\x1f\x19\x00\x00\x02$\x00\x02\xea\x00\x00\x00\x10\x12\x00\x00\x03\x01\x00+^\x00\x00\x00\x10\x12\x00\x00\x03\x02\x00C\x0b\x01\x00\x00\x10\x12\x00\x00\x03\x03\x00Rm\x00\x00\x00\x10\x12\x00\x00\x03\x04\x00\x1a]\x00\x00\x00\x10\x12\x00\x00\x03\x05\x00&\x0e\x01\x00\x00\x10\x12\x00\x00\x03\x06$ 
      \x00\x15\x00\x1f\x19\x00\x00\x03\x07*U|\x00\x0c\x00\x1f\x19\x00\x00\x03\x08$"\xc3\x00\xc2\xff\x1f	\x00\x00\x03	"\x1dd\x01\x1b\x00\x1f\x19\x00\x00\x03
      )M\xc9\x00\x06\x00\x1f\x19\x00\x00\x03\x0d&'\xd2\x00\xe9\xff\x1f\x19\x00\x00\x03\x10% \x14\x00#\x00\x1f\x19\x00\x00\x03\x13\x00C!\x01\x00\x00\x10\x12\x00\x00\x03\x14\x005\xa6\x00\x00\x00\x10\x12\x00\x00\x03\x16\x00\x11?\x01\x00\x00\x10\x12\x00\x00\x03\x1b\x00\x0fF\x00\x00\x00\x10\x12\x00\x00\x03\x1d\x00\x1c\xba\x00\x00\x00\x10\x12\x00\x00\x03\x1e+*v\x00\x00\x00\x1f\x19\x00\x00\x05\x02&&&\x00\x14\x00\x1f\x19\x00\x00\x05\x03$\x1dv\x00\xfb\xff\x1f\x19\x00\x00\x05\x04):\x88\x00\xf7\xff\x1f\x19\x00\x00\x05\x07$?]\x00\x00\x00\x1f\x19\x00\x00\x06\x03'\x1b\x9d\x00\xd3\xff\x1f\x19\x00\x00\x06\x04+P\xaa\x00\xeb\xff\x1f\x19\x00\x00\x06\x05),M\x01\x1b\x00\x1f\x19\x00\x00\x06\x0f$\x14]\x01&\x00\x1f\x19\x00\x00\x06\x10#\x16%\x01\x00\x00\x17\x19\x00\x00\x06\x11'\x16g\x00\x00\x00\x17\x1a\x00\x00\x06\x12$\x16\x9a\x00\x00\x00\x17\x1a\x00\x00\x06\x13\x00\x05\xc0\x00\x00\x00\x10\x12\x00\x00x\x8a\xb5b\x01C\xe8\x04\x18\x9e\x1a\x0c\x00N\x00\x00\x00\x03\x00\x00\xfe\xff%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x03\x03\x00\x00\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x04\x00\x00\x1e\x00#\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x04\x03\x00D\x00'\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x08\x00\x00\xe6\xff*\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x08\x03\x00\xdc\xff(\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x10\x00\x00\x0f\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x15\x00\x00\x9c\xff!\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x15\x04\x00\x00\x00\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x1a\x00\x00-\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1a\x03\x00F\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x02\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1b\x03\x00\x01\x00+\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1c\x00\x006\x00!\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1c\x03\x00F\x00&\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1f\x00\x00-\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1f\x03\x00;\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x00 \x00\x00\xdd\xff&\x07\x00\x01)\x00\x00\x00\x00\x00\x00 \x03\x00\xbb\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x01\x7f\x00\x00\x00\x00%\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x80\x00\x00\x00\x00+\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x89\x00\x00\x00\x00(\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02\x04\x00\x00\x05\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x04\x06\x00\x04\x00-\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x06\x00\x00\x05\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x06\x06\x00\x0e\x00.\x07\x00\x01)\x00\x00\x00\x00\x00\x02	\x00\x00\x00\x00*\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02	\x06\x00\x00\x00.\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02
      \x00\x00\xc2\xff"\x07\x00\x01)\x00\x00\x00\x00\x00\x02
      \x06\x00\x90\xff*\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0b\x00\x00\xb0\xff\x1f\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0b\x06\x00w\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0c\x06\x00\x00\x00\x16\x04\x00\x00\x01\x00\x00\x00\x00\x00\x02\x12\x00\x00\x00\x00'\x07\x00\x00\x02\x00\x00\x00\x00\x00\x02\x12\x06\x00\x00\x00*\x07\x00\x00\x02\x00\x00\x00\x00\x00\x02\x18\x00\x00\x05\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x18\x06\x00\x08\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x00$\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02\x1f\x00\x00(\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x1f\x06\x00=\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x06\x00\x00\x15\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x06\x02\x00C\x00(\x06\x00\x01)\x00\x00\x00\x00\x00\x03\x07\x00\x00\x0c\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x07\x02\x00\x17\x00-\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x08\x02\x00\xbf\xff)\x06\x00\x01)\x00\x00\x00\x00\x00\x03\x08\x00\x00\xc2\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x03	\x00\x00\x1b\x00"\x07\x00\x01)\x00\x00\x00\x00\x00\x03	\x02\x00\x1f\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x03
      \x00\x00\x06\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x03
      \x02\x00\x01\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x0d\x00\x00\xe9\xff&\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x0d\x02\x00\xcb\xff)\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x10\x00\x00#\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x10\x02\x00&\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x1e\x00\x00\x00\x00+\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x1e\x02\x00\x00\x00\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x05\x02\x00\x00\x14\x00&\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x02\x05\x00\x12\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x03\x00\x00\xfb\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x03\x05\x00\xf0\xff(\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x04\x00\x00\xf7\xff)\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x04\x05\x00\xe8\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x07\x00\x00\x00\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x07\x05\x00\xfe\xff-\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x03\x00\x0c\xd3\xff'\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x03\x02\x0c\xd1\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x04\x00\x0d\xeb\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x04\x02\x0d\x03\x00.\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x05\x00\x08\x1b\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x05\x02\x08\x14\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x0f\x00\x07&\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x0f\x02\x07\x1d\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x10\x00\x06\x00\x00#\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x10\x02\x06\x00\x00*\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x11\x00\x0b\x00\x00'\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x11\x02\x0b\x00\x00(\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x12\x00\x04\x00\x00$\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x12\x02\x04\x00\x00+\x07\x00\x00\x01\x00\x00\x00\x00\x00k\x1a\xb5b\x01\x03\x10\x00\x18\x9e\x1a\x0c\x05\xdd\x02\x08\x1bs\x00\x00\x81c\x1f\xdaG\x90\xd3\x00\x13>\xd0\x00\x03\xbcs:\xe6\xee\x8ej\x83W\xbe\x00U\xe7\x177\xde\x87!\xb5b\x02\x13,\x00\x02\x04\x01\x00	\x12\x02\x00@\xc4?\x105\xdd\xb0{\xd7\x0f\xbd!\x00\xc0\xfe\x1b\x00\x00p\x88*\x00\x00\x00.R\xaa\xaa\x00\xc0K \xe7^w\xb5$/\xb5b\x02\x13,\x00\x02\x06\x01\x00	&\x02\x00R\x19?\x105\x80\x8d=\xab\xefj=\x00@\xff\xbf\x00\x00\x00\x88*\x00\x00\x00(z\xaa\xaa\x00\xc0K\x8c\x08%J\xbfh\xb2\xb5b\x02\x13,\x00\x02\x12\x01\x00	(\x02\xa4\xb0\xffS\x05\xff} \x15cF\x8az\x00\x80\xaa'I\x93\xaa\xaa*\x00\x00\xca\x89a\xaa\xaa\x00\xc0\x0b\x10\x0f
      \x00\x009\xca\xb5b\x02\x13,\x00\x02\x19\x01\x00	2\x02\x0f\xbb\xd18\x10\x8a\x88\xc1\x17\x07\xe7_\xaf\x00\x00\x00 I<\xb0\xad*\x00\x00\xca\x0dI\xaa\xaa\x00\xc0Kv\x89\xdcE\x83\xb1\x1e\xb5b\x02\x13,\x00\x02	\x01\x00	3\x02\xf0\x06\xb7 \x105<\xcf\xedB\xd2\xe8&\x00@\xf5K\x00\xc0_\x91*\x00\x00\x00\xf1K\xaa\xaa\x00\xc0\xcbb\x12k\xe9?3\x90\xb5b\x02\x13,\x00\x02
      \x01\x00	8\x02\xf4\xff\xe9\xe6\x10\xdf/uZr\x9c\xe5\xef\x00\x00\xf5;I\xd3?\x8f*\x00\x00\xcaNX\xaa\xaa\x00\xc0\xcb\x11\x89x}\x83\xc7E\xb5b\x02\x13,\x00\x02\x1f\x01\x00	\x02\x02\x02\xf8r\xd8\x10\x8a6\xc1\x85vf\xda\xae\x00@\xff?		@\x90*\x00\x00\xca\x8fc\xaa\xaa\x00\xc0\x0b\xf9\xae\x9a\xe8\xbf{p\xb5b\x02\x13,\x00\x02\x18\x01\x00	\x03\x02\xf0\x8d\xdf!\x10\x8a\x16\xb6\x9f\xcf&~\xcc\x00@\xee\x87\x89\xc0\x8f\x83*\x00\x00\xca^@\xaa\xaa\x00\xc0\xcb;\x8a\xfb?\x00\xab\xee\xb5b\x02\x13,\x00\x02\x0b\x01\x00	0\x02\xd0UU\x95\x00UUUUUUUU\x00\xc0\x8cT\x00@O\x86*\x00\x00\x00\x1eV\xaa\xaa\x00@\xffDB\xd5\x81\x83\x86\x17\xb5b\x02\x13,\x00\x01\x89\x00\x00	1\x02\xff\x00\xc0\x11S\xff\x01@\x00\xdf\xff\x01\xc0\xfd\xdf\xff\xfd\xff\xfd\xdf\xff:\xa6\xfe\xdf\xbb\xbb\xbb;\xa6U\xf4\x8e\x7f\xff\xb7\x83\x197\xb5b\x02\x13,\x00\x01\x7f\x00\x00	\x05\x02\xff\xfd\xdf\x0cS\xff	\xc0\xff\xdf\xff\xfd\xdf\xfd\xdf\xff\xff\xff\xfd\xdf\xff{\xb9\xff\xff\xb9\xbb\xab\xbb\xa61\xb6@\x842\xc2\x9c-)\xb5b\x02\x13,\x00\x01\x80\x00\x00	'\x02\xff\xfd\xdf\x0cS\xff	\xc0\xff\xdf\xff\xfd\xdf\xfd\xdf\xff\xff\xff\xfd\xdf\xff{\xb9\xff\xff\xb9\xbb\xab\xbb\xa61\xb6@\x842\xc2\x9cP\x82\xb5b\x02\x15\x90	\xd3Mb\x10\x00\xca\x08A#	\x12L\x01\x01\x87g\xc9r\x0c\xe5]\xb6\x81A\xda\xb7\xb2n\x10E\xa7A\x00\x08\xa1\xc3\x05\x04\x00\x00\xf4\xfb)\x04\x02\x07\x0f\x00/\x13jsJ\x85\x84A\x84{'E\x8e\xf5\xaaA}V\xe4\xc4\x05\x02\x00\x00\xf4\xfb&\x04\x03\x07\x07\x00\x84\xa1\xdb\x97\xecY{AW#\xe3\xdfj\xf7\xa1A\xc0!I\xc5\x02\x1f\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00\xee\x08<\x8b7\x96yAk\xe9X\xaa\xb4\xce\xa0Ah\xb8\x01\xc5\x02\x18\x00\x00\xf4\xfb(\x04\x02\x06\x07\x00\xcc\x00\xceb\xc7\xf4xA%=\x83r\xa8d\xa0A\xe8\xbdBD\x00\x15\x00\x00\xf4\xfb!\x06\x05\x08\x0f\x00L(\xb0{\x8cT\x83A@K\x04\xf93e\xa9AO\x0eX\xc4\x01\x7f\x00\x00\xf4\xfb%\x05\x03\x07\x0f\x003\x00Z\x84\x0fD\x82Alm\xa2\xe7]\xc7\xa7A\x1c\xbf?\xc4\x03\x07\x00\x00\xf4\xfb*\x03\x01\x06\x0f\x00@\x1f[H@\\x83AT\xaf\xeb\xd5\x1e4\xa9A\x81\xda7\xc3\x03\x06\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00m\xfaBw\xc1b\x82A\xdc4\x93oS\xef\xa7Alk-\xc4\x03
      \x00\x00\xf4\xfb)\x03\x02\x06\x0f\x00O\x84K\x9dC\xcb\x83A\xae\xc1\xa3~\xa3\xc4\xa9A\x08\xd0\xb6\xc3\x03	\x00\x00\xf4\xfb"\x05\x04\x08\x07\x00\xef[-\xf0l\x07\x83A$\x1bG\xb6\xb1\xc5\xa8AJx\x0b\xc5\x03\x0d\x00\x00\xf4\xfb&\x04\x03\x07\x0f\x000\x1f\xa6\xf22h\x83AN{\xca\xb5\xacC\xa9A
      K\x10\xc5\x03\x08\x00\x00\xf4\xfb$\x05\x03\x08\x07\x00\xec\xf4\xd5\xd2\xd1ktAWN\x07\xf8\xb1V\x9bAx\xd3\xd2\xc4\x06\x04\x00\x0d\xf4\xfb+\x05\x01\x06\x07\x00\xa7;_v\xa9\x99wA\x8b?\x82#^\x84\x9fA\xcbD\xe7\xc4\x06\x10\x00\x06\xf4\xfb#\x06\x04\x08\x07\x00\x18\x92\xea\xe1Z\xd6uAF\x00bF\xed.\x9dAn\xc4\x02E\x06\x05\x00\x08\xf4\xfb)\x05\x02\x06\x07\x00\xf1!\xbe\xae*\x95wA\x04&p%\x88\x8c\x9fA\x00\x17\x91\xc2\x06\x11\x00\x0b\xf4\xfb'\x06\x02\x07\x0f\x00\x87\xeaW	 }wA\xbf{\xbe\xf6\x9eX\x9fA\xd3\xe5\xa6D\x06\x12\x00\x04\xf4\xfb$\x06\x03\x07\x0f\x00a\xd5\xb4 \xe1myA\x1b	\x86\xc53\xb4\xa0A\x91\x11\xc1\xc4\x02\x04\x00\x00\xf4\xfb)\x04\x02\x06\x07\x00\x93S\xc8\xdc\x80\x9e\x82A\xc8\xcf\x9a\xca\x07v\xa8A\xf5\xa5\xa9\xc4\x05\x03\x00\x00\xf4\xfb$\x05\x04\x08\x0f\x00\xcc\xf1\x9eo\xce\xa5xA\xb5!u\xbe\xc70\xa0A\xf0^X\xc4\x00\x1f\x00\x00\xf4\xfb%\x05\x03\x08\x0f\x002\xc4\xc4\xb3o\xa7yAuK\x94T\x02\xda\xa0A<3t\xc4\x00\x1c\x00\x00\xf4\xfb!\x05\x04\x08\x07\x00\xf0#\xae\xbbTPwA\xf9\xc5r\x10\xf4\xa0\x9eA\xaf\xceC\xc4\x00\x03\x00\x00\xf4\xfb%\x05\x03\x07\x07\x00\x17~\x16\x9fVs\x82A0\x9c\x99vS=\xa8A3E[\xc4\x05\x07\x00\x00\xf4\xfb$\x05\x03\x07\x0f\x00\x87\x8cp\x954y\x83Ad\x18\xf9O\xd0Y\xa9A\x00Fw\xc1\x03\x10\x00\x00\xf4\xfb%\x04\x03\x07\x07\x00\x06\xfd\x97>\xd6NxAH4\x1f\x1c\xfc\xa4\x9fA (\x86\xc2\x03\x1e\x00\x00\xf4\xfb+\x03\x01\x06\x0f\x00;\x06t\x8dM\xccwAi\xd3\x9ai\xda\xca\x9fA|78\xc5\x06\x0f\x00\x07\xf4\xfb$\x06\x03\x08\x0f\x00&\xdckI<\x0cwA\x01\x9a\xaa\xda\x1b\xd8\x9eA<O\x94\xc5\x06\x03\x00\x0c\xf4\xfb'\x06\x02\x07\x0f\x00\xc2\x7f\xc6\xc6\x92\xc0xAw \x12\xe6\B\xa0A\xb3pb\xc5\x00\x1a\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00\xe2\x1f\xbb\xf3\x07\x8cuAF\x0b#\xa6\xbeN\x9cA\xa0\x82\xe0\xc2\x00\x1b\x00\x00\xf4\xfb,\x03\x01\x06\x0f\x00\x85\xb9\xde'Y\xb7xA\xd5\xfacGO<\xa0Ah.\xa9\xc3\x02\x06\x00\x00\xf4\xfb*\x04\x02\x06\x07\x00/\x0c\xa4\xd7oc\x82A\xc0{1!o(\xa8A|\xf4Y\xc4\x01\x80\x00\x00\xf4\xfb+\x03\x01\x06\x07\x00\xba\xbf\x95\x98\x11\xeczA\xa4iJ\x05A\xaf\xa1A\x04f\x18D\x02\x12\x00\x00\xf4\xfb'\x04\x02\x06\x07\x00\x13,j\xe4\x178vA~\xf3\xb0\x91\xcb0\x9dA\x9c\xe9\xd3D\x00\x08\x00\x00\xf4\xfb*\x04\x02\x07\x07\x00EF7\x92W\x9b{A?\xd0\xf6\xedb"\xa2A\x17\xf6\xfb\xc3\x02\x0b\x00\x00\xf4\xfb\x1f\x07\x06\x08\x07\x00\xad`[\x7fVs\x82A\xc8_v\x1aS=\xa8A\xd7([\xc4\x01\x89\x00\x00\xf4\xfb(\x05\x02\x07\x07\x00\x14v\xb8\x1d\xd7\xe3zA$\xa9	\xfd\xda\xa9\xa1A\x80\xe1\xb9\xc2\x02\x19\x00\x00\xf4\xfb$\x05\x03\x07\x07\x00\xca\xf1\xb2\xd6\xb0:yA\xba\x83;L\x96\x92\xa0A\x00\xde:D\x02	\x00\x00\xf4\xfb*\x04\x01\x06\x07\x00i=}rvnxA\x99\xb3\x9f\xedn\x0c\xa0A\xed\xec\x1bE\x00\x04\x00\x00\xf4\xfb#\x05\x03\x08\x07\x00u\xf5ADgzxA%\xef\xce\xd9C\x14\xa0A\xfd\x07^\xc5\x00 \x00\x00\xf4\xfb&\x04\x02\x07\x07\x00\xe8\xb0\xdc'\xe3\xec{Ak_r|\xf3W\xa2A\xc7\x95\xc5\xc3\x02
      \x00\x00\xf4\xfb"\x05\x04\x08\x07\x00\xc8g\xef\x98\xe5\xb0vA+\xe3\xa8\xd4~\xcf\x9dA\x05KM\xc5\x00\x10\x00\x00\xf4\xfb(\x04\x02\x07\x0f\x00e\xaf\xb1\x9d\xc1b\x82A(`F\x12
      \x82\xa2Al\x07\x06\xc4\x03
      \x02\x00\xf4\xfb,\x03\x01\x06\x07\x00\xe0\xfeX\x83\x0fD\x82A\xf0\xee\xec\xad#c\xa2A\xacK\x14\xc4\x03\x07\x02\x00\xec1-\x03\x01\x06\x0f\x00\xd6\x8f%c@\\x83A\xb2\xd5\xc8W1}\xa3AP
      \x0e\xc3\x03\x06\x02\x00\x80\x16(\x05\x02\x06\x03\x00&@\x83G8\x96yA\xadQ\x98R\xc1\xc1\x99A\x8e\xc8\xc6\xc4\x02\x18\x06\x00\xf4\xfb,\x03\x01\x05\x07\x00\x17\x8d\xc0pm\x07\x83A\x10\xfb	\x10\xce'\xa3A\x86\xab\xd7\xc4\x03\x0d\x02\x00\xd81)\x03\x02\x06\x0f\x00e+\xec\xf14y\x83A\xae6\x81$W\x9a\xa3A\xff+<\xc1\x03\x10\x02\x00\xb4\xe1(\x04\x02\x07\x07\x00*\xd9$)3h\x83A~\xb4eu8\x89\xa3A\xbc-\xdf\xc4\x03\x08\x02\x00\x80\x16)\x05\x01\x06\x03\x00\xc4\xfb\x94\xf1\xe1myA\x81\xce\xc4M&\x99\x99A\xb7\xef\x93\xc4\x02\x04\x06\x00\xf4\xfb-\x03\x01\x06\x07\x00qt\x93\xd0\xedY{A\x15\x94\xe5rw\x88\x9bAQ\x1b\x1a\xc5\x02\x1f\x06\x00\x84l+\x03\x01\x06\x07\x00\xf2\xc7\x0e\xe6C\xcb\x83A\xb6ki\xbd\xf1\xec\xa3A\xd8N\x8d\xc3\x03	\x02\x00\xd81)\x03\x01\x06\x07\x00^%\x93\x81\x12\xeczA,\x07\x887\xe1\x19\x9bA\xb0\xa2\xe9C\x02\x12\x06\x00\xa0\xe1*\x03\x01\x06\x07\x00P\xfa\x99\xce\xc6w|A\xe5\xafF\xcf6\xa8\x9cAXe\x94\xc3\x02\x0c\x06\x00\x00\x00\x16	\x0f\x0c\x01\x002\xfe0\x96\xb1:yA\x1d\x13{\xea\x9ee\x99A\xfc3\x0fD\x02	\x06\x00\xa0\xe1.\x03\x01\x04\x07\x00\xcf;=\xd0\xe4\xec{A\xab.\xea~h\x1c\x9cAp\\x97\xc3\x02
      \x06\x00\x80\x16*\x04\x01\x06\x07\x00\xaa\x0ft\x1aY\x9b{A\xaf\xd4\x8c\x10R\xca\x9bA8\xf3\xc0\xc3\x02\x0b\x06\x00\x94\x16$\x05\x03\x07\x07\x00\xd4\xb0\xb7\xe7Y\xb7xA\xac5\xb7\xbfg\xe1\x98A\xf0\x98\x81\xc3\x02\x06\x06\x00\xf4\xfb.\x03\x01\x05\x07\x00}b\xd6\x8dhzxA\xde\xbe\x10H\xf9\x0e\x99A)\x00-\xc5\x00 \x03\x00\x94\x16$\x07\x03\x07\x07\x00\xe0%\xe5a\x81\x9e\x82ApMk\xb8\x82\x0f\xa3A\xcc#\x84\xc4\x05\x03\x05\x00\xd81(\x04\x02\x07\x07\x00/\x17\xf8\xddJ\x85\x84Ah\xc1\xbd\xaa\xd6\x01\xa5A\xa0\xee\xb1\xc4\x05\x02\x05\x00\x80\x16)\x06\x02\x07\x07\x00\x96-\x88\x89[\xd6uA\xa5\xc1\xe1w\xb6\xb2\x96A\x11q\xcbD\x06\x05\x02\x08\xc4\x8b,\x05\x01\x06\x0f\x00\x88\x15\x15\x9f+\x95wAN\xfd\x03\xce\xbe\x89\x98A@\x9ca\xc2\x06\x11\x02\x0b\xbcM(\x05\x02\x07\x0f\x00\xdf\xac\xeb2\xd2ktA\xdd\xfd\xfa&lC\x95AO\xfe\xa3\xc4\x06\x04\x02\x0dpl.\x05\x01\x05\x0f\x00\x9b]\xb4O!}wA0\xbei\xc4_a\x98Ar\xd3\x81D\x06\x12\x02\x04\xd81+\x05\x01\x06\x0f\x00\xec\x9b\xec\x9a\xaa\x99wA\x85\x88\x13\xf7f\x83\x98A\xfa\xde\xb3\xc4\x06\x10\x02\x06\xec1*\x05\x02\x06\x07\x00\xe1\x82\xf0\xb2\x188vA\xf0\xe5\xb5O\xf3\xbe\x96A\xa3!\xa5D\x00\x08\x03\x00\xd81(\x04\x02\x07\x07\x00SI\xda\x00\x94\xc0xAf\xc7-x\xceV\x99A\x1cn0\xc5\x00\x1a\x03\x00\x94\x16%\x07\x03\x07\x07\x00\x82\x85\xba\xf7p\xa7yA?\xffx\x92$C\x9aA ]>\xc4\x00\x1c\x03\x00\x80\x16&\x07\x02\x07\x07\x00\Q\x92cwnxA\x87\xea\x90\x86\xbf\x02\x99A8\xfc\xf2D\x00\x04\x03\x00\x94\x16'\x07\x02\x07\x07\x00 j	\xeaVs\x82A\xf8\x89\xb2KR\xe3\xa2A\xb8\xd8*\xc4\x05\x07\x05\x00\x80\x16-\x05\x01\x06\x07\x00\x0eH\x99P\xcf\xa5xA\xdb\xb3\xafQg;\x99A\xf0\x8e(\xc4\x00\x1f\x03\x00\x94\x16&\x07\x02\x07\x07\x00\xb0\x8f\xae\xa8N\xccwAl\x0e\x99Z9\xba\x98AX@\x0f\xc5\x06\x0f\x02\x07\xa0\xe1*\x05\x01\x06\x07\x00H\x990>=\x0cwA\x98\x05\xe6Qk\xfd\x97AM\xb3f\xc5\x06\x03\x02\x0c\x84l+\x05\x01\x06\x0f\x00e\xf5I\x9bUPwAi\xc0\x9c>\xd5\xdd\x97A\x00\x86\x18\xc4\x00\x03\x03\x00\xd81)\x04\x02\x07\x07\x00\x05\xafm>^\xb6\x81A\xa8\x8d-\xa1\xde!\xa2A\xf1\xe9z\xc3\x05\x04\x05\x00\x94\x16+\x06\x01\x06\x07\x00)\x0f\xd7\x8b\x08\x8cuA\x1f\xb4d\x0e\xcf\x0e\x96A`\xa8\xae\xc2\x00\x1b\x03\x00\x94\x16+\x06\x01\x06\x07\x00t\xdb\xd3\x01\x0dCP\x000j\x88\x06\x00\x00\x18\x80\x849\x80\x00\x00\x00 \x00\x80\x00\x7f_\xfaJj2:zr\x1a\x92rh\x00\x00\x00\x00\x06\xe1\x89\x84\x15\xd4\xd7\xc8W\x01t5\xdd\x80"\x14\x00=\x1f\x1b\x02u\xef\xa8\x12\x1f\xf6\x80\x03\xf0\x19"\xb1\x9591\xda\x03 \xebnAzf\xe9\xfe\xc3\xd4\xe8\xf2\xb1\x00\x9f\x94T\x81-\x9c\x14\xed\xc8\xba\xdb\x90\x1a\xdf\x0bls\xc9\xae\x18\xd8f\x0e@W\xfc\xd8U$\xd8\x8a+\xf8\x82A\x8f\xa3\xffO\x99{\xe7\xbcj\x8f\xa5\xb4\x107_hOw\x08f\xab\xd0TH\x18\x13\x1b\xc0>\x05\xcf\xb9\x0d_\xcdV\x87gJ\xd7\x98P\xbc\x9c\x98\xc3\xa8l`\x98\xceQ\x1d\x08\x86\xcc\xc8m&\x86\xd1Hm\x1e\x86\x80\x00\x12\x85!\x18N\x15\x05\x01@B\x12\x04\xa1`V\x10\x84\xc1(L\x13\x04\x80\x12\x94"\x99\xe83\xd1'/\x8eHZ\xd7\x14\xeb\xc8\x9f\x91	\xf3\x93\xe4\xd7\x1e.?\x10\xcd"-q\xda\xe4x\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x13&\xd3\x00yC\xf0\x00I\xc9\xbc\xc6\x00\x00\x1c\x01\x00\x00\x00\x00\x00\x00 \x80\x00\x00\x7f\xa4\x1f\xa2%\xe6\xc3\xf7\x17\xc5\x91\x1b\xfaa\xfb`E\xbf?\xe5G\xf6\x8a\x01\x01!\xe0'\x1f\x08\xc5@\xb0\xf8o?\x1f1\xdb\xf8\x8a\xeaz\x1e\xc0\x81\xbfJ\x80\x97\xee\x82\x98\xd7\x82\xcah{8&|\x92\x82MJ\xb4\xba\xabA\x0b\x14\xd8\xbc\x00N\x15\x85apR\x16\x04\x81Pn=\xdc\xd7\x7fj\xff\x01Y\x12\xb3[\xbaw\x8d\x00p\xf8n\xd3\x00\xaaD\x90\x000j\x88\x06\x00\x00
      0\x00\x81\x00\x00\x00\x00 \x01\x00\x00\x7f\xfa\x8ar\xca\xc2\x8a\xb8\x00\x00\x02\x13\x87\xfe\xbc\x06{\xf6\xff\x02\x03(\x0b@#~9\xf2\x17\xaf\x88\xfd\xd3\x18\xbcJ\x8ec\xb0V\x10\x0b-X\xd6\x9a\x12\xc5\x89\x16\x9d\x13\xfc_\xe0\x95\x02O\x1f\xd9\xe7w\xf6K\x10H? 9X\x87\xf4 \xa8,\x810 \xde\x18KC\x80U]\xd0O\xa2\x87\xeb>\xd8	)\xcd2\xe3O\x0e\xa5\x10\x86\xcc\x88l\xde\xcbP
      \xb0\x00R\x16\x85ApD\x15\x03\xe1 P\x16\x04\x81X_\xd1\xbf\xd0q\xe8\xe3\xca*\xa4XA\xf5\x03\xb3\xdf6\xbeU\xd3\xf7\xaa@s]\x0d\xd3\x00\xdcFp\x000i\xadD\x00\x00\x03\xe4\x80\x02\x00\x00\x00\x00 \x02\x00\x00]\xff?\xbc@A<>\xc0&\x80\x00\x00\x00_\xc2\xf0\x99\x90w-\xc4P\xac\x81\x04\x00\x97\xdd`/\x80A\xf7\xd0\x14`L\xfe\x05gg\xf4\xf6xI(\x0f\x91\x16\x8118o\x91/	\xe0\x1b\xba\xd9\xf3\xe4\x89\xa0\xb8\xc2z\xff\xd4'\xe1\x15\xcf\xc9
      \xaf\xd8V\xd8$\x1b\x98,\xad\x00L\x1a\xd7\xa8MO\xc2\x9fxW\x18X|\xa1\x88\x0f\x99\x90/\xc8P\x02\xc5M\x81`&6\x05\x80\x98\xd8\x0e\x1d\x80\x98\xd8\x0b\xc4\xf6\x00	\x02\xa0\xb4$\x08\x82\x90\xa4,	\x82\x90\x94(
      \xc0\xe7\xf1\xf1\x83\xe9\xfc\xeb\x91\xda\xa3\xf8G\xde\x90Ot6\xec\x10\x85\xa1\x13\x03\xb5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|\x1f\x9a\xd3\x00\x04L\xe0\x00\x80\xed\xed\xd6\xb5b\x01\x07\\x00\x00\xa2\x1a\x0c\xe8\x07\x0b\x05\x08\x18\x0e7\x17\x00\x00\x00\xfb\xd0\x04\x00\x05\x01\xea \xc3\xbe\xe3=\xda\xe4\xc6\x00\xb0\xbb\x01\x00\xc6\xa3\x01\x00\x08\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
      \x00\x00\x00\x80\xa8\x12\x01\x0f'\x00\x00l\x18B>\x00\x00\x00\x00\x00\x00\x00\x00\x0eL$GNRMC,082414.00,A,0118.20829,N,10350.01410,E,0.000,,051124,,,A,V*16\x0d
      $GNVTG,,T,,M,0.000,N,0.000,K,A*3D\x0d
      $GNGGA,082414.00,0118.20829,N,10350.01410,E,1,12,99.99,107.5,M,6.1,M,,*44\x0d
      $GNGSA,A,3,26,16,28,08,04,32,21,31,27,03,,,99.99,99.99,99.99,1*32\x0d
      $GNGSA,A,3,79,68,67,69,,,,,,,,,99.99,99.99,99.99,2*3C\x0d
      $GNGSA,A,3,10,24,31,06,04,11,,,,,,,99.99,99.99,99.99,3*34\x0d
      $GNGSA,A,3,09,13,08,16,07,06,30,10,,,,,99.99,99.99,99.99,4*33\x0d
      $GPGSV,4,1,13,03,36,272,37,04,22,335,35,08,51,191,42$GPGSV,4,2,13,21,15,201,33,26,19,022,36,27,69,122,44,28,12,069,33,1*60\x0d
      $GPGSV,4,3,13,31,22,039,37,32,24,133,38,40,34,269,37,41,66,267,43,1*6B\x0d
      $GPGSV,4,4,13,50,63,093,40,1*58\x0d
      $GPGSV,2,1,08,03,36,272,41,04,22,335,39,08,51,191,40,26,19,022,37,6*6E\x0d
      $GPGSV,2,2,08,27,69,122,43,28,12,069,38,31,22,039,38,32,24,133,36,6*6A\x0d
      $GPGSV,1,1,01,02,08,215,,0*58\x0d
      $GLGSV,2,1,07,67,27,157,39,68,80,170,43,69,44,333,41,79,20,349,36,1*78\x0d
      $GLGSV,2,2,07,80,22,293,35,81,22,103,39,82,22,154,36,1*47\x0d
      $GLGSV,2,1,07,67,27,157,43,68,80,170,46,69,44,333,44,79,20,349,42,3*74\x0d
      $GLGSV,2,2,07,80,22,293,42,81,22,103,40,82,22,154,43,3*49\x0d
      $GLGSV,1,1,01,83,05,192,,0*4C\x0d
      $GAGSV,3,1,09,04,52,110,45,06,67,062,46,09,59,006,46,10,20,161,42,2*7C\x0d
      $GAGSV,3,2,09,11,19,190,36,12,16,137,22,18,39,064,42,24,54,317,44,2*7F\x0d
      $GAGSV,3,3,09,31,25,018,43,2*44\x0d
      $GAGSV,3,1,09,04,52,110,41,06,67,062,42,09,59,006,42,10,20,161,34,7*7C\x0d
      $GAGSV,3,2,09,11,19,190,31,18,39,064,39,24,54,317,40,25,30,250,36,7*72\x0d
      $GAGSV,3,3,09,31,25,018,36,7*43\x0d
      $GAGSV,1,1,03,05,13,331,,19,01,139,,36,02,234,,0*41\x0d
      $GBGSV,2,1,08,06,32,010,36,07,85,124,42,08,34,195,36,09,29,356,34,1*77\x0d
      $GBGSV,2,2,08,10,77,201,41,13,39,210,38,16,32,020,37,30,42,118,43,1*73\x0d
      $GBGSV,2,1,07,06,32,010,40,07,85,124,45,08,34,195,41,09,29,356,41,3*7E\x0d
      $GBGSV,2,2,07,10,77,201,44,13,39,210,41,16,32,020,40,3*4F\x0d
      $GBGSV,3,1,10,01,43,094,,02,67,267,,03,82,109,,04,26,093,,0*74\x0d
      $GBGSV,3,2,10,04,26,093,,05,38,270,,19,67,289,,20,53,166,,0*79\x0d
      $GNGLL,0118.20829,N,10350.01410,E,082414.00,A,A*76\x0d
      \xb5b\x015\xb4\x02\x00\xa2\x1a\x0c\x019\x00\x00\x00\x02\x00\x08\xd7\x00\x00\x00\x10\x1a\x00\x00\x00\x03%$\x10\x01\xfd\xff\x1f\x19\x00\x00\x00\x04#\x16O\x01\x1f\x00\x1f\x19\x00\x00\x00\x08*3\xbf\x00\xe6\xff\x1f\x19\x00\x00\x00\x10(+c\x01\x0f\x00\x1f\x19\x00\x00\x00\x15!\x0f\xc9\x00\xa0\xff\x1f\x19\x00\x00\x00\x1a$\x13\x16\x00,\x00\x1f\x19\x00\x00\x00\x1b,Ez\x00\x02\x00\x1f\x19\x00\x00\x00\x1c!\x0cE\x004\x00\x1f\x19\x00\x00\x00\x1f%\x16'\x00-\x00\x1f\x19\x00\x00\x00 &\x18\x85\x00\xdd\xff\x1f\x19\x00\x00\x01\x7f%"\x0d\x01\x00\x00\x07\x1a\x00\x00\x01\x80+B\x0b\x01\x00\x00\x07\x1a\x00\x00\x01\x89(?]\x00\x00\x00\x17\x1a\x00\x00\x02\x04)4n\x00\x08\x00\x1f\x19\x00\x00\x02\x05\x00\x0dK\x01\x00\x00\x10\x12\x00\x00\x02\x06*C>\x00\x07\x00\x1f\x19\x00\x00\x02	*;\x06\x00\x00\x00\x17\x1a\x00\x00\x02
      "\x14\xa1\x00\xc2\xff\x1f\x19\x00\x00\x02\x0b\x1f\x13\xbe\x00\xb3\xff\x1f\x19\x00\x00\x02\x0c\x00\x10\x89\x00\x00\x00\x10\x1a\x00\x00\x02\x12''@\x00\x00\x00'	\x00\x00\x02\x13\x00\x01\x8b\x00\x00\x00\x10\x1a\x00\x00\x02\x18(6=\x01\x04\x00\x1f\x19\x00\x00\x02\x19$\x1e\xfa\x00\x00\x00\x17\x1a\x00\x00\x02\x1f$\x19\x12\x00(\x00\x1f\x19\x00\x00\x02$\x00\x02\xea\x00\x00\x00\x10\x12\x00\x00\x03\x01\x00+^\x00\x00\x00\x10\x12\x00\x00\x03\x02\x00C\x0b\x01\x00\x00\x10\x12\x00\x00\x03\x03\x00Rm\x00\x00\x00\x10\x12\x00\x00\x03\x04\x00\x1a]\x00\x00\x00\x10\x12\x00\x00\x03\x05\x00&\x0e\x01\x00\x00\x10\x12\x00\x00\x03\x06$ 
      \x00\x15\x00\x1f\x19\x00\x00\x03\x07*U|\x00\x0c\x00\x1f\x19\x00\x00\x03\x08$"\xc3\x00\xc2\xff\x1f	\x00\x00\x03	"\x1dd\x01\x1a\x00\x1f\x19\x00\x00\x03
      )M\xc9\x00\x06\x00\x1f\x19\x00\x00\x03\x0d&'\xd2\x00\xe9\xff\x1f\x19\x00\x00\x03\x10% \x14\x00$\x00\x1f\x19\x00\x00\x03\x13\x00C!\x01\x00\x00\x10\x12\x00\x00\x03\x14\x005\xa6\x00\x00\x00\x10\x12\x00\x00\x03\x16\x00\x11?\x01\x00\x00\x10\x12\x00\x00\x03\x1b\x00\x0fF\x00\x00\x00\x10\x12\x00\x00\x03\x1d\x00\x1c\xba\x00\x00\x00\x10\x12\x00\x00\x03\x1e+*v\x00\x00\x00\x1f\x19\x00\x00\x05\x02&&&\x00\x14\x00\x1f\x19\x00\x00\x05\x03$\x1dv\x00\xfb\xff\x1f\x19\x00\x00\x05\x04):\x88\x00\xf8\xff\x1f\x19\x00\x00\x05\x07$?]\x00\x00\x00\x1f\x19\x00\x00\x06\x03'\x1b\x9d\x00\xd4\xff\x1f\x19\x00\x00\x06\x04+P\xaa\x00\xeb\xff\x1f\x19\x00\x00\x06\x05),M\x01\x1b\x00\x1f\x19\x00\x00\x06\x0f$\x14]\x01%\x00\x1f\x19\x00\x00\x06\x10#\x16%\x01\x00\x00\x17\x19\x00\x00\x06\x11'\x16g\x00\x00\x00\x17\x1a\x00\x00\x06\x12$\x16\x9a\x00\x00\x00\x17\x1a\x00\x00\x06\x13\x00\x05\xc0\x00\x00\x00\x10\x12\x00\x00m\x14\xb5b\x01C\xe8\x04\x00\xa2\x1a\x0c\x00N\x00\x00\x00\x03\x00\x00\xfd\xff%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x03\x03\x00\x00\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x04\x00\x00\x1f\x00#\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x04\x03\x009\x00'\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x08\x00\x00\xe6\xff*\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x08\x03\x00\xdd\xff(\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x10\x00\x00\x0f\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x10\x04\x00\x00\x00\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x15\x00\x00\xa0\xff!\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x15\x04\x00\x00\x00\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x1a\x00\x00,\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1a\x03\x00;\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x02\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1b\x03\x00\x06\x00+\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1c\x00\x004\x00!\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1c\x03\x005\x00&\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1f\x00\x00-\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x00\x1f\x03\x00?\x00&\x07\x00\x01)\x00\x00\x00\x00\x00\x00 \x00\x00\xdd\xff&\x07\x00\x01)\x00\x00\x00\x00\x00\x00 \x03\x00\xbe\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x01\x7f\x00\x00\x00\x00%\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x80\x00\x00\x00\x00+\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x89\x00\x00\x00\x00(\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02\x04\x00\x00\x08\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x04\x06\x00\x05\x00-\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x06\x00\x00\x07\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x06\x06\x00\x0f\x00.\x07\x00\x01)\x00\x00\x00\x00\x00\x02	\x00\x00\x00\x00*\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02	\x06\x00\x00\x00.\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02
      \x00\x00\xc2\xff"\x07\x00\x01)\x00\x00\x00\x00\x00\x02
      \x06\x00\x8e\xff*\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0b\x00\x00\xb3\xff\x1f\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0b\x06\x00y\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x0c\x06\x00\x00\x00\x16\x04\x00\x00\x01\x00\x00\x00\x00\x00\x02\x12\x00\x00\x00\x00'\x07\x00\x00\x02\x00\x00\x00\x00\x00\x02\x12\x06\x00\x00\x00*\x07\x00\x00\x02\x00\x00\x00\x00\x00\x02\x18\x00\x00\x04\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x18\x06\x00\x08\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x00$\x07\x00\x00\x01\x00\x00\x00\x00\x00\x02\x1f\x00\x00(\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x02\x1f\x06\x00<\x00+\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x06\x00\x00\x15\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x06\x02\x00G\x00(\x06\x00\x01)\x00\x00\x00\x00\x00\x03\x07\x00\x00\x0c\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x07\x02\x00\x16\x00-\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x08\x02\x00\xc2\xff)\x06\x00\x01)\x00\x00\x00\x00\x00\x03\x08\x00\x00\xc2\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x03	\x00\x00\x1a\x00"\x07\x00\x01)\x00\x00\x00\x00\x00\x03	\x02\x00\x1e\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x03
      \x00\x00\x06\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x03
      \x02\x00\x01\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x0d\x00\x00\xe9\xff&\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x0d\x02\x00\xcb\xff)\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x10\x00\x00$\x00%\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x10\x02\x00%\x00(\x07\x00\x01)\x00\x00\x00\x00\x00\x03\x1e\x00\x00\x00\x00+\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x02\x00\x00\x14\x00&\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x02\x05\x00\x19\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x03\x00\x00\xfb\xff$\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x03\x05\x00\xf1\xff(\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x04\x00\x00\xf8\xff)\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x04\x05\x00\xe9\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x07\x00\x00\x00\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x05\x07\x05\x00\xff\xff-\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x03\x00\x0c\xd4\xff'\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x03\x02\x0c\xd1\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x04\x00\x0d\xeb\xff+\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x04\x02\x0d\x03\x00.\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x05\x00\x08\x1b\x00)\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x05\x02\x08\x15\x00,\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x0f\x00\x07%\x00$\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x0f\x02\x07\x1c\x00*\x07\x00\x01)\x00\x00\x00\x00\x00\x06\x10\x00\x06\x00\x00#\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x10\x02\x06\x00\x00*\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x11\x00\x0b\x00\x00'\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x11\x02\x0b\x00\x00(\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x12\x00\x04\x00\x00$\x07\x00\x00\x01\x00\x00\x00\x00\x00\x06\x12\x02\x04\x00\x00+\x07\x00\x00\x01\x00\x00\x00\x00\x00I\xb6\xb5b\x01\x03\x10\x00\x00\xa2\x1a\x0c\x05\xdd\x02\x08\x1bs\x00\x00ig\x1f\xda\x1f\xf8\xd3\x00\x13>\xd0\x00\x03\xbcs:\xe6\xee\x8ej\x83W\xbe\x00U\xe7\x177\xde\x87!\xb5b\x02\x13(\x00\x02\x06\x05\x00\x08Q\x02\xcd\x02\xcd\x13\x01ev\x0c\x1bL/K\x00\x00\xc0\x04\xaa\x00\xc0\x17\x90*\x00\x00\x00S\xb3\xaa\xaa\x00@\xbf\xd9N\x01\xb5b\x02\x13\x18\x00\x06\x04\x00\x0d\x04\x0c\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xba\x04\xb5b\x02\x13\x18\x00\x06\x05\x00\x08\x04\x0e\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xb8\xd8\xb5b\x02\x13\x18\x00\x06\x03\x00\x0c\x04!\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xcdg\xb5b\x02\x13\x18\x00\x06\x10\x00\x06\x04\x0d\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xc0\x98\xb5b\x02\x13\x18\x00\x06\x11\x00\x0b\x04\x0f\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xc8>\xb5b\x02\x13\x18\x00\x06\x12\x00\x04\x04\x10\x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xc3\xd5\xb5b\x02\x13\x18\x00\x06\x0f\x00\x07\x04 \x02\x00eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05\xd3\xff\xb5b\x02\x13\x18\x00\x06\x04\x02\x0d\x04[\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05km\xb5b\x02\x13(\x00\x02\x04\x05\x00\x08I\x02`\xeeL\x13\x01\xfdH\xa8"\x02z\x04\x00\x00\xc0\x04\xaa\x00\xc0"\x8d*\x00\x00\x00\xf7\x98\xaa\xaa\x00@?\x95\xd6\x01\xb5b\x02\x13(\x00\x02\x12\x05\x00\x08L\x02`*\xcd\x14\x01\x1e\xa3\x1a\xa8\x96\xbb\xa2R\x00\x00K\xa5\x00\xc0 \x92*\x00\x00\x00\x11\x98\xaa\xaa\x00@\x7f\xc6\xee\xbc\xb5b\x02\x13\x18\x00\x06\x05\x02\x08\x04X\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05d\xe2\xb5b\x02\x13(\x00\x02\x1f\x05\x00\x08J\x02`*\xcd\x14\x01\x99b\xf2TyR\x1d\x00\x00\xc0\x04\xaa\x00\xc0B\xbc*\x00\x00\x00)\xbe\xaa\xaa\x00@\x7f\x9b7\xab\xb5b\x02\x13(\x00\x02	\x05\x00\x08N\x02`\xf8\x8c\x13\x01\xeeN\x965Bt#\x00\x00\xc0\x04\xaa\x00\xc0j\x9b*\x00\x00\x00\x9b\x88\xaa\xaa\x00@\xffz
      S\xb5b\x02\x13\x18\x00\x06\x03\x02\x0c\x04g\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05u%\xb5b\x02\x13(\x00\x02\x0b\x05\x00\x08P\x02`\x16M\x14\x01\xedO\xdd\x8e\xe5p\x0f\x00\x00\xc0\x04\xaa\x00\xc0j\x95\x15\x00\x00\x00\xdd~UU\x00@?\xcb\x1d\xe8\xb5b\x02\x13\x18\x00\x06\x11\x02\x0b\x04Z\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05u[\xb5b\x02\x13\x18\x00\x06\x12\x02\x04\x04\\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05q\x05\xb5b\x02\x13\x18\x00\x06\x10\x02\x06\x04]\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05r\x14\xb5b\x02\x13\x18\x00\x06\x0f\x02\x07\x04e\x02`eh\x86?\xe1\xbf\xb4\x04\x00\xd0\xf6\x19\x04\x00\x92\x05z\xaa\xb5b\x02\x13(\x00\x02\x18\x05\x00\x08C\x02`*\xcd\x14\x01\x1c\xfc\x0f\xf1O\xe6N\x00\x00\x00\x05\xaa\x00\xc02\x91*\x00\x00\x005\xa3\xaa\xaa\x00@\xff\xd1H\xac\xb5b\x02\x13(\x00\x02
      \x05\x00\x08O\x02`*\xcd\x14\x01\xb2BzB\xc2\xf8\x1e\x00\x00\xc0\x04\xaa\x00\xc0h\x95*\x00\x00\x00Z\x87\xaa\xaa\x00@\xbf!E\x8f\xb5b\x02\x13,\x00\x01\x89\x00\x00	1\x02\xff\xfd\xdf\x0e\x9a\xff\xfd\xff\xff\xdf
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-05T08:24:14.000Z",
         "app" : {
            "length" : 16384
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "\\x0d\nser2net port 3260 device /dev/F9PBASE [9600 N81] (Debian GNU/Linux)\\x0d\n\\x0d\n$GNTXT,01,01,01,USB: unkn CDC req*32\\x0d\n\\xb5b\\x02\\x15\\x90\t\\xd3Mb\\x10\\xf8\\xc9\\x08A#\t\\x12L\\x01\\x01\\x9fc\\xb4\\xed\\x02\\xfc[\\xb6\\x81A\\xc4\\xf76\\xeb\\x0dE\\xa7A\\x80\\xe3\\xa0\\xc3\\x05\\x04\\x00\\x00\\xf4\\xfb)\\x04\\x02\\x07\\x0f\\x00\\x13\\xed\\x9d\\x96?\\x85\\x84A\\x88\\xc0X\\x00\\x80\\xf5\\xaaA*K\\xe4\\xc4\\x05\\x02\\x00\\x00\\xf4\\xfb&\\x05\\x02\\x07\\x07\\x00\\x08\\xe5\\xd9R\\xc6Y{A\\x17\\xf3F\\xbcQ\\xf7\\xa1A\\x86\\x13I\\xc5\\x02\\x1f\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00AZ\\xf7\\xdb\\x1e\\x96yA\\xc3\\xb8\\x0dt\\xa4\\xce\\xa0A\\xfb\\xb0\\x01\\xc5\\x02\\x18\\x00\\x00\\xf4\\xfb(\\x04\\x02\\x06\\x07\\x000\\x8c\\xae\\xab\\xd0\\xf4xA\\xe9\\xb0G\\x88\\xaed\\xa0A\\xf7\\x99BD\\x00\\x15\\x00\\x00\\xf4\\xfb!\\x06\\x05\\x08\\x0f\\x00@\\x1cPW\\x87T\\x83A0-$8-e\\xa9A49X\\xc4\\x01\\x7f\\x00\\x00\\xf4\\xfb%\\x05\\x03\\x08\\x0f\\x00n\\xea>\\xea\nD\\x82A\\xb4\\x01\\x1a\\xeaW\\xc7\\xa7A\\xec\\xad?\\xc4\\x03\\x07\\x00\\x00\\xf4\\xfb*\\x03\\x02\\x06\\x0f\\x00!\\x8e\\.?\\\\x83A\\xcc$If\\x1d4\\xa9A\\xd0\\xcc7\\xc3\\x03\\x06\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x08\\x07\\x000\\xc5\\x95N\\xbdb\\x82A\\x0cz \\x05N\\xef\\xa7AL?-\\xc4\\x03\n\\x00\\x00\\xf4\\xfb)\\x04\\x02\\x07\\x0f\\x00\tM.lA\\xcb\\x83A\\xaa+H\\xa4\\xa0\\xc4\\xa9AH\\xcf\\xb6\\xc3\\x03\t\\x00\\x00\\xf4\\xfb\"\\x05\\x04\\x08\\x07\\x00h?v\\x8c_\\x07\\x83A\\xac\\xb2\\xbfG\\xa0\\xc5\\xa8A\\xbc{\\x0b\\xc5\\x03\\x0d\\x00\\x00\\xf4\\xfb&\\x04\\x03\\x07\\x0f\\x00\\xf1/\\xf2\\x17%h\\x83A\\xdc\\xdeg\\xac\\x9aC\\xa9A\\xdeL\\x10\\xc5\\x03\\x08\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x08\\x07\\x00\\xe2\\xc9\\x13$\\xbektA\\xcf\\xce\\x92\\x9f\\x97V\\x9bAB\\xbe\\xd2\\xc4\\x06\\x04\\x00\\x0d\\xf4\\xfb+\\x05\\x01\\x06\\x07\\x00?\\xcbr\\xd3\\x93\\x99wAe[v<A\\x84\\x9fA'A\\xe7\\xc4\\x06\\x10\\x00\\x06\\xf4\\xfb#\\x06\\x04\\x08\\x07\\x00]_}Zs\\xd6uAp2\\xa7\\xf9\\x0d/\\x9dAt\\xd0\\x02E\\x06\\x05\\x00\\x08\\xf4\\xfb)\\x05\\x02\\x06\\x07\\x00?\\xd6!\\xd6)\\x95wA\\x93\\xfb\\xae\\x04\\x87\\x8c\\x9fA@\\xbf\\x8f\\xc2\\x06\\x11\\x00\\x0b\\xf4\\xfb'\\x06\\x02\\x07\\x0f\\x00J\\xac\\x9b\\xab/}wA\\x10g\\xa2\\xd4\\xb3X\\x9fA\\xb9\\xf8\\xa6D\\x06\\x12\\x00\\x04\\xf4\\xfb$\\x06\\x03\\x07\\x0f\\x00~%\\x08\\xc7\\xcemyAb\\xaa\\xee\\xb4'\\xb4\\xa0A\\xfe\\x0c\\xc1\\xc4\\x02\\x04\\x00\\x00\\xf4\\xfb)\\x04\\x01\\x06\\x07\\x00\\xf8\\xdc\\xc7\\xcbx\\x9e\\x82A@\\x0b\\x801\\xfdu\\xa8A\\xb8\\x97\\xa9\\xc4\\x05\\x03\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x08\\x0f\\x00@\\x14\\x89&\\xc4\\xa5xA*\\x84O\\xfc\\xc00\\xa0A\\xd0SX\\xc4\\x00\\x1f\\x00\\x00\\xf4\\xfb%\\x05\\x04\\x08\\x0f\\x00\\x8eb\t\\x12d\\xa7yA\\xfa\\xf7/\\xb2\\xfa\\xd9\\xa0A\\x00Bt\\xc4\\x00\\x1c\\x00\\x00\\xf4\\xfb!\\x05\\x04\\x08\\x07\\x00&}LlKPwAnc\\xdd\\xd5\\xe7\\xa0\\x9eA\\x84\\xa6C\\xc4\\x00\\x03\\x00\\x00\\xf4\\xfb%\\x04\\x02\\x07\\x07\\x00k\\xba:hQs\\x82Ad\\x92\\xbb\\x9cL=\\xa8AWI[\\xc4\\x05\\x07\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x08\\x0f\\x00k\\x02\\xf7~4y\\x83A\\x80\\xc8j1\\xd0Y\\xa9A\\x00\\xb8t\\xc1\\x03\\x10\\x00\\x00\\xf4\\xfb%\\x04\\x03\\x07\\x07\\x00\\x8e\\xbe2q\\xd5NxA\\xf2{K\\x10\\xfb\\xa4\\x9fA\\xa0a\\x85\\xc2\\x03\\x1e\\x00\\x00\\xf4\\xfb+\\x03\\x01\\x06\\x0f\\x00\\x16$c\\x14+\\xccwA\\xae1\\xab]\\xac\\xca\\x9fA828\\xc5\\x06\\x0f\\x00\\x07\\xf4\\xfb$\\x06\\x03\\x08\\x0f\\x00\\x8e]\\xb8\\xe1\\x04\\x0cwA\\xb6\\xa2\\xa0\\xb4\\xd1\\xd7\\x9eA\\xdcJ\\x94\\xc5\\x06\\x03\\x00\\x0c\\xf4\\xfb'\\x06\\x02\\x07\\x0f\\x00\\xa6\\x18^\\xafg\\xc0xA\\x8a\\xf5_\\x98@B\\xa0Ayob\\xc5\\x00\\x1a\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00\\xda\\xb9!\\x9f\\x06\\x8cuA\\xf9,\\x83\\xe7\\xbcN\\x9cA\\x00\\xfb\\xde\\xc2\\x00\\x1b\\x00\\x00\\xf4\\xfb,\\x03\\x01\\x06\\x0f\\x00\\x9d6\\xdc$U\\xb7xA4Xf\\xa3L<\\xa0A\\xb8\\xfa\\xa8\\xc3\\x02\\x06\\x00\\x00\\xf4\\xfb*\\x04\\x01\\x06\\x07\\x00^G&\\xa9jc\\x82A@\\x06\\x8dQh(\\xa8Al\\x13Z\\xc4\\x01\\x80\\x00\\x00\\xf4\\xfb+\\x03\\x01\\x06\\x07\\x00kl\\xab\\xda\\x18\\xeczA@\\xc2/\\xc9E\\xaf\\xa1A\\xbc~\\x18D\\x02\\x12\\x00\\x00\\xf4\\xfb'\\x04\\x02\\x07\\x07\\x00\\x9e(\\x02\\x10,8vAf\\x99\\x9e\\x10\\xe60\\x9dA\\xca\\xf2\\xd3D\\x00\\x08\\x00\\x00\\xf4\\xfb*\\x04\\x02\\x07\\x07\\x00\\xd0g\\xda\\x98Q\\x9b{A\\x7f;\\x87\\xfe^\"\\xa2A(\\xd1\\xfb\\xc3\\x02\\x0b\\x00\\x00\\xf4\\xfb\\x1f\\x07\\x06\\x08\\x07\\x00&\\xb40HQs\\x82A\\xa8\\x15\\xa7@L=\\xa8A\\xdbL[\\xc4\\x01\\x89\\x00\\x00\\xf4\\xfb(\\x04\\x02\\x07\\x07\\x00Z\\xf6\\xf6\\x04\\xd6\\xe3zA\nF\\x13D\\xda\\xa9\\xa1A\\x00\\xc4\\xb8\\xc2\\x02\\x19\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00\\xf8\\x9a`\\xbc\\xb9:yA\\xdci\\xce#\\x9c\\x92\\xa0A\\x00\\xef:D\\x02\t\\x00\\x00\\xf4\\xfb*\\x04\\x02\\x06\\x07\\x00\\xb2 t \\x94nxA\\xd6B(k\\x82\\x0c\\xa0A\\x1a\\xeb\\x1bE\\x00\\x04\\x00\\x00\\xf4\\xfb#\\x05\\x03\\x08\\x07\\x00-Q\\xd6\\x04=zxAP~t\\x19(\\x14\\xa0A)\\x00^\\xc5\\x00 \\x00\\x00\\xf4\\xfb&\\x04\\x02\\x07\\x07\\x00 \\xb8=u\\xde\\xec{Av\\x98\\x83f\\xf0W\\xa2A\\x08\\x92\\xc5\\xc3\\x02\n\\x00\\x00\\xf4\\xfb\"\\x05\\x04\\x08\\x07\\x00{\\x1a\\x00\\x88\\xbe\\xb0vA\\x0b\\xf1\\x18\\x83K\\xcf\\x9dA\\xdeDM\\xc5\\x00\\x10\\x00\\x00\\xf4\\xfb(\\x04\\x02\\x07\\x0f\\x00\\x89\\xbc\\xdct\\xbdb\\x82A@%5\\xe2\\x05\\x82\\xa2A\\xbc\\xfe\\x05\\xc4\\x03\n\\x02\\x00\\xf4\\xfb,\\x03\\x01\\x06\\x07\\x00\\xe9p)\\xe8\nD\\x82A\\xf8\\x86 \\x0c\\x1fc\\xa2A\\x8cH\\x14\\xc4\\x03\\x07\\x02\\x00\\x04.-\\x03\\x01\\x06\\x0f\\x00\\x9a]+L?\\\\x83ANS\\x8d;0}\\xa3A\\xe0R\\x0e\\xc3\\x03\\x06\\x02\\x00\\x98\\x12(\\x06\\x02\\x07\\x03\\x00$0^\\x99\\x1f\\x96yA@\\xb3lz\\xa8\\xc1\\x99A\\xf2\\xbe\\xc6\\xc4\\x02\\x18\\x06\\x00\\xf4\\xfb,\\x03\\x01\\x05\\x07\\x00\\xb0F\\xea\\x0c`\\x07\\x83A\\x8a|\\\\x95\\xc0'\\xa3A\\x0e\\xa7\\xd7\\xc4\\x03\\x0d\\x02\\x00\\xf0-)\\x03\\x02\\x06\\x0f\\x00\\x06\\x06g\\xda4y\\x83AJe\\xe0\\x0cW\\x9a\\xa3A\\xff0:\\xc1\\x03\\x10\\x02\\x00\\xcc\\xdd(\\x04\\x02\\x07\\x07\\x00\\x87\\xfb\\Q%h\\x83A\\xa8G\\xf5\\x82*\\x89\\xa3AT%\\xdf\\xc4\\x03\\x08\\x02\\x00\\x98\\x12)\\x06\\x02\\x06\\x03\\x00\\x88o\\x87\\x94\\xcfmyA`\\xcb\\x9d\\xd0\\x13\\x99\\x99A\\x0c\\xe7\\x93\\xc4\\x02\\x04\\x06\\x00\\xf4\\xfb-\\x03\\x01\\x05\\x07\\x00\\xce\\xb1\\x96\\x8a\\xc7Y{A\\xdd\\xff\\xa3\\xecP\\x88\\x9bA\\x13\\x18\\x1a\\xc5\\x02\\x1f\\x06\\x00\\x9ch*\\x03\\x01\\x06\\x07\\x00\\xae\\x99O\\xb4A\\xcb\\x83Af[\\xa8\\x88\\xef\\xec\\xa3A\\x808\\x8d\\xc3\\x03\t\\x02\\x00\\xf0-)\\x03\\x02\\x06\\x07\\x00\\xea\\x8dA\\xc1\\x19\\xeczA\\xb6\\xa4\\x00\\x85\\xe8\\x19\\x9bAX\\xbe\\xe9C\\x02\\x12\\x06\\x00\\xb8\\xdd*\\x03\\x02\\x06\\x07\\x00\\x16B\\x9b1\\xc2w|A\\xdb\\xc5\\x14)2\\xa8\\x9cA(D\\x97\\xc3\\x02\\x0c\\x06\\x00\\x00\\x00\\x16\t\\x0f\\x0c\\x01\\x00\\x91a\\x1b{\\xba:yA\\x04\\xf5h\\xde\\xa7e\\x99A\\xbcA\\x0fD\\x02\t\\x06\\x00\\xb8\\xdd.\\x03\\x01\\x05\\x07\\x00\\xc9;\\x18\\x1a\\xe0\\xec{A\\xd0\\xb0b\\xc4c\\x1c\\x9cA\\xc0h\\x97\\xc3\\x02\n\\x06\\x00\\x98\\x12*\\x04\\x01\\x06\\x07\\x00\\x05:\\x9d\\x1fS\\x9b{A}\\xbd\\xab\\x08L\\xca\\x9bA'\\xe1\\xc0\\xc3\\x02\\x0b\\x06\\x00\\xac\\x12$\\x06\\x03\\x07\\x07\\x00\\x00r\\x97\\xe4U\\xb7xAD\\xbd\\xce\\xb3c\\xe1\\x98A\\xd8\\x81\\x81\\xc3\\x02\\x06\\x06\\x00\\xf4\\xfb.\\x03\\x01\\x05\\x07\\x00$$\\x1dT>zxA\\xa3\\x0dk\\x08\\xce\\x0e\\x99A\\xf6\\xf9,\\xc5\\x00 \\x03\\x00\\xac\\x12$\\x07\\x03\\x08\\x07\\x00\\xb3K Qy\\x9e\\x82A\\xd8\\x9bTvz\\x0f\\xa3A\\x94&\\x84\\xc4\\x05\\x03\\x05\\x00\\xf0-(\\x04\\x02\\x07\\x07\\x00\\x03\\xcf\\x1a\\x07@\\x85\\x84A\\xd0\\xc8o\\x8c\\xcb\\x01\\xa5A\\xf9\\xe6\\xb1\\xc4\\x05\\x02\\x05\\x00\\x98\\x12)\\x06\\x02\\x07\\x07\\x00bc\\xd3\\x02t\\xd6uA\\x17\\xf7\\xe3\\xe6\\xcf\\xb2\\x96A\\xe8~\\xcbD\\x06\\x05\\x02\\x08\\xdc\\x87,\\x05\\x01\\x06\\x0f\\x00_\\xf2f\\xc7*\\x95wA\\x88Oo\\xed\\xbd\\x89\\x98A@f`\\xc2\\x06\\x11\\x02\\x0b\\xd4I(\\x05\\x02\\x07\\x0f\\x00\\xa9\\xc8\\xf2\\x84\\xbektAq&C\\xa9WC\\x95A\\xe4\\xe1\\xa3\\xc4\\x06\\x04\\x02\\x0d\\x88h.\\x05\\x01\\x05\\x0f\\x00\\xbd\\xa1\\x9a\\xf10}wA\\x1c#>\\xffoa\\x98A@\\xd3\\x81D\\x06\\x12\\x02\\x04\\xf0-+\\x05\\x02\\x06\\x0f\\x00\\xc9kG\\xf5\\x94\\x99wAk ?|P\\x83\\x98A\\x0b\\xd3\\xb3\\xc4\\x06\\x10\\x02\\x06\\x04.*\\x05\\x02\\x06\\x07\\x00\\xc0\\xad\\x98\\xdf,8vA\\x00\\xff\\x15\\xf5\\x07\\xbf\\x96A\\x160\\xa5D\\x00\\x08\\x03\\x00\\xf0-(\\x04\\x02\\x07\\x07\\x00Bx\\xbe\\xd8h\\xc0xAH\\xa5<\\\\xa2V\\x99A\\xc2p0\\xc5\\x00\\x1a\\x03\\x00\\xac\\x12%\\x07\\x02\\x07\\x07\\x00@\\xa3\\x0f>e\\xa7yA\\xc3,\\x9c\\xac\\x18C\\x9aA\\xa1K>\\xc4\\x00\\x1c\\x03\\x00\\x98\\x12&\\x07\\x02\\x07\\x07\\x00R\\M\\xfe\\x94nxAo\\x11_\\xe6\\xdd\\x02\\x99A\\xdf\\x00\\xf3D\\x00\\x04\\x03\\x00\\xac\\x12'\\x07\\x02\\x07\\x07\\x00$\\xd6E\\xb4Qs\\x82A8{\\x0c\\xf5L\\xe3\\xa2A\\xe4\\xde*\\xc4\\x05\\x07\\x05\\x00\\x98\\x12-\\x06\\x01\\x06\\x07\\x00\\xdc3\\xd0\\x0d\\xc5\\xa5xAL\\xdfp\\xc9\\;\\x99A\\xe8\\x93(\\xc4\\x00\\x1f\\x03\\x00\\xac\\x12%\\x07\\x03\\x07\\x07\\x00\\xd0\\xeaW/,\\xccwAv\\xf7U\\x8a\\x15\\xba\\x98A\\x9bC\\x0f\\xc5\\x06\\x0f\\x02\\x07\\xb8\\xdd)\\x05\\x01\\x06\\x07\\x00\\xaf:b\\xd6\\x05\\x0cwAH>-\\xa61\\xfd\\x97A \\xaff\\xc5\\x06\\x03\\x02\\x0c\\x9ch+\\x05\\x01\\x06\\x0f\\x00\\xcc'\\xdbKLPwA4K-\\xb7\\xcb\\xdd\\x97A\\x11s\\x18\\xc4\\x00\\x03\\x03\\x00\\xf0-)\\x04\\x02\\x07\\x07\\x00\\x0d\\xbftU\\\\xb6\\x81A\\xa8a\\xc3\\xab\\xdc!\\xa2A \\x8fz\\xc3\\x05\\x04\\x05\\x00\\xac\\x12+\\x06\\x01\\x06\\x07\\x00\\x11\\xebN@\\x07\\x8cuA\\xbf\\x1aa\\xb2\\xcd\\x0e\\x96A\\xa0\\xbf\\xad\\xc2\\x00\\x1b\\x03\\x00\\xac\\x12+\\x06\\x01\\x06\\x07\\x00-0\\xd3\\x01\\x0dCP\\x000jxf\\x00\\x00\\x18\\x80\\x849\\x80\\x00\\x00\\x00 \\x00\\x80\\x00\\x7f_\\xfaJj2:zr\\x1a\\x92rh\\x00\\x00\\x00\\x00\\x06\\xe1\\x8b\\x045\\xc4\\xd9\\xc7W!t5\\xdc\\x80\"\\x14\\x00=\\x1f\\x1b\\x02u\\xef\\xa8\\x12\\x1f\\xf6\\x80\\x03\\xf0\\x19^d\\x18\\xf4.\\x9b\\xad\\xec\\xc2\\xc8\\xee\\xfa\\x11\\xc5\\xb8~K\\xed\\xb7\\xb1\\xd9\\xd2!\\xadG'\\xde\\xf4\\xb1\\xa0t\\xa0\\x8bcw\\x10\\x88\\xf41\\x7f!Bv\\xa8\\xd0f\\xef\\xe8d\\x17\\xa7\\xbax\\x87\\xb2\\x8c\\xd0OV\\xf8D\\xd3@+\\x15\\xa7\\xb8|Xm\\xb9\\x10\\x85\\xd1o\\xe5E_\\xd2\\xe1\\xb0\\x01\\xaf\\x80,\\x98\\xc7\\xbaI?\\xce\\x93\\x97\\xa9f\\xe7\\xdam\\xcc\\x9c\\x96\\xc3\\x88,`\\x96\\xceQ\\x1d\\x08\\x82\\xcc\\xc8-&\\x82\\xd1H-\\x1e\\x82\\x80\\x00\\x12\\x85!\\x18N\\x15\\x05\\x01@B\\x12\\x04\\xa1`V\\x10\\x84\\xc1(J\\x13\\x04\\x80#TIB\\x08\\xd4\\x0cH0PX^\\x0b\\x11\\xf7\\xc9\\xaf\\x96\\xeaRt\\xa37\\xa8/'\\x11 \"\\x13\\x83/\\x07@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc9\\x8c\\xfa\\xd3\\x00yC\\xf0\\x00I\\xc9\\xad&\\x00\\x00\\x1c\\x01\\x00\\x00\\x00\\x00\\x00\\x00 \\x80\\x00\\x00\\x7f\\xa4\\x1f\\xa2%\\xe6\\xc3\\xf6\\xb7\\xc5\\x95\\x1a\\xfaa\\xfb`E\\xbf?\\x87\\xc9h\\xb2\\x12\\xe0\\x95f\\x1e\\x83\\x82\\xa8 ON\\x9a\\xf7Q\\xedP\\x01+\\x01\\x82\\xbe\\xea\\xf9\\x9c\\xe7xu\\x84\\x81\\x11!\\x01B\\xb6\\x06'O\\x87\\x81\\xc8MJ\\xa4\\xba\\xaaA\\x0b\\x0c\\xd8\\xbb\\x80N\\x15\\x85apR\\x16\\x04\\x81Hrg\\xe4\\xeb\\x9ek=\\x81\\xb8\\x03m\\x1b\\xadwv\\x00>\\xafv\\xd3\\x00\\xaaD\\x90\\x000jxf\\x00\\x00\n0\\x00\\x81\\x00\\x00\\x00\\x00 \\x01\\x00\\x00\\x7f\\xfa\\x8ar\\xca\\xc2\\x8a\\xb8\\x00\\x00\\x02\\x11\\x88~\\xbc\\x06y\\xf5\\xff\\x02\\x03(\\x0b@#~9\\xf2\\x11\\xf1P\\xa1\\xe3\\xd6 \\x7f\\xe4\\xa6\\x91\\x93\\xe1\\x1e\\xfe\\x19\\xcc\\xfd\\xa2&\\x99\\xf5\\xe8!\\xf4\\xf9\\xc7\\xa0\\xa0\\xbc`j\\x1e \\x86\\x81\\xff\\xa1/7\\x92H\\xe8C\\x95\\xe8{\\xf6\\xa8^:\\xc8\\x88\\xa0\\x00\\x8d?\\x98\\x87\\x84\\x98d\\xfeH\\x82\\xea\\xbd2\\xe3O\\x0e\\xa5\\x10\\x82\\xcc\\x88,\\xde\\xca\\xd0\n\\xa0\\x00R\\x16\\x85ApD\\x15\\x03\\xe1 P\\x16\\x04\\x81Pd\\x08\\xc8\\x02\\x82\\x15\\x03\\xaa)\\xd4I\\xe1\\xa7\\x83~\\xe2\t\\xc4{\\xda'\\xb0\\xa8\\xc2r\\xc3\\xd3\\x00\\xdcFp\\x000i\\x9d\\xa4\\x00\\x00\\x03\\xe4\\x80\\x02\\x00\\x00\\x00\\x00 \\x02\\x00\\x00]\\xff?\\xbc@A<>\\xc0&\\x80\\x00\\x00\\x00_\\xc2\\xf0\\x97\\x90\\xf7-\\xc4R\\xad\\x01\\x04\\x00\\x97\\xdd`/\\x80A\\xf7\\xd0\\x14`L\\x9a\\x9c7\\xa9\\x97\\xfa\\x8a\\xe9^ f\\x0c\\xc6\\x80U\\xf6\\xc4\\xdf}\t\\xe2\\F]\\xedmN\\xf6\\xfc\\xe9\\xe1Q(Se\\x9f\\xd9v\\x87\\xe8\\xc3h1\\x9a\\xb7\\x80\\x88o\\x9f\\xf6_\\xc5\\x12\\x9f\\xdfegq\\x97\\xf7\\x97\"\\x0f\\x9e6\\x9f\\xbee_\\x88\\xb4\\xbd\\x81`%\\xd6\\x05\\x80\\x96\\xd8\\x0e\\x1d\\x80\\x96\\xd8\\x0b\\xbc\\xf6\\x00\t\\x02\\xa0\\xb4$\\x08\\x82\\x90\\xa4,\t\\x82\\x90\\x94(\n\\xc0\\xeez\\x1c\\x140}0\\x91\\xff#\\xefM0\\x99\\xdf\\x80^\\xfe\\xf0\\x9d\\xe1<\\x85d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xf3\\xa7?\\xd3\\x00\\x04L\\xe0\\x00\\x80\\xed\\xed\\xd6\\xb5b\\x01\\x07\\\\x00\\x18\\x9e\\x1a\\x0c\\xe8\\x07\\x0b\\x05\\x08\\x18\\x0d7\\x17\\x00\\x00\\x00%\\xd3\\x04\\x00\\x05\\x01\\xea \\xc3\\xbe\\xe3=\\xda\\xe4\\xc6\\x00\\xb0\\xbb\\x01\\x00\\xc6\\xa3\\x01\\x00\\x08\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\n\\x00\\x00\\x00\\x80\\xa8\\x12\\x01\\x0f'\\x00\\x00l\\x18B>\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00N\\x87$GNRMC,082413.00,A,0118.20829,N,10350.01410,E,0.000,,051124,,,A,V*11\\x0d\n$GNVTG,,T,,M,0.000,N,0.000,K,A*3D\\x0d\n$GNGGA,082413.00,0118.20829,N,10350.01410,E,1,12,99.99,107.5,M,6.1,M,,*43\\x0d\n$GNGSA,A,3,26,16,28,08,04,32,21,31,27,03,,,99.99,99.99,99.99,1*32\\x0d\n$GNGSA,A,3,79,68,67,69,,,,,,,,,99.99,99.99,99.99,2*3C\\x0d\n$GNGSA,A,3,10,24,31,06,04,11,,,,,,,99.99,99.99,99.99,3*34\\x0d\n$GNGSA,A,3,09,13,08,16,07,06,30,10,,,,,99.99,99.99,99.99,4*33\\x0d\n$GPGSV,4,1,13,03,36,272,37,04,22,335,35,08,51,191,42,16,43,355,40,1*65\\x0d\n$GPGSV,4,2,13,21,15,201,33,26,19,022,36,27,69,122,44,28,12,069,33,1*60\\x0d\n$GPGSV,4,3,13,31,22,039,37,32,24,133,38,40,34,269,37,41,66,267,43,1*6B\\x0d\n$GPGSV,4,4,13,50,63,093,40,1*58\\x0d\n$GPGSV,2,1,08,03,36,272,41,04,22,335,39,08,51,191,40,26,19,022,37,6*6E\\x0d\n$GPGSV,2,2,08,27,69,122,43,28,12,069,38,31,22,039,37,32,24,133,36,6*65\\x0d\n$GPGSV,1,1,01,02,08,215,,0*58\\x0d\n$GLGSV,2,1,07,67,27,157,39,68,80,170,43,69,44,333,41,79,20,349,36,1*78\\x0d\n$GLGSV,2,2,07,80,22,293,35,81,22,103,39,82,22,154,36,1*47\\x0d\n$GLGSV,2,1,07,67,27,157,43,68,80,170,46,69,44,333,44,79,20,349,41,3*77\\x0d\n$GLGSV,2,2,07,80,22,293,42,81,22,103,40,82,22,154,43,3*49\\x0d\n$GLGSV,1,1,01,83,05,192,,0*4C\\x0d\n$GAGSV,3,1,09,04,52,110,45,06,67,062,46,09,59,006,46,10,20,161,42,2*7C\\x0d\n$GAGSV,3,2,09,11,19,190,36,12,16,137,22,18,39,064,42,24,54,317,44,2*7F\\x0d\n$GAGSV,3,3,09,31,25,018,42,2*45\\x0d\n$GAGSV,3,1,09,04,52,110,41,06,67,062,42,09,59,006,42,10,20,161,34,7*7C\\x0d\n$GAGSV,3,2,09,11,19,190,31,18,39,064,39,24,54,317,40,25,30,250,36,7*72\\x0d\n$GAGSV,3,3,09,31,25,018,36,7*43\\x0d\n$GAGSV,1,1,03,05,13,331,,19,01,139,,36,02,234,,0*41\\x0d\n$GBGSV,2,1,08,06,32,010,36,07,85,124,42,08,34,195,36,09,29,356,34,1*77\\x0d\n$GBGSV,2,2,08,10,77,201,41,13,39,210,38,16,32,020,37,30,42,118,43,1*73\\x0d\n$GBGSV,2,1,07,06,32,010,40,07,85,124,45,08,34,195,41,09,29,356,41,3*7E\\x0d\n$GBGSV,2,2,07,10,77,201,44,13,39,210,41,16,32,020,40,3*4F\\x0d\n$GBGSV,3,1,10,01,43,094,,02,67,267,,03,82,109,,04,26,093,,0*74\\x0d\n$GBGSV,3,2,10,04,26,093,,05,38,270,,19,67,289,,20,53,166,,0*79\\x0d\n$GBGSV,3,3,10,20,53,166,,22,17,319,,0*7E\\x0d\n$GNGLL,0118.20829,N,10350.01410,E,082413.00,A,A*71\\x0d\n\\xb5b\\x015\\xb4\\x02\\x18\\x9e\\x1a\\x0c\\x019\\x00\\x00\\x00\\x02\\x00\\x08\\xd7\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x00\\x03%$\\x10\\x01\\xfe\\xff\\x1f\\x19\\x00\\x00\\x00\\x04#\\x16O\\x01\\x1e\\x00\\x1f\\x19\\x00\\x00\\x00\\x08*3\\xbf\\x00\\xe6\\xff\\x1f\\x19\\x00\\x00\\x00\\x10(+c\\x01\\x0f\\x00\\x1f\\x19\\x00\\x00\\x00\\x15!\\x0f\\xc9\\x00\\x9c\\xff\\x1f\\x19\\x00\\x00\\x00\\x1a$\\x13\\x16\\x00-\\x00\\x1f\\x19\\x00\\x00\\x00\\x1b,Ez\\x00\\x02\\x00\\x1f\\x19\\x00\\x00\\x00\\x1c!\\x0cE\\x006\\x00\\x1f\\x19\\x00\\x00\\x00\\x1f%\\x16'\\x00-\\x00\\x1f\\x19\\x00\\x00\\x00 &\\x18\\x85\\x00\\xdd\\xff\\x1f\\x19\\x00\\x00\\x01\\x7f%\"\\x0d\\x01\\x00\\x00\\x07\\x1a\\x00\\x00\\x01\\x80+B\\x0b\\x01\\x00\\x00\\x07\\x1a\\x00\\x00\\x01\\x89(?]\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\\x04)4n\\x00\\x05\\x00\\x1f\\x19\\x00\\x00\\x02\\x05\\x00\\x0dK\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x02\\x06*C>\\x00\\x05\\x00\\x1f\\x19\\x00\\x00\\x02\t*;\\x06\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\n\"\\x14\\xa1\\x00\\xc2\\xff\\x1f\\x19\\x00\\x00\\x02\\x0b\\x1f\\x13\\xbe\\x00\\xb0\\xff\\x1f\\x19\\x00\\x00\\x02\\x0c\\x00\\x10\\x89\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x02\\x12''@\\x00\\x00\\x00'\t\\x00\\x00\\x02\\x13\\x00\\x01\\x8b\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x02\\x18(6=\\x01\\x05\\x00\\x1f\\x19\\x00\\x00\\x02\\x19$\\x1e\\xfa\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\\x1f$\\x19\\x12\\x00(\\x00\\x1f\\x19\\x00\\x00\\x02$\\x00\\x02\\xea\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x01\\x00+^\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x02\\x00C\\x0b\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x03\\x00Rm\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x04\\x00\\x1a]\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x05\\x00&\\x0e\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x06$ \n\\x00\\x15\\x00\\x1f\\x19\\x00\\x00\\x03\\x07*U|\\x00\\x0c\\x00\\x1f\\x19\\x00\\x00\\x03\\x08$\"\\xc3\\x00\\xc2\\xff\\x1f\t\\x00\\x00\\x03\t\"\\x1dd\\x01\\x1b\\x00\\x1f\\x19\\x00\\x00\\x03\n)M\\xc9\\x00\\x06\\x00\\x1f\\x19\\x00\\x00\\x03\\x0d&'\\xd2\\x00\\xe9\\xff\\x1f\\x19\\x00\\x00\\x03\\x10% \\x14\\x00#\\x00\\x1f\\x19\\x00\\x00\\x03\\x13\\x00C!\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x14\\x005\\xa6\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x16\\x00\\x11?\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1b\\x00\\x0fF\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1d\\x00\\x1c\\xba\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1e+*v\\x00\\x00\\x00\\x1f\\x19\\x00\\x00\\x05\\x02&&&\\x00\\x14\\x00\\x1f\\x19\\x00\\x00\\x05\\x03$\\x1dv\\x00\\xfb\\xff\\x1f\\x19\\x00\\x00\\x05\\x04):\\x88\\x00\\xf7\\xff\\x1f\\x19\\x00\\x00\\x05\\x07$?]\\x00\\x00\\x00\\x1f\\x19\\x00\\x00\\x06\\x03'\\x1b\\x9d\\x00\\xd3\\xff\\x1f\\x19\\x00\\x00\\x06\\x04+P\\xaa\\x00\\xeb\\xff\\x1f\\x19\\x00\\x00\\x06\\x05),M\\x01\\x1b\\x00\\x1f\\x19\\x00\\x00\\x06\\x0f$\\x14]\\x01&\\x00\\x1f\\x19\\x00\\x00\\x06\\x10#\\x16%\\x01\\x00\\x00\\x17\\x19\\x00\\x00\\x06\\x11'\\x16g\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x06\\x12$\\x16\\x9a\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x06\\x13\\x00\\x05\\xc0\\x00\\x00\\x00\\x10\\x12\\x00\\x00x\\x8a\\xb5b\\x01C\\xe8\\x04\\x18\\x9e\\x1a\\x0c\\x00N\\x00\\x00\\x00\\x03\\x00\\x00\\xfe\\xff%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x03\\x00\\x00\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x1e\\x00#\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x03\\x00D\\x00'\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\xe6\\xff*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x03\\x00\\xdc\\xff(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x0f\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x9c\\xff!\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x04\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00-\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x03\\x00F\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x02\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x03\\x00\\x01\\x00+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x006\\x00!\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x03\\x00F\\x00&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00-\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x03\\x00;\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\xdd\\xff&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00 \\x03\\x00\\xbb\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x01\\x7f\\x00\\x00\\x00\\x00%\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x00\\x00+\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x89\\x00\\x00\\x00\\x00(\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x04\\x00\\x00\\x05\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x04\\x06\\x00\\x04\\x00-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x06\\x00\\x00\\x05\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x06\\x06\\x00\\x0e\\x00.\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\t\\x00\\x00\\x00\\x00*\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\t\\x06\\x00\\x00\\x00.\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\n\\x00\\x00\\xc2\\xff\"\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\n\\x06\\x00\\x90\\xff*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0b\\x00\\x00\\xb0\\xff\\x1f\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0b\\x06\\x00w\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0c\\x06\\x00\\x00\\x00\\x16\\x04\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x12\\x00\\x00\\x00\\x00'\\x07\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x12\\x06\\x00\\x00\\x00*\\x07\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x18\\x00\\x00\\x05\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x18\\x06\\x00\\x08\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x19\\x00\\x00\\x00\\x00$\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x1f\\x00\\x00(\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x1f\\x06\\x00=\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x06\\x00\\x00\\x15\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x06\\x02\\x00C\\x00(\\x06\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x07\\x00\\x00\\x0c\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x07\\x02\\x00\\x17\\x00-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x08\\x02\\x00\\xbf\\xff)\\x06\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x08\\x00\\x00\\xc2\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\t\\x00\\x00\\x1b\\x00\"\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\t\\x02\\x00\\x1f\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\n\\x00\\x00\\x06\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\n\\x02\\x00\\x01\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x0d\\x00\\x00\\xe9\\xff&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x0d\\x02\\x00\\xcb\\xff)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x10\\x00\\x00#\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x10\\x02\\x00&\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x1e\\x00\\x00\\x00\\x00+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x1e\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x02\\x00\\x00\\x14\\x00&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x02\\x05\\x00\\x12\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x03\\x00\\x00\\xfb\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x03\\x05\\x00\\xf0\\xff(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x04\\x00\\x00\\xf7\\xff)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x04\\x05\\x00\\xe8\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x07\\x00\\x00\\x00\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x07\\x05\\x00\\xfe\\xff-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x03\\x00\\x0c\\xd3\\xff'\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x03\\x02\\x0c\\xd1\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x04\\x00\\x0d\\xeb\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x04\\x02\\x0d\\x03\\x00.\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x05\\x00\\x08\\x1b\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x05\\x02\\x08\\x14\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x0f\\x00\\x07&\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x0f\\x02\\x07\\x1d\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x10\\x00\\x06\\x00\\x00#\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x10\\x02\\x06\\x00\\x00*\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x11\\x00\\x0b\\x00\\x00'\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x11\\x02\\x0b\\x00\\x00(\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x12\\x00\\x04\\x00\\x00$\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x12\\x02\\x04\\x00\\x00+\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00k\\x1a\\xb5b\\x01\\x03\\x10\\x00\\x18\\x9e\\x1a\\x0c\\x05\\xdd\\x02\\x08\\x1bs\\x00\\x00\\x81c\\x1f\\xdaG\\x90\\xd3\\x00\\x13>\\xd0\\x00\\x03\\xbcs:\\xe6\\xee\\x8ej\\x83W\\xbe\\x00U\\xe7\\x177\\xde\\x87!\\xb5b\\x02\\x13,\\x00\\x02\\x04\\x01\\x00\t\\x12\\x02\\x00@\\xc4?\\x105\\xdd\\xb0{\\xd7\\x0f\\xbd!\\x00\\xc0\\xfe\\x1b\\x00\\x00p\\x88*\\x00\\x00\\x00.R\\xaa\\xaa\\x00\\xc0K \\xe7^w\\xb5$/\\xb5b\\x02\\x13,\\x00\\x02\\x06\\x01\\x00\t&\\x02\\x00R\\x19?\\x105\\x80\\x8d=\\xab\\xefj=\\x00@\\xff\\xbf\\x00\\x00\\x00\\x88*\\x00\\x00\\x00(z\\xaa\\xaa\\x00\\xc0K\\x8c\\x08%J\\xbfh\\xb2\\xb5b\\x02\\x13,\\x00\\x02\\x12\\x01\\x00\t(\\x02\\xa4\\xb0\\xffS\\x05\\xff} \\x15cF\\x8az\\x00\\x80\\xaa'I\\x93\\xaa\\xaa*\\x00\\x00\\xca\\x89a\\xaa\\xaa\\x00\\xc0\\x0b\\x10\\x0f\n\\x00\\x009\\xca\\xb5b\\x02\\x13,\\x00\\x02\\x19\\x01\\x00\t2\\x02\\x0f\\xbb\\xd18\\x10\\x8a\\x88\\xc1\\x17\\x07\\xe7_\\xaf\\x00\\x00\\x00 I<\\xb0\\xad*\\x00\\x00\\xca\\x0dI\\xaa\\xaa\\x00\\xc0Kv\\x89\\xdcE\\x83\\xb1\\x1e\\xb5b\\x02\\x13,\\x00\\x02\t\\x01\\x00\t3\\x02\\xf0\\x06\\xb7 \\x105<\\xcf\\xedB\\xd2\\xe8&\\x00@\\xf5K\\x00\\xc0_\\x91*\\x00\\x00\\x00\\xf1K\\xaa\\xaa\\x00\\xc0\\xcbb\\x12k\\xe9?3\\x90\\xb5b\\x02\\x13,\\x00\\x02\n\\x01\\x00\t8\\x02\\xf4\\xff\\xe9\\xe6\\x10\\xdf/uZr\\x9c\\xe5\\xef\\x00\\x00\\xf5;I\\xd3?\\x8f*\\x00\\x00\\xcaNX\\xaa\\xaa\\x00\\xc0\\xcb\\x11\\x89x}\\x83\\xc7E\\xb5b\\x02\\x13,\\x00\\x02\\x1f\\x01\\x00\t\\x02\\x02\\x02\\xf8r\\xd8\\x10\\x8a6\\xc1\\x85vf\\xda\\xae\\x00@\\xff?\t\t@\\x90*\\x00\\x00\\xca\\x8fc\\xaa\\xaa\\x00\\xc0\\x0b\\xf9\\xae\\x9a\\xe8\\xbf{p\\xb5b\\x02\\x13,\\x00\\x02\\x18\\x01\\x00\t\\x03\\x02\\xf0\\x8d\\xdf!\\x10\\x8a\\x16\\xb6\\x9f\\xcf&~\\xcc\\x00@\\xee\\x87\\x89\\xc0\\x8f\\x83*\\x00\\x00\\xca^@\\xaa\\xaa\\x00\\xc0\\xcb;\\x8a\\xfb?\\x00\\xab\\xee\\xb5b\\x02\\x13,\\x00\\x02\\x0b\\x01\\x00\t0\\x02\\xd0UU\\x95\\x00UUUUUUUU\\x00\\xc0\\x8cT\\x00@O\\x86*\\x00\\x00\\x00\\x1eV\\xaa\\xaa\\x00@\\xffDB\\xd5\\x81\\x83\\x86\\x17\\xb5b\\x02\\x13,\\x00\\x01\\x89\\x00\\x00\t1\\x02\\xff\\x00\\xc0\\x11S\\xff\\x01@\\x00\\xdf\\xff\\x01\\xc0\\xfd\\xdf\\xff\\xfd\\xff\\xfd\\xdf\\xff:\\xa6\\xfe\\xdf\\xbb\\xbb\\xbb;\\xa6U\\xf4\\x8e\\x7f\\xff\\xb7\\x83\\x197\\xb5b\\x02\\x13,\\x00\\x01\\x7f\\x00\\x00\t\\x05\\x02\\xff\\xfd\\xdf\\x0cS\\xff\t\\xc0\\xff\\xdf\\xff\\xfd\\xdf\\xfd\\xdf\\xff\\xff\\xff\\xfd\\xdf\\xff{\\xb9\\xff\\xff\\xb9\\xbb\\xab\\xbb\\xa61\\xb6@\\x842\\xc2\\x9c-)\\xb5b\\x02\\x13,\\x00\\x01\\x80\\x00\\x00\t'\\x02\\xff\\xfd\\xdf\\x0cS\\xff\t\\xc0\\xff\\xdf\\xff\\xfd\\xdf\\xfd\\xdf\\xff\\xff\\xff\\xfd\\xdf\\xff{\\xb9\\xff\\xff\\xb9\\xbb\\xab\\xbb\\xa61\\xb6@\\x842\\xc2\\x9cP\\x82\\xb5b\\x02\\x15\\x90\t\\xd3Mb\\x10\\x00\\xca\\x08A#\t\\x12L\\x01\\x01\\x87g\\xc9r\\x0c\\xe5]\\xb6\\x81A\\xda\\xb7\\xb2n\\x10E\\xa7A\\x00\\x08\\xa1\\xc3\\x05\\x04\\x00\\x00\\xf4\\xfb)\\x04\\x02\\x07\\x0f\\x00/\\x13jsJ\\x85\\x84A\\x84{'E\\x8e\\xf5\\xaaA}V\\xe4\\xc4\\x05\\x02\\x00\\x00\\xf4\\xfb&\\x04\\x03\\x07\\x07\\x00\\x84\\xa1\\xdb\\x97\\xecY{AW#\\xe3\\xdfj\\xf7\\xa1A\\xc0!I\\xc5\\x02\\x1f\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00\\xee\\x08<\\x8b7\\x96yAk\\xe9X\\xaa\\xb4\\xce\\xa0Ah\\xb8\\x01\\xc5\\x02\\x18\\x00\\x00\\xf4\\xfb(\\x04\\x02\\x06\\x07\\x00\\xcc\\x00\\xceb\\xc7\\xf4xA%=\\x83r\\xa8d\\xa0A\\xe8\\xbdBD\\x00\\x15\\x00\\x00\\xf4\\xfb!\\x06\\x05\\x08\\x0f\\x00L(\\xb0{\\x8cT\\x83A@K\\x04\\xf93e\\xa9AO\\x0eX\\xc4\\x01\\x7f\\x00\\x00\\xf4\\xfb%\\x05\\x03\\x07\\x0f\\x003\\x00Z\\x84\\x0fD\\x82Alm\\xa2\\xe7]\\xc7\\xa7A\\x1c\\xbf?\\xc4\\x03\\x07\\x00\\x00\\xf4\\xfb*\\x03\\x01\\x06\\x0f\\x00@\\x1f[H@\\\\x83AT\\xaf\\xeb\\xd5\\x1e4\\xa9A\\x81\\xda7\\xc3\\x03\\x06\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00m\\xfaBw\\xc1b\\x82A\\xdc4\\x93oS\\xef\\xa7Alk-\\xc4\\x03\n\\x00\\x00\\xf4\\xfb)\\x03\\x02\\x06\\x0f\\x00O\\x84K\\x9dC\\xcb\\x83A\\xae\\xc1\\xa3~\\xa3\\xc4\\xa9A\\x08\\xd0\\xb6\\xc3\\x03\t\\x00\\x00\\xf4\\xfb\"\\x05\\x04\\x08\\x07\\x00\\xef[-\\xf0l\\x07\\x83A$\\x1bG\\xb6\\xb1\\xc5\\xa8AJx\\x0b\\xc5\\x03\\x0d\\x00\\x00\\xf4\\xfb&\\x04\\x03\\x07\\x0f\\x000\\x1f\\xa6\\xf22h\\x83AN{\\xca\\xb5\\xacC\\xa9A\nK\\x10\\xc5\\x03\\x08\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x08\\x07\\x00\\xec\\xf4\\xd5\\xd2\\xd1ktAWN\\x07\\xf8\\xb1V\\x9bAx\\xd3\\xd2\\xc4\\x06\\x04\\x00\\x0d\\xf4\\xfb+\\x05\\x01\\x06\\x07\\x00\\xa7;_v\\xa9\\x99wA\\x8b?\\x82#^\\x84\\x9fA\\xcbD\\xe7\\xc4\\x06\\x10\\x00\\x06\\xf4\\xfb#\\x06\\x04\\x08\\x07\\x00\\x18\\x92\\xea\\xe1Z\\xd6uAF\\x00bF\\xed.\\x9dAn\\xc4\\x02E\\x06\\x05\\x00\\x08\\xf4\\xfb)\\x05\\x02\\x06\\x07\\x00\\xf1!\\xbe\\xae*\\x95wA\\x04&p%\\x88\\x8c\\x9fA\\x00\\x17\\x91\\xc2\\x06\\x11\\x00\\x0b\\xf4\\xfb'\\x06\\x02\\x07\\x0f\\x00\\x87\\xeaW\t }wA\\xbf{\\xbe\\xf6\\x9eX\\x9fA\\xd3\\xe5\\xa6D\\x06\\x12\\x00\\x04\\xf4\\xfb$\\x06\\x03\\x07\\x0f\\x00a\\xd5\\xb4 \\xe1myA\\x1b\t\\x86\\xc53\\xb4\\xa0A\\x91\\x11\\xc1\\xc4\\x02\\x04\\x00\\x00\\xf4\\xfb)\\x04\\x02\\x06\\x07\\x00\\x93S\\xc8\\xdc\\x80\\x9e\\x82A\\xc8\\xcf\\x9a\\xca\\x07v\\xa8A\\xf5\\xa5\\xa9\\xc4\\x05\\x03\\x00\\x00\\xf4\\xfb$\\x05\\x04\\x08\\x0f\\x00\\xcc\\xf1\\x9eo\\xce\\xa5xA\\xb5!u\\xbe\\xc70\\xa0A\\xf0^X\\xc4\\x00\\x1f\\x00\\x00\\xf4\\xfb%\\x05\\x03\\x08\\x0f\\x002\\xc4\\xc4\\xb3o\\xa7yAuK\\x94T\\x02\\xda\\xa0A<3t\\xc4\\x00\\x1c\\x00\\x00\\xf4\\xfb!\\x05\\x04\\x08\\x07\\x00\\xf0#\\xae\\xbbTPwA\\xf9\\xc5r\\x10\\xf4\\xa0\\x9eA\\xaf\\xceC\\xc4\\x00\\x03\\x00\\x00\\xf4\\xfb%\\x05\\x03\\x07\\x07\\x00\\x17~\\x16\\x9fVs\\x82A0\\x9c\\x99vS=\\xa8A3E[\\xc4\\x05\\x07\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x0f\\x00\\x87\\x8cp\\x954y\\x83Ad\\x18\\xf9O\\xd0Y\\xa9A\\x00Fw\\xc1\\x03\\x10\\x00\\x00\\xf4\\xfb%\\x04\\x03\\x07\\x07\\x00\\x06\\xfd\\x97>\\xd6NxAH4\\x1f\\x1c\\xfc\\xa4\\x9fA (\\x86\\xc2\\x03\\x1e\\x00\\x00\\xf4\\xfb+\\x03\\x01\\x06\\x0f\\x00;\\x06t\\x8dM\\xccwAi\\xd3\\x9ai\\xda\\xca\\x9fA|78\\xc5\\x06\\x0f\\x00\\x07\\xf4\\xfb$\\x06\\x03\\x08\\x0f\\x00&\\xdckI<\\x0cwA\\x01\\x9a\\xaa\\xda\\x1b\\xd8\\x9eA<O\\x94\\xc5\\x06\\x03\\x00\\x0c\\xf4\\xfb'\\x06\\x02\\x07\\x0f\\x00\\xc2\\x7f\\xc6\\xc6\\x92\\xc0xAw \\x12\\xe6\\B\\xa0A\\xb3pb\\xc5\\x00\\x1a\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00\\xe2\\x1f\\xbb\\xf3\\x07\\x8cuAF\\x0b#\\xa6\\xbeN\\x9cA\\xa0\\x82\\xe0\\xc2\\x00\\x1b\\x00\\x00\\xf4\\xfb,\\x03\\x01\\x06\\x0f\\x00\\x85\\xb9\\xde'Y\\xb7xA\\xd5\\xfacGO<\\xa0Ah.\\xa9\\xc3\\x02\\x06\\x00\\x00\\xf4\\xfb*\\x04\\x02\\x06\\x07\\x00/\\x0c\\xa4\\xd7oc\\x82A\\xc0{1!o(\\xa8A|\\xf4Y\\xc4\\x01\\x80\\x00\\x00\\xf4\\xfb+\\x03\\x01\\x06\\x07\\x00\\xba\\xbf\\x95\\x98\\x11\\xeczA\\xa4iJ\\x05A\\xaf\\xa1A\\x04f\\x18D\\x02\\x12\\x00\\x00\\xf4\\xfb'\\x04\\x02\\x06\\x07\\x00\\x13,j\\xe4\\x178vA~\\xf3\\xb0\\x91\\xcb0\\x9dA\\x9c\\xe9\\xd3D\\x00\\x08\\x00\\x00\\xf4\\xfb*\\x04\\x02\\x07\\x07\\x00EF7\\x92W\\x9b{A?\\xd0\\xf6\\xedb\"\\xa2A\\x17\\xf6\\xfb\\xc3\\x02\\x0b\\x00\\x00\\xf4\\xfb\\x1f\\x07\\x06\\x08\\x07\\x00\\xad`[\\x7fVs\\x82A\\xc8_v\\x1aS=\\xa8A\\xd7([\\xc4\\x01\\x89\\x00\\x00\\xf4\\xfb(\\x05\\x02\\x07\\x07\\x00\\x14v\\xb8\\x1d\\xd7\\xe3zA$\\xa9\t\\xfd\\xda\\xa9\\xa1A\\x80\\xe1\\xb9\\xc2\\x02\\x19\\x00\\x00\\xf4\\xfb$\\x05\\x03\\x07\\x07\\x00\\xca\\xf1\\xb2\\xd6\\xb0:yA\\xba\\x83;L\\x96\\x92\\xa0A\\x00\\xde:D\\x02\t\\x00\\x00\\xf4\\xfb*\\x04\\x01\\x06\\x07\\x00i=}rvnxA\\x99\\xb3\\x9f\\xedn\\x0c\\xa0A\\xed\\xec\\x1bE\\x00\\x04\\x00\\x00\\xf4\\xfb#\\x05\\x03\\x08\\x07\\x00u\\xf5ADgzxA%\\xef\\xce\\xd9C\\x14\\xa0A\\xfd\\x07^\\xc5\\x00 \\x00\\x00\\xf4\\xfb&\\x04\\x02\\x07\\x07\\x00\\xe8\\xb0\\xdc'\\xe3\\xec{Ak_r|\\xf3W\\xa2A\\xc7\\x95\\xc5\\xc3\\x02\n\\x00\\x00\\xf4\\xfb\"\\x05\\x04\\x08\\x07\\x00\\xc8g\\xef\\x98\\xe5\\xb0vA+\\xe3\\xa8\\xd4~\\xcf\\x9dA\\x05KM\\xc5\\x00\\x10\\x00\\x00\\xf4\\xfb(\\x04\\x02\\x07\\x0f\\x00e\\xaf\\xb1\\x9d\\xc1b\\x82A(`F\\x12\n\\x82\\xa2Al\\x07\\x06\\xc4\\x03\n\\x02\\x00\\xf4\\xfb,\\x03\\x01\\x06\\x07\\x00\\xe0\\xfeX\\x83\\x0fD\\x82A\\xf0\\xee\\xec\\xad#c\\xa2A\\xacK\\x14\\xc4\\x03\\x07\\x02\\x00\\xec1-\\x03\\x01\\x06\\x0f\\x00\\xd6\\x8f%c@\\\\x83A\\xb2\\xd5\\xc8W1}\\xa3AP\n\\x0e\\xc3\\x03\\x06\\x02\\x00\\x80\\x16(\\x05\\x02\\x06\\x03\\x00&@\\x83G8\\x96yA\\xadQ\\x98R\\xc1\\xc1\\x99A\\x8e\\xc8\\xc6\\xc4\\x02\\x18\\x06\\x00\\xf4\\xfb,\\x03\\x01\\x05\\x07\\x00\\x17\\x8d\\xc0pm\\x07\\x83A\\x10\\xfb\t\\x10\\xce'\\xa3A\\x86\\xab\\xd7\\xc4\\x03\\x0d\\x02\\x00\\xd81)\\x03\\x02\\x06\\x0f\\x00e+\\xec\\xf14y\\x83A\\xae6\\x81$W\\x9a\\xa3A\\xff+<\\xc1\\x03\\x10\\x02\\x00\\xb4\\xe1(\\x04\\x02\\x07\\x07\\x00*\\xd9$)3h\\x83A~\\xb4eu8\\x89\\xa3A\\xbc-\\xdf\\xc4\\x03\\x08\\x02\\x00\\x80\\x16)\\x05\\x01\\x06\\x03\\x00\\xc4\\xfb\\x94\\xf1\\xe1myA\\x81\\xce\\xc4M&\\x99\\x99A\\xb7\\xef\\x93\\xc4\\x02\\x04\\x06\\x00\\xf4\\xfb-\\x03\\x01\\x06\\x07\\x00qt\\x93\\xd0\\xedY{A\\x15\\x94\\xe5rw\\x88\\x9bAQ\\x1b\\x1a\\xc5\\x02\\x1f\\x06\\x00\\x84l+\\x03\\x01\\x06\\x07\\x00\\xf2\\xc7\\x0e\\xe6C\\xcb\\x83A\\xb6ki\\xbd\\xf1\\xec\\xa3A\\xd8N\\x8d\\xc3\\x03\t\\x02\\x00\\xd81)\\x03\\x01\\x06\\x07\\x00^%\\x93\\x81\\x12\\xeczA,\\x07\\x887\\xe1\\x19\\x9bA\\xb0\\xa2\\xe9C\\x02\\x12\\x06\\x00\\xa0\\xe1*\\x03\\x01\\x06\\x07\\x00P\\xfa\\x99\\xce\\xc6w|A\\xe5\\xafF\\xcf6\\xa8\\x9cAXe\\x94\\xc3\\x02\\x0c\\x06\\x00\\x00\\x00\\x16\t\\x0f\\x0c\\x01\\x002\\xfe0\\x96\\xb1:yA\\x1d\\x13{\\xea\\x9ee\\x99A\\xfc3\\x0fD\\x02\t\\x06\\x00\\xa0\\xe1.\\x03\\x01\\x04\\x07\\x00\\xcf;=\\xd0\\xe4\\xec{A\\xab.\\xea~h\\x1c\\x9cAp\\\\x97\\xc3\\x02\n\\x06\\x00\\x80\\x16*\\x04\\x01\\x06\\x07\\x00\\xaa\\x0ft\\x1aY\\x9b{A\\xaf\\xd4\\x8c\\x10R\\xca\\x9bA8\\xf3\\xc0\\xc3\\x02\\x0b\\x06\\x00\\x94\\x16$\\x05\\x03\\x07\\x07\\x00\\xd4\\xb0\\xb7\\xe7Y\\xb7xA\\xac5\\xb7\\xbfg\\xe1\\x98A\\xf0\\x98\\x81\\xc3\\x02\\x06\\x06\\x00\\xf4\\xfb.\\x03\\x01\\x05\\x07\\x00}b\\xd6\\x8dhzxA\\xde\\xbe\\x10H\\xf9\\x0e\\x99A)\\x00-\\xc5\\x00 \\x03\\x00\\x94\\x16$\\x07\\x03\\x07\\x07\\x00\\xe0%\\xe5a\\x81\\x9e\\x82ApMk\\xb8\\x82\\x0f\\xa3A\\xcc#\\x84\\xc4\\x05\\x03\\x05\\x00\\xd81(\\x04\\x02\\x07\\x07\\x00/\\x17\\xf8\\xddJ\\x85\\x84Ah\\xc1\\xbd\\xaa\\xd6\\x01\\xa5A\\xa0\\xee\\xb1\\xc4\\x05\\x02\\x05\\x00\\x80\\x16)\\x06\\x02\\x07\\x07\\x00\\x96-\\x88\\x89[\\xd6uA\\xa5\\xc1\\xe1w\\xb6\\xb2\\x96A\\x11q\\xcbD\\x06\\x05\\x02\\x08\\xc4\\x8b,\\x05\\x01\\x06\\x0f\\x00\\x88\\x15\\x15\\x9f+\\x95wAN\\xfd\\x03\\xce\\xbe\\x89\\x98A@\\x9ca\\xc2\\x06\\x11\\x02\\x0b\\xbcM(\\x05\\x02\\x07\\x0f\\x00\\xdf\\xac\\xeb2\\xd2ktA\\xdd\\xfd\\xfa&lC\\x95AO\\xfe\\xa3\\xc4\\x06\\x04\\x02\\x0dpl.\\x05\\x01\\x05\\x0f\\x00\\x9b]\\xb4O!}wA0\\xbei\\xc4_a\\x98Ar\\xd3\\x81D\\x06\\x12\\x02\\x04\\xd81+\\x05\\x01\\x06\\x0f\\x00\\xec\\x9b\\xec\\x9a\\xaa\\x99wA\\x85\\x88\\x13\\xf7f\\x83\\x98A\\xfa\\xde\\xb3\\xc4\\x06\\x10\\x02\\x06\\xec1*\\x05\\x02\\x06\\x07\\x00\\xe1\\x82\\xf0\\xb2\\x188vA\\xf0\\xe5\\xb5O\\xf3\\xbe\\x96A\\xa3!\\xa5D\\x00\\x08\\x03\\x00\\xd81(\\x04\\x02\\x07\\x07\\x00SI\\xda\\x00\\x94\\xc0xAf\\xc7-x\\xceV\\x99A\\x1cn0\\xc5\\x00\\x1a\\x03\\x00\\x94\\x16%\\x07\\x03\\x07\\x07\\x00\\x82\\x85\\xba\\xf7p\\xa7yA?\\xffx\\x92$C\\x9aA ]>\\xc4\\x00\\x1c\\x03\\x00\\x80\\x16&\\x07\\x02\\x07\\x07\\x00\\Q\\x92cwnxA\\x87\\xea\\x90\\x86\\xbf\\x02\\x99A8\\xfc\\xf2D\\x00\\x04\\x03\\x00\\x94\\x16'\\x07\\x02\\x07\\x07\\x00 j\t\\xeaVs\\x82A\\xf8\\x89\\xb2KR\\xe3\\xa2A\\xb8\\xd8*\\xc4\\x05\\x07\\x05\\x00\\x80\\x16-\\x05\\x01\\x06\\x07\\x00\\x0eH\\x99P\\xcf\\xa5xA\\xdb\\xb3\\xafQg;\\x99A\\xf0\\x8e(\\xc4\\x00\\x1f\\x03\\x00\\x94\\x16&\\x07\\x02\\x07\\x07\\x00\\xb0\\x8f\\xae\\xa8N\\xccwAl\\x0e\\x99Z9\\xba\\x98AX@\\x0f\\xc5\\x06\\x0f\\x02\\x07\\xa0\\xe1*\\x05\\x01\\x06\\x07\\x00H\\x990>=\\x0cwA\\x98\\x05\\xe6Qk\\xfd\\x97AM\\xb3f\\xc5\\x06\\x03\\x02\\x0c\\x84l+\\x05\\x01\\x06\\x0f\\x00e\\xf5I\\x9bUPwAi\\xc0\\x9c>\\xd5\\xdd\\x97A\\x00\\x86\\x18\\xc4\\x00\\x03\\x03\\x00\\xd81)\\x04\\x02\\x07\\x07\\x00\\x05\\xafm>^\\xb6\\x81A\\xa8\\x8d-\\xa1\\xde!\\xa2A\\xf1\\xe9z\\xc3\\x05\\x04\\x05\\x00\\x94\\x16+\\x06\\x01\\x06\\x07\\x00)\\x0f\\xd7\\x8b\\x08\\x8cuA\\x1f\\xb4d\\x0e\\xcf\\x0e\\x96A`\\xa8\\xae\\xc2\\x00\\x1b\\x03\\x00\\x94\\x16+\\x06\\x01\\x06\\x07\\x00t\\xdb\\xd3\\x01\\x0dCP\\x000j\\x88\\x06\\x00\\x00\\x18\\x80\\x849\\x80\\x00\\x00\\x00 \\x00\\x80\\x00\\x7f_\\xfaJj2:zr\\x1a\\x92rh\\x00\\x00\\x00\\x00\\x06\\xe1\\x89\\x84\\x15\\xd4\\xd7\\xc8W\\x01t5\\xdd\\x80\"\\x14\\x00=\\x1f\\x1b\\x02u\\xef\\xa8\\x12\\x1f\\xf6\\x80\\x03\\xf0\\x19\"\\xb1\\x9591\\xda\\x03 \\xebnAzf\\xe9\\xfe\\xc3\\xd4\\xe8\\xf2\\xb1\\x00\\x9f\\x94T\\x81-\\x9c\\x14\\xed\\xc8\\xba\\xdb\\x90\\x1a\\xdf\\x0bls\\xc9\\xae\\x18\\xd8f\\x0e@W\\xfc\\xd8U$\\xd8\\x8a+\\xf8\\x82A\\x8f\\xa3\\xffO\\x99{\\xe7\\xbcj\\x8f\\xa5\\xb4\\x107_hOw\\x08f\\xab\\xd0TH\\x18\\x13\\x1b\\xc0>\\x05\\xcf\\xb9\\x0d_\\xcdV\\x87gJ\\xd7\\x98P\\xbc\\x9c\\x98\\xc3\\xa8l`\\x98\\xceQ\\x1d\\x08\\x86\\xcc\\xc8m&\\x86\\xd1Hm\\x1e\\x86\\x80\\x00\\x12\\x85!\\x18N\\x15\\x05\\x01@B\\x12\\x04\\xa1`V\\x10\\x84\\xc1(L\\x13\\x04\\x80\\x12\\x94\"\\x99\\xe83\\xd1'/\\x8eHZ\\xd7\\x14\\xeb\\xc8\\x9f\\x91\t\\xf3\\x93\\xe4\\xd7\\x1e.?\\x10\\xcd\"-q\\xda\\xe4x\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xf9\\x13&\\xd3\\x00yC\\xf0\\x00I\\xc9\\xbc\\xc6\\x00\\x00\\x1c\\x01\\x00\\x00\\x00\\x00\\x00\\x00 \\x80\\x00\\x00\\x7f\\xa4\\x1f\\xa2%\\xe6\\xc3\\xf7\\x17\\xc5\\x91\\x1b\\xfaa\\xfb`E\\xbf?\\xe5G\\xf6\\x8a\\x01\\x01!\\xe0'\\x1f\\x08\\xc5@\\xb0\\xf8o?\\x1f1\\xdb\\xf8\\x8a\\xeaz\\x1e\\xc0\\x81\\xbfJ\\x80\\x97\\xee\\x82\\x98\\xd7\\x82\\xcah{8&|\\x92\\x82MJ\\xb4\\xba\\xabA\\x0b\\x14\\xd8\\xbc\\x00N\\x15\\x85apR\\x16\\x04\\x81Pn=\\xdc\\xd7\\x7fj\\xff\\x01Y\\x12\\xb3[\\xbaw\\x8d\\x00p\\xf8n\\xd3\\x00\\xaaD\\x90\\x000j\\x88\\x06\\x00\\x00\n0\\x00\\x81\\x00\\x00\\x00\\x00 \\x01\\x00\\x00\\x7f\\xfa\\x8ar\\xca\\xc2\\x8a\\xb8\\x00\\x00\\x02\\x13\\x87\\xfe\\xbc\\x06{\\xf6\\xff\\x02\\x03(\\x0b@#~9\\xf2\\x17\\xaf\\x88\\xfd\\xd3\\x18\\xbcJ\\x8ec\\xb0V\\x10\\x0b-X\\xd6\\x9a\\x12\\xc5\\x89\\x16\\x9d\\x13\\xfc_\\xe0\\x95\\x02O\\x1f\\xd9\\xe7w\\xf6K\\x10H? 9X\\x87\\xf4 \\xa8,\\x810 \\xde\\x18KC\\x80U]\\xd0O\\xa2\\x87\\xeb>\\xd8\t)\\xcd2\\xe3O\\x0e\\xa5\\x10\\x86\\xcc\\x88l\\xde\\xcbP\n\\xb0\\x00R\\x16\\x85ApD\\x15\\x03\\xe1 P\\x16\\x04\\x81X_\\xd1\\xbf\\xd0q\\xe8\\xe3\\xca*\\xa4XA\\xf5\\x03\\xb3\\xdf6\\xbeU\\xd3\\xf7\\xaa@s]\\x0d\\xd3\\x00\\xdcFp\\x000i\\xadD\\x00\\x00\\x03\\xe4\\x80\\x02\\x00\\x00\\x00\\x00 \\x02\\x00\\x00]\\xff?\\xbc@A<>\\xc0&\\x80\\x00\\x00\\x00_\\xc2\\xf0\\x99\\x90w-\\xc4P\\xac\\x81\\x04\\x00\\x97\\xdd`/\\x80A\\xf7\\xd0\\x14`L\\xfe\\x05gg\\xf4\\xf6xI(\\x0f\\x91\\x16\\x8118o\\x91/\t\\xe0\\x1b\\xba\\xd9\\xf3\\xe4\\x89\\xa0\\xb8\\xc2z\\xff\\xd4'\\xe1\\x15\\xcf\\xc9\n\\xaf\\xd8V\\xd8$\\x1b\\x98,\\xad\\x00L\\x1a\\xd7\\xa8MO\\xc2\\x9fxW\\x18X|\\xa1\\x88\\x0f\\x99\\x90/\\xc8P\\x02\\xc5M\\x81`&6\\x05\\x80\\x98\\xd8\\x0e\\x1d\\x80\\x98\\xd8\\x0b\\xc4\\xf6\\x00\t\\x02\\xa0\\xb4$\\x08\\x82\\x90\\xa4,\t\\x82\\x90\\x94(\n\\xc0\\xe7\\xf1\\xf1\\x83\\xe9\\xfc\\xeb\\x91\\xda\\xa3\\xf8G\\xde\\x90Ot6\\xec\\x10\\x85\\xa1\\x13\\x03\\xb5\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00|\\x1f\\x9a\\xd3\\x00\\x04L\\xe0\\x00\\x80\\xed\\xed\\xd6\\xb5b\\x01\\x07\\\\x00\\x00\\xa2\\x1a\\x0c\\xe8\\x07\\x0b\\x05\\x08\\x18\\x0e7\\x17\\x00\\x00\\x00\\xfb\\xd0\\x04\\x00\\x05\\x01\\xea \\xc3\\xbe\\xe3=\\xda\\xe4\\xc6\\x00\\xb0\\xbb\\x01\\x00\\xc6\\xa3\\x01\\x00\\x08\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\n\\x00\\x00\\x00\\x80\\xa8\\x12\\x01\\x0f'\\x00\\x00l\\x18B>\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0eL$GNRMC,082414.00,A,0118.20829,N,10350.01410,E,0.000,,051124,,,A,V*16\\x0d\n$GNVTG,,T,,M,0.000,N,0.000,K,A*3D\\x0d\n$GNGGA,082414.00,0118.20829,N,10350.01410,E,1,12,99.99,107.5,M,6.1,M,,*44\\x0d\n$GNGSA,A,3,26,16,28,08,04,32,21,31,27,03,,,99.99,99.99,99.99,1*32\\x0d\n$GNGSA,A,3,79,68,67,69,,,,,,,,,99.99,99.99,99.99,2*3C\\x0d\n$GNGSA,A,3,10,24,31,06,04,11,,,,,,,99.99,99.99,99.99,3*34\\x0d\n$GNGSA,A,3,09,13,08,16,07,06,30,10,,,,,99.99,99.99,99.99,4*33\\x0d\n$GPGSV,4,1,13,03,36,272,37,04,22,335,35,08,51,191,42$GPGSV,4,2,13,21,15,201,33,26,19,022,36,27,69,122,44,28,12,069,33,1*60\\x0d\n$GPGSV,4,3,13,31,22,039,37,32,24,133,38,40,34,269,37,41,66,267,43,1*6B\\x0d\n$GPGSV,4,4,13,50,63,093,40,1*58\\x0d\n$GPGSV,2,1,08,03,36,272,41,04,22,335,39,08,51,191,40,26,19,022,37,6*6E\\x0d\n$GPGSV,2,2,08,27,69,122,43,28,12,069,38,31,22,039,38,32,24,133,36,6*6A\\x0d\n$GPGSV,1,1,01,02,08,215,,0*58\\x0d\n$GLGSV,2,1,07,67,27,157,39,68,80,170,43,69,44,333,41,79,20,349,36,1*78\\x0d\n$GLGSV,2,2,07,80,22,293,35,81,22,103,39,82,22,154,36,1*47\\x0d\n$GLGSV,2,1,07,67,27,157,43,68,80,170,46,69,44,333,44,79,20,349,42,3*74\\x0d\n$GLGSV,2,2,07,80,22,293,42,81,22,103,40,82,22,154,43,3*49\\x0d\n$GLGSV,1,1,01,83,05,192,,0*4C\\x0d\n$GAGSV,3,1,09,04,52,110,45,06,67,062,46,09,59,006,46,10,20,161,42,2*7C\\x0d\n$GAGSV,3,2,09,11,19,190,36,12,16,137,22,18,39,064,42,24,54,317,44,2*7F\\x0d\n$GAGSV,3,3,09,31,25,018,43,2*44\\x0d\n$GAGSV,3,1,09,04,52,110,41,06,67,062,42,09,59,006,42,10,20,161,34,7*7C\\x0d\n$GAGSV,3,2,09,11,19,190,31,18,39,064,39,24,54,317,40,25,30,250,36,7*72\\x0d\n$GAGSV,3,3,09,31,25,018,36,7*43\\x0d\n$GAGSV,1,1,03,05,13,331,,19,01,139,,36,02,234,,0*41\\x0d\n$GBGSV,2,1,08,06,32,010,36,07,85,124,42,08,34,195,36,09,29,356,34,1*77\\x0d\n$GBGSV,2,2,08,10,77,201,41,13,39,210,38,16,32,020,37,30,42,118,43,1*73\\x0d\n$GBGSV,2,1,07,06,32,010,40,07,85,124,45,08,34,195,41,09,29,356,41,3*7E\\x0d\n$GBGSV,2,2,07,10,77,201,44,13,39,210,41,16,32,020,40,3*4F\\x0d\n$GBGSV,3,1,10,01,43,094,,02,67,267,,03,82,109,,04,26,093,,0*74\\x0d\n$GBGSV,3,2,10,04,26,093,,05,38,270,,19,67,289,,20,53,166,,0*79\\x0d\n$GNGLL,0118.20829,N,10350.01410,E,082414.00,A,A*76\\x0d\n\\xb5b\\x015\\xb4\\x02\\x00\\xa2\\x1a\\x0c\\x019\\x00\\x00\\x00\\x02\\x00\\x08\\xd7\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x00\\x03%$\\x10\\x01\\xfd\\xff\\x1f\\x19\\x00\\x00\\x00\\x04#\\x16O\\x01\\x1f\\x00\\x1f\\x19\\x00\\x00\\x00\\x08*3\\xbf\\x00\\xe6\\xff\\x1f\\x19\\x00\\x00\\x00\\x10(+c\\x01\\x0f\\x00\\x1f\\x19\\x00\\x00\\x00\\x15!\\x0f\\xc9\\x00\\xa0\\xff\\x1f\\x19\\x00\\x00\\x00\\x1a$\\x13\\x16\\x00,\\x00\\x1f\\x19\\x00\\x00\\x00\\x1b,Ez\\x00\\x02\\x00\\x1f\\x19\\x00\\x00\\x00\\x1c!\\x0cE\\x004\\x00\\x1f\\x19\\x00\\x00\\x00\\x1f%\\x16'\\x00-\\x00\\x1f\\x19\\x00\\x00\\x00 &\\x18\\x85\\x00\\xdd\\xff\\x1f\\x19\\x00\\x00\\x01\\x7f%\"\\x0d\\x01\\x00\\x00\\x07\\x1a\\x00\\x00\\x01\\x80+B\\x0b\\x01\\x00\\x00\\x07\\x1a\\x00\\x00\\x01\\x89(?]\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\\x04)4n\\x00\\x08\\x00\\x1f\\x19\\x00\\x00\\x02\\x05\\x00\\x0dK\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x02\\x06*C>\\x00\\x07\\x00\\x1f\\x19\\x00\\x00\\x02\t*;\\x06\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\n\"\\x14\\xa1\\x00\\xc2\\xff\\x1f\\x19\\x00\\x00\\x02\\x0b\\x1f\\x13\\xbe\\x00\\xb3\\xff\\x1f\\x19\\x00\\x00\\x02\\x0c\\x00\\x10\\x89\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x02\\x12''@\\x00\\x00\\x00'\t\\x00\\x00\\x02\\x13\\x00\\x01\\x8b\\x00\\x00\\x00\\x10\\x1a\\x00\\x00\\x02\\x18(6=\\x01\\x04\\x00\\x1f\\x19\\x00\\x00\\x02\\x19$\\x1e\\xfa\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x02\\x1f$\\x19\\x12\\x00(\\x00\\x1f\\x19\\x00\\x00\\x02$\\x00\\x02\\xea\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x01\\x00+^\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x02\\x00C\\x0b\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x03\\x00Rm\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x04\\x00\\x1a]\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x05\\x00&\\x0e\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x06$ \n\\x00\\x15\\x00\\x1f\\x19\\x00\\x00\\x03\\x07*U|\\x00\\x0c\\x00\\x1f\\x19\\x00\\x00\\x03\\x08$\"\\xc3\\x00\\xc2\\xff\\x1f\t\\x00\\x00\\x03\t\"\\x1dd\\x01\\x1a\\x00\\x1f\\x19\\x00\\x00\\x03\n)M\\xc9\\x00\\x06\\x00\\x1f\\x19\\x00\\x00\\x03\\x0d&'\\xd2\\x00\\xe9\\xff\\x1f\\x19\\x00\\x00\\x03\\x10% \\x14\\x00$\\x00\\x1f\\x19\\x00\\x00\\x03\\x13\\x00C!\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x14\\x005\\xa6\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x16\\x00\\x11?\\x01\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1b\\x00\\x0fF\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1d\\x00\\x1c\\xba\\x00\\x00\\x00\\x10\\x12\\x00\\x00\\x03\\x1e+*v\\x00\\x00\\x00\\x1f\\x19\\x00\\x00\\x05\\x02&&&\\x00\\x14\\x00\\x1f\\x19\\x00\\x00\\x05\\x03$\\x1dv\\x00\\xfb\\xff\\x1f\\x19\\x00\\x00\\x05\\x04):\\x88\\x00\\xf8\\xff\\x1f\\x19\\x00\\x00\\x05\\x07$?]\\x00\\x00\\x00\\x1f\\x19\\x00\\x00\\x06\\x03'\\x1b\\x9d\\x00\\xd4\\xff\\x1f\\x19\\x00\\x00\\x06\\x04+P\\xaa\\x00\\xeb\\xff\\x1f\\x19\\x00\\x00\\x06\\x05),M\\x01\\x1b\\x00\\x1f\\x19\\x00\\x00\\x06\\x0f$\\x14]\\x01%\\x00\\x1f\\x19\\x00\\x00\\x06\\x10#\\x16%\\x01\\x00\\x00\\x17\\x19\\x00\\x00\\x06\\x11'\\x16g\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x06\\x12$\\x16\\x9a\\x00\\x00\\x00\\x17\\x1a\\x00\\x00\\x06\\x13\\x00\\x05\\xc0\\x00\\x00\\x00\\x10\\x12\\x00\\x00m\\x14\\xb5b\\x01C\\xe8\\x04\\x00\\xa2\\x1a\\x0c\\x00N\\x00\\x00\\x00\\x03\\x00\\x00\\xfd\\xff%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x03\\x00\\x00\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x1f\\x00#\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x03\\x009\\x00'\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\xe6\\xff*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x03\\x00\\xdd\\xff(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x0f\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x04\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\xa0\\xff!\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x04\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00,\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x03\\x00;\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x02\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x03\\x00\\x06\\x00+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x004\\x00!\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x03\\x005\\x00&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00-\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x03\\x00?\\x00&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\xdd\\xff&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x00 \\x03\\x00\\xbe\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x01\\x7f\\x00\\x00\\x00\\x00%\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x00\\x00+\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x89\\x00\\x00\\x00\\x00(\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x04\\x00\\x00\\x08\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x04\\x06\\x00\\x05\\x00-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x06\\x00\\x00\\x07\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x06\\x06\\x00\\x0f\\x00.\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\t\\x00\\x00\\x00\\x00*\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\t\\x06\\x00\\x00\\x00.\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\n\\x00\\x00\\xc2\\xff\"\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\n\\x06\\x00\\x8e\\xff*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0b\\x00\\x00\\xb3\\xff\\x1f\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0b\\x06\\x00y\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x0c\\x06\\x00\\x00\\x00\\x16\\x04\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x12\\x00\\x00\\x00\\x00'\\x07\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x12\\x06\\x00\\x00\\x00*\\x07\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x18\\x00\\x00\\x04\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x18\\x06\\x00\\x08\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x19\\x00\\x00\\x00\\x00$\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x1f\\x00\\x00(\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x02\\x1f\\x06\\x00<\\x00+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x06\\x00\\x00\\x15\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x06\\x02\\x00G\\x00(\\x06\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x07\\x00\\x00\\x0c\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x07\\x02\\x00\\x16\\x00-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x08\\x02\\x00\\xc2\\xff)\\x06\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x08\\x00\\x00\\xc2\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\t\\x00\\x00\\x1a\\x00\"\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\t\\x02\\x00\\x1e\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\n\\x00\\x00\\x06\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\n\\x02\\x00\\x01\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x0d\\x00\\x00\\xe9\\xff&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x0d\\x02\\x00\\xcb\\xff)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x10\\x00\\x00$\\x00%\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x10\\x02\\x00%\\x00(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x03\\x1e\\x00\\x00\\x00\\x00+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x02\\x00\\x00\\x14\\x00&\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x02\\x05\\x00\\x19\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x03\\x00\\x00\\xfb\\xff$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x03\\x05\\x00\\xf1\\xff(\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x04\\x00\\x00\\xf8\\xff)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x04\\x05\\x00\\xe9\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x07\\x00\\x00\\x00\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x05\\x07\\x05\\x00\\xff\\xff-\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x03\\x00\\x0c\\xd4\\xff'\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x03\\x02\\x0c\\xd1\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x04\\x00\\x0d\\xeb\\xff+\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x04\\x02\\x0d\\x03\\x00.\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x05\\x00\\x08\\x1b\\x00)\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x05\\x02\\x08\\x15\\x00,\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x0f\\x00\\x07%\\x00$\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x0f\\x02\\x07\\x1c\\x00*\\x07\\x00\\x01)\\x00\\x00\\x00\\x00\\x00\\x06\\x10\\x00\\x06\\x00\\x00#\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x10\\x02\\x06\\x00\\x00*\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x11\\x00\\x0b\\x00\\x00'\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x11\\x02\\x0b\\x00\\x00(\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x12\\x00\\x04\\x00\\x00$\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x12\\x02\\x04\\x00\\x00+\\x07\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00I\\xb6\\xb5b\\x01\\x03\\x10\\x00\\x00\\xa2\\x1a\\x0c\\x05\\xdd\\x02\\x08\\x1bs\\x00\\x00ig\\x1f\\xda\\x1f\\xf8\\xd3\\x00\\x13>\\xd0\\x00\\x03\\xbcs:\\xe6\\xee\\x8ej\\x83W\\xbe\\x00U\\xe7\\x177\\xde\\x87!\\xb5b\\x02\\x13(\\x00\\x02\\x06\\x05\\x00\\x08Q\\x02\\xcd\\x02\\xcd\\x13\\x01ev\\x0c\\x1bL/K\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0\\x17\\x90*\\x00\\x00\\x00S\\xb3\\xaa\\xaa\\x00@\\xbf\\xd9N\\x01\\xb5b\\x02\\x13\\x18\\x00\\x06\\x04\\x00\\x0d\\x04\\x0c\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xba\\x04\\xb5b\\x02\\x13\\x18\\x00\\x06\\x05\\x00\\x08\\x04\\x0e\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xb8\\xd8\\xb5b\\x02\\x13\\x18\\x00\\x06\\x03\\x00\\x0c\\x04!\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xcdg\\xb5b\\x02\\x13\\x18\\x00\\x06\\x10\\x00\\x06\\x04\\x0d\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xc0\\x98\\xb5b\\x02\\x13\\x18\\x00\\x06\\x11\\x00\\x0b\\x04\\x0f\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xc8>\\xb5b\\x02\\x13\\x18\\x00\\x06\\x12\\x00\\x04\\x04\\x10\\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xc3\\xd5\\xb5b\\x02\\x13\\x18\\x00\\x06\\x0f\\x00\\x07\\x04 \\x02\\x00eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05\\xd3\\xff\\xb5b\\x02\\x13\\x18\\x00\\x06\\x04\\x02\\x0d\\x04[\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05km\\xb5b\\x02\\x13(\\x00\\x02\\x04\\x05\\x00\\x08I\\x02`\\xeeL\\x13\\x01\\xfdH\\xa8\"\\x02z\\x04\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0\"\\x8d*\\x00\\x00\\x00\\xf7\\x98\\xaa\\xaa\\x00@?\\x95\\xd6\\x01\\xb5b\\x02\\x13(\\x00\\x02\\x12\\x05\\x00\\x08L\\x02`*\\xcd\\x14\\x01\\x1e\\xa3\\x1a\\xa8\\x96\\xbb\\xa2R\\x00\\x00K\\xa5\\x00\\xc0 \\x92*\\x00\\x00\\x00\\x11\\x98\\xaa\\xaa\\x00@\\x7f\\xc6\\xee\\xbc\\xb5b\\x02\\x13\\x18\\x00\\x06\\x05\\x02\\x08\\x04X\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05d\\xe2\\xb5b\\x02\\x13(\\x00\\x02\\x1f\\x05\\x00\\x08J\\x02`*\\xcd\\x14\\x01\\x99b\\xf2TyR\\x1d\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0B\\xbc*\\x00\\x00\\x00)\\xbe\\xaa\\xaa\\x00@\\x7f\\x9b7\\xab\\xb5b\\x02\\x13(\\x00\\x02\t\\x05\\x00\\x08N\\x02`\\xf8\\x8c\\x13\\x01\\xeeN\\x965Bt#\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0j\\x9b*\\x00\\x00\\x00\\x9b\\x88\\xaa\\xaa\\x00@\\xffz\nS\\xb5b\\x02\\x13\\x18\\x00\\x06\\x03\\x02\\x0c\\x04g\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05u%\\xb5b\\x02\\x13(\\x00\\x02\\x0b\\x05\\x00\\x08P\\x02`\\x16M\\x14\\x01\\xedO\\xdd\\x8e\\xe5p\\x0f\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0j\\x95\\x15\\x00\\x00\\x00\\xdd~UU\\x00@?\\xcb\\x1d\\xe8\\xb5b\\x02\\x13\\x18\\x00\\x06\\x11\\x02\\x0b\\x04Z\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05u[\\xb5b\\x02\\x13\\x18\\x00\\x06\\x12\\x02\\x04\\x04\\\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05q\\x05\\xb5b\\x02\\x13\\x18\\x00\\x06\\x10\\x02\\x06\\x04]\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05r\\x14\\xb5b\\x02\\x13\\x18\\x00\\x06\\x0f\\x02\\x07\\x04e\\x02`eh\\x86?\\xe1\\xbf\\xb4\\x04\\x00\\xd0\\xf6\\x19\\x04\\x00\\x92\\x05z\\xaa\\xb5b\\x02\\x13(\\x00\\x02\\x18\\x05\\x00\\x08C\\x02`*\\xcd\\x14\\x01\\x1c\\xfc\\x0f\\xf1O\\xe6N\\x00\\x00\\x00\\x05\\xaa\\x00\\xc02\\x91*\\x00\\x00\\x005\\xa3\\xaa\\xaa\\x00@\\xff\\xd1H\\xac\\xb5b\\x02\\x13(\\x00\\x02\n\\x05\\x00\\x08O\\x02`*\\xcd\\x14\\x01\\xb2BzB\\xc2\\xf8\\x1e\\x00\\x00\\xc0\\x04\\xaa\\x00\\xc0h\\x95*\\x00\\x00\\x00Z\\x87\\xaa\\xaa\\x00@\\xbf!E\\x8f\\xb5b\\x02\\x13,\\x00\\x01\\x89\\x00\\x00\t1\\x02\\xff\\xfd\\xdf\\x0e\\x9a\\xff\\xfd\\xff\\xff\\xdf",
         "datamd5" : "27b235e1812cf15ed38f02201bc5fc2c",
         "datammh3" : -1884174027,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "128.106.128.0/17"
         },
         "host" : [
            "bb128-106-219-33"
         ],
         "hostname" : [
            "bb128-106-219-33.singnet.com.sg"
         ],
         "ip" : "128.106.219.33",
         "ipv6" : "false",
         "latitude" : "1.3110",
         "location" : "1.3110,103.8500",
         "longitude" : "103.8500",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "unknown",
         "reverse" : [
            "bb128-106-219-33.singnet.com.sg"
         ],
         "seen_date" : "2024-11-05",
         "source" : "datascan",
         "subnet" : "128.106.192.0/18",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.79.96:3260 (tcp/http) - last seen on 2024-11-02 at 18:49:35 UTC

    • IP
      219.74.79.96
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.79.96:3260/ 200

      HTTP Title
      Home Assistant
      Reverse DNS
      bb219-74-79-96.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      cca342594e92676e69fb7cc0cd5e6a35
      HTTP Header MD5
      189276425e4a6a6c7adb0c33241a94b3
      HTTP Body MD5
      fae0e8eae68e884c64686cc4e8889dba
    • HTTP/1.1 200 OK
      Content-Type: text/html; charset=utf-8
      Content-Length: 9174
      Date: Sat, 02 Nov 2024 18:49:35 GMT
      Server: Python/3.10 aiohttp/3.8.4
      Connection: close
      
      <!DOCTYPE html><html><head><title>Home Assistant</title><meta charset="utf-8"><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="icon" href="/static/icons/favicon.ico"><link rel="modulepreload" href="/frontend_latest/core-hpNqcTVzWqI.js" crossorigin="use-credentials"><link rel="modulepreload" href="/frontend_latest/app-26IZhTwuAxk.js" crossorigin="use-credentials"><link rel="mask-icon" href="/static/icons/mask-icon.svg" color="#03a9f4"><link rel="apple-touch-icon" sizes="180x180" href="/static/icons/favicon-apple-180x180.png"><meta name="apple-itunes-app" content="app-id=1099568401"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="Home Assistant"><meta name="msapplication-square70x70logo" content="/static/icons/tile-win-70x70.png"><meta name="msapplication-square150x150logo" content="/static/icons/tile-win-150x150.png"><meta name="msapplication-wide310x150logo" content="/static/icons/tile-win-310x150.png"><meta name="msapplication-square310x310logo" content="/static/icons/tile-win-310x310.png"><meta name="msapplication-TileColor" content="#03a9f4ff"><meta name="mobile-web-app-capable" content="yes"><meta name="referrer" content="same-origin"><meta name="theme-color" content="#03A9F4"><meta name="color-scheme" content="dark light"><meta name="viewport" content="width=device-width,user-scalable=no,viewport-fit=cover,initial-scale=1"><style>body{font-family:Roboto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;padding:0;height:100%}</style><style>html{background-color:var(--primary-background-color,#fafafa);color:var(--primary-text-color,#212121)}@media (prefers-color-scheme:dark){html{background-color:var(--primary-background-color,#111);color:var(--primary-text-color,#e1e1e1)}}body{font-family:Roboto,Noto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;height:100vh;margin:0;padding:0}#ha-launch-screen{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}#ha-launch-screen svg{width:170px;flex-shrink:0}#ha-launch-screen .ha-launch-screen-spacer{flex:1}</style></head><body><div id="ha-launch-screen"><div class="ha-launch-screen-spacer"></div><svg version="1.1" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><rect fill="#41bdf5" width="200" height="200" ry="16.4"/><path fill="#fff" d="m38.416 165.29v-53.456h-13.901a3.7332 3.7332 0 0 1-2.662-6.3504l74.804-76.084c1.8068-1.8376 4.7612-1.8628 6.5992-0.056l0.048 0.048 39.04 39.518v-7.3188a3.1112 3.1112 0 0 1 3.1112-3.1112h12.964a3.1112 3.1112 0 0 1 3.1116 3.1112v26.855l16.627 17.047a3.7332 3.7332 0 0 1-2.6728 6.34h-13.954v53.456a3.1112 3.1112 0 0 1-3.1112 3.1112h-116.89a3.1112 3.1112 0 0 1-3.1112-3.1112zm82.556-65.304a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0176 5.996 6.0176c0.9256 0 1.802-0.2108 2.5848-0.5868l8.6072 8.6384v8.3672l-10.792 10.831v-7.936a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v11.947l-9.9932 10.029v-58.912l8.2076-8.2368a5.9544 5.9544 0 0 0 2.5848 0.5864c3.3116 0 5.996-2.694 5.996-6.0176 0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 0.9292 0.2096 1.8088 0.584 2.5944l-7.3792 7.406-7.3796-7.406a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 3.3236 2.6844 6.0176 5.996 6.0176 0.9256 0 1.802-0.2108 2.5848-0.5864l8.2072 8.2368v42.064l-14.39-14.442v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-11.192-11.232v-11.145a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v12.807l12.363 12.407h-7.108c-0.8232-2.3372-3.044-4.0116-5.6548-4.0116-3.3112 0-5.996 2.694-5.996 6.0172 0 3.3236 2.6848 6.0176 5.996 6.0176 2.6108 0 4.832-1.6744 5.6548-4.012h11.105l17.216 17.278v30.03l-9.1932-9.2264v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.996 2.694-5.996 6.0172 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-13.376-13.423a6.0116 6.0116 0 0 0 0.5844-2.5944c0-3.3232-2.684-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0172 5.996 6.0172c0.9256 0 1.8024-0.2104 2.5848-0.5864l13.376 13.424h-7.108c-0.8232-2.3372-3.044-4.012-5.6548-4.012-3.3112 0-5.996 2.6944-5.996 6.0176s2.6848 6.0172 5.996 6.0172c2.6108 0 4.8316-1.6744 5.6548-4.0116h11.105l11.192 11.232h5.6528l11.592-11.633h10.705c0.8232 2.3368 3.044 4.0112 5.6548 4.0112 3.3112 0 5.996-2.694 5.996-6.0172s-2.6848-6.0172-5.996-6.0172c-2.6108 0-4.8316 1.6744-5.6548 4.0116h-12.361l-10.764 10.802v-13.18l12.82-12.866h20.698c0.8232 2.3372 3.044 4.0116 5.6544 4.0116 3.3116 0 5.996-2.694 5.996-6.0172 0-3.3236-2.6844-6.0176-5.996-6.0176-2.6104 0-4.8312 1.6744-5.6544 4.012h-16.702l11.963-12.006v-10.029l8.6068-8.6384a5.9544 5.9544 0 0 0 2.5852 0.5868c3.3112 0 5.996-2.6944 5.996-6.0176s-2.6848-6.0172-5.996-6.0172-5.996 2.694-5.996 6.0172c0 0.9292 0.21 1.8088 0.5844 2.5944l-5.7804 5.8016v-18.367a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v18.366l-5.7808-5.8016zm-51.78 57.58c-1.3244 0-2.3984-1.0776-2.3984-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm17.588-18.052c-1.3248 0-2.3988-1.0776-2.3988-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm-20.786-2.808c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm-1.9988-20.058c-1.3244 0-2.398-1.0776-2.398-2.4072 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm49.964 2.808c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm27.181 18.453c-1.324 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-10.392 19.255c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm11.192-57.364c-1.3244 0-2.3984-1.078-2.3984-2.4072s1.074-2.4068 2.3984-2.4068 2.3984 1.0776 2.3984 2.4068-1.074 2.4072-2.3984 2.4072zm-13.191-15.645c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-15.989-9.628c-1.3244 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-25.582 0c-1.324 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-20.785 9.2268c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072s2.3984 1.0776 2.3984 2.4072c0 1.3292-1.074 2.4068-2.3984 2.4068zm15.189 14.843c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm33.976 1.2036c-1.324 0-2.398-1.078-2.398-2.4072s1.0736-2.4068 2.398-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4072-2.3984 2.4072z"/></svg><div id="ha-launch-screen-info-box" class="ha-launch-screen-spacer"></div></div><home-assistant></home-assistant><script>function _ls(e){var t=document.documentElement,n=t.insertBefore(document.createElement("script"),t.lastChild);return n.defer=!0,n.src=e,n}window.polymerSkipLoadingFontRoboto=!0,"customElements"in window&&"content"in document.createElement("template")||document.write("<script src='/static/polyfills/webcomponents-bundle.js'><\/script>");var isS11_12=/(?:.*(?:iPhone|iPad).*OS (?:11|12)_\d)|(?:.*Version\/(?:11|12)(?:\.\d+)*.*Safari\/)/.test(navigator.userAgent)</script><script>if(-1===navigator.userAgent.indexOf("Android")&&-1===navigator.userAgent.indexOf("CrOS")){function _pf(o,t){var n=document.createElement("link");n.rel="preload",n.as="font",n.type="font/woff2",n.href=o,n.crossOrigin="anonymous",document.head.appendChild(n)}_pf("/static/fonts/roboto/Roboto-Regular.woff2"),_pf("/static/fonts/roboto/Roboto-Medium.woff2")}</script><script crossorigin="use-credentials">window.globalThis||(window.globalThis=window),isS11_12||(import("/frontend_latest/core-hpNqcTVzWqI.js"),import("/frontend_latest/app-26IZhTwuAxk.js"),window.customPanelJS="/frontend_latest/custom-panel-X5yTL_rGmM4.js",window.latestJS=!0)</script><script></script><script>window.latestJS||(window.customPanelJS="/frontend_es5/custom-panel-7kF_XDyVc0Y.js",_ls("/frontend_es5/core-kQwhyYWUS0s.js"),_ls("/frontend_es5/app-NI6Q2j7JpPI.js"))</script><script>if (!window.latestJS) {}</script></body></html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-02T18:49:35.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "w3.org"
               ],
               "file" : [
                  "manifest.json"
               ],
               "hostname" : [
                  "www.w3.org"
               ],
               "url" : [
                  "http://www.w3.org/2000/svg"
               ]
            },
            "http" : {
               "bodymd5" : "fae0e8eae68e884c64686cc4e8889dba",
               "bodymmh3" : -818347864,
               "headermd5" : "189276425e4a6a6c7adb0c33241a94b3",
               "headermmh3" : 521700394,
               "title" : "Home Assistant"
            },
            "length" : 9346
         },
         "asn" : "AS9506",
         "city" : "Tampines New Town",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=utf-8\r\nContent-Length: 9174\r\nDate: Sat, 02 Nov 2024 18:49:35 GMT\r\nServer: Python/3.10 aiohttp/3.8.4\r\nConnection: close\r\n\r\n<!DOCTYPE html><html><head><title>Home Assistant</title><meta charset=\"utf-8\"><link rel=\"manifest\" href=\"/manifest.json\" crossorigin=\"use-credentials\"><link rel=\"icon\" href=\"/static/icons/favicon.ico\"><link rel=\"modulepreload\" href=\"/frontend_latest/core-hpNqcTVzWqI.js\" crossorigin=\"use-credentials\"><link rel=\"modulepreload\" href=\"/frontend_latest/app-26IZhTwuAxk.js\" crossorigin=\"use-credentials\"><link rel=\"mask-icon\" href=\"/static/icons/mask-icon.svg\" color=\"#03a9f4\"><link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/static/icons/favicon-apple-180x180.png\"><meta name=\"apple-itunes-app\" content=\"app-id=1099568401\"><meta name=\"apple-mobile-web-app-capable\" content=\"yes\"><meta name=\"apple-mobile-web-app-status-bar-style\" content=\"default\"><meta name=\"apple-mobile-web-app-title\" content=\"Home Assistant\"><meta name=\"msapplication-square70x70logo\" content=\"/static/icons/tile-win-70x70.png\"><meta name=\"msapplication-square150x150logo\" content=\"/static/icons/tile-win-150x150.png\"><meta name=\"msapplication-wide310x150logo\" content=\"/static/icons/tile-win-310x150.png\"><meta name=\"msapplication-square310x310logo\" content=\"/static/icons/tile-win-310x310.png\"><meta name=\"msapplication-TileColor\" content=\"#03a9f4ff\"><meta name=\"mobile-web-app-capable\" content=\"yes\"><meta name=\"referrer\" content=\"same-origin\"><meta name=\"theme-color\" content=\"#03A9F4\"><meta name=\"color-scheme\" content=\"dark light\"><meta name=\"viewport\" content=\"width=device-width,user-scalable=no,viewport-fit=cover,initial-scale=1\"><style>body{font-family:Roboto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;padding:0;height:100%}</style><style>html{background-color:var(--primary-background-color,#fafafa);color:var(--primary-text-color,#212121)}@media (prefers-color-scheme:dark){html{background-color:var(--primary-background-color,#111);color:var(--primary-text-color,#e1e1e1)}}body{font-family:Roboto,Noto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;height:100vh;margin:0;padding:0}#ha-launch-screen{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}#ha-launch-screen svg{width:170px;flex-shrink:0}#ha-launch-screen .ha-launch-screen-spacer{flex:1}</style></head><body><div id=\"ha-launch-screen\"><div class=\"ha-launch-screen-spacer\"></div><svg version=\"1.1\" viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"#41bdf5\" width=\"200\" height=\"200\" ry=\"16.4\"/><path fill=\"#fff\" d=\"m38.416 165.29v-53.456h-13.901a3.7332 3.7332 0 0 1-2.662-6.3504l74.804-76.084c1.8068-1.8376 4.7612-1.8628 6.5992-0.056l0.048 0.048 39.04 39.518v-7.3188a3.1112 3.1112 0 0 1 3.1112-3.1112h12.964a3.1112 3.1112 0 0 1 3.1116 3.1112v26.855l16.627 17.047a3.7332 3.7332 0 0 1-2.6728 6.34h-13.954v53.456a3.1112 3.1112 0 0 1-3.1112 3.1112h-116.89a3.1112 3.1112 0 0 1-3.1112-3.1112zm82.556-65.304a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0176 5.996 6.0176c0.9256 0 1.802-0.2108 2.5848-0.5868l8.6072 8.6384v8.3672l-10.792 10.831v-7.936a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v11.947l-9.9932 10.029v-58.912l8.2076-8.2368a5.9544 5.9544 0 0 0 2.5848 0.5864c3.3116 0 5.996-2.694 5.996-6.0176 0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 0.9292 0.2096 1.8088 0.584 2.5944l-7.3792 7.406-7.3796-7.406a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 3.3236 2.6844 6.0176 5.996 6.0176 0.9256 0 1.802-0.2108 2.5848-0.5864l8.2072 8.2368v42.064l-14.39-14.442v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-11.192-11.232v-11.145a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v12.807l12.363 12.407h-7.108c-0.8232-2.3372-3.044-4.0116-5.6548-4.0116-3.3112 0-5.996 2.694-5.996 6.0172 0 3.3236 2.6848 6.0176 5.996 6.0176 2.6108 0 4.832-1.6744 5.6548-4.012h11.105l17.216 17.278v30.03l-9.1932-9.2264v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.996 2.694-5.996 6.0172 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-13.376-13.423a6.0116 6.0116 0 0 0 0.5844-2.5944c0-3.3232-2.684-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0172 5.996 6.0172c0.9256 0 1.8024-0.2104 2.5848-0.5864l13.376 13.424h-7.108c-0.8232-2.3372-3.044-4.012-5.6548-4.012-3.3112 0-5.996 2.6944-5.996 6.0176s2.6848 6.0172 5.996 6.0172c2.6108 0 4.8316-1.6744 5.6548-4.0116h11.105l11.192 11.232h5.6528l11.592-11.633h10.705c0.8232 2.3368 3.044 4.0112 5.6548 4.0112 3.3112 0 5.996-2.694 5.996-6.0172s-2.6848-6.0172-5.996-6.0172c-2.6108 0-4.8316 1.6744-5.6548 4.0116h-12.361l-10.764 10.802v-13.18l12.82-12.866h20.698c0.8232 2.3372 3.044 4.0116 5.6544 4.0116 3.3116 0 5.996-2.694 5.996-6.0172 0-3.3236-2.6844-6.0176-5.996-6.0176-2.6104 0-4.8312 1.6744-5.6544 4.012h-16.702l11.963-12.006v-10.029l8.6068-8.6384a5.9544 5.9544 0 0 0 2.5852 0.5868c3.3112 0 5.996-2.6944 5.996-6.0176s-2.6848-6.0172-5.996-6.0172-5.996 2.694-5.996 6.0172c0 0.9292 0.21 1.8088 0.5844 2.5944l-5.7804 5.8016v-18.367a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v18.366l-5.7808-5.8016zm-51.78 57.58c-1.3244 0-2.3984-1.0776-2.3984-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm17.588-18.052c-1.3248 0-2.3988-1.0776-2.3988-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm-20.786-2.808c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm-1.9988-20.058c-1.3244 0-2.398-1.0776-2.398-2.4072 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm49.964 2.808c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm27.181 18.453c-1.324 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-10.392 19.255c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm11.192-57.364c-1.3244 0-2.3984-1.078-2.3984-2.4072s1.074-2.4068 2.3984-2.4068 2.3984 1.0776 2.3984 2.4068-1.074 2.4072-2.3984 2.4072zm-13.191-15.645c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-15.989-9.628c-1.3244 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-25.582 0c-1.324 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-20.785 9.2268c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072s2.3984 1.0776 2.3984 2.4072c0 1.3292-1.074 2.4068-2.3984 2.4068zm15.189 14.843c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm33.976 1.2036c-1.324 0-2.398-1.078-2.398-2.4072s1.0736-2.4068 2.398-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4072-2.3984 2.4072z\"/></svg><div id=\"ha-launch-screen-info-box\" class=\"ha-launch-screen-spacer\"></div></div><home-assistant></home-assistant><script>function _ls(e){var t=document.documentElement,n=t.insertBefore(document.createElement(\"script\"),t.lastChild);return n.defer=!0,n.src=e,n}window.polymerSkipLoadingFontRoboto=!0,\"customElements\"in window&&\"content\"in document.createElement(\"template\")||document.write(\"<script src='/static/polyfills/webcomponents-bundle.js'><\\/script>\");var isS11_12=/(?:.*(?:iPhone|iPad).*OS (?:11|12)_\\d)|(?:.*Version\\/(?:11|12)(?:\\.\\d+)*.*Safari\\/)/.test(navigator.userAgent)</script><script>if(-1===navigator.userAgent.indexOf(\"Android\")&&-1===navigator.userAgent.indexOf(\"CrOS\")){function _pf(o,t){var n=document.createElement(\"link\");n.rel=\"preload\",n.as=\"font\",n.type=\"font/woff2\",n.href=o,n.crossOrigin=\"anonymous\",document.head.appendChild(n)}_pf(\"/static/fonts/roboto/Roboto-Regular.woff2\"),_pf(\"/static/fonts/roboto/Roboto-Medium.woff2\")}</script><script crossorigin=\"use-credentials\">window.globalThis||(window.globalThis=window),isS11_12||(import(\"/frontend_latest/core-hpNqcTVzWqI.js\"),import(\"/frontend_latest/app-26IZhTwuAxk.js\"),window.customPanelJS=\"/frontend_latest/custom-panel-X5yTL_rGmM4.js\",window.latestJS=!0)</script><script></script><script>window.latestJS||(window.customPanelJS=\"/frontend_es5/custom-panel-7kF_XDyVc0Y.js\",_ls(\"/frontend_es5/core-kQwhyYWUS0s.js\"),_ls(\"/frontend_es5/app-NI6Q2j7JpPI.js\"))</script><script>if (!window.latestJS) {}</script></body></html>",
         "datamd5" : "cca342594e92676e69fb7cc0cd5e6a35",
         "datammh3" : -1135114610,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-79-96"
         ],
         "hostname" : [
            "bb219-74-79-96.singnet.com.sg"
         ],
         "ip" : "219.74.79.96",
         "ipv6" : "false",
         "latitude" : "1.3579",
         "location" : "1.3579,103.9429",
         "longitude" : "103.9429",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-79-96.singnet.com.sg"
         ],
         "seen_date" : "2024-11-02",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 115.66.173.188:3260 (tcp/http) - last seen on 2024-11-02 at 18:47:30 UTC

    • IP
      115.66.173.188
      Network
      115.66.128.0/17
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://115.66.173.188:3260/ 400

      HTTP Title
      400 The plain HTTP request was sent to HTTPS port
      Reverse DNS
      bb115-66-173-188.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      F5 Nginx
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      0c1820e0d381850a77897bf32978a1f0
      HTTP Header MD5
      a629a0fe278971ad61801ba6975ba467
      HTTP Body MD5
      ea425366a98dfc499c0cbeedb9a4f02a
    • HTTP/1.1 400 Bad Request
      Server: nginx
      Date: Sat, 02 Nov 2024 18:47:30 GMT
      Content-Type: text/html
      Content-Length: 248
      Connection: close
      
      <html>
      <head><title>400 The plain HTTP request was sent to HTTPS port</title></head>
      <body>
      <center><h1>400 Bad Request</h1></center>
      <center>The plain HTTP request was sent to HTTPS port</center>
      <hr><center>nginx</center>
      </body>
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-02T18:47:30.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "ea425366a98dfc499c0cbeedb9a4f02a",
               "bodymmh3" : 1153229498,
               "headermd5" : "a629a0fe278971ad61801ba6975ba467",
               "headermmh3" : -773402282,
               "title" : "400 The plain HTTP request was sent to HTTPS port"
            },
            "length" : 393
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 400 Bad Request\r\nServer: nginx\r\nDate: Sat, 02 Nov 2024 18:47:30 GMT\r\nContent-Type: text/html\r\nContent-Length: 248\r\nConnection: close\r\n\r\n<html>\r\n<head><title>400 The plain HTTP request was sent to HTTPS port</title></head>\r\n<body>\r\n<center><h1>400 Bad Request</h1></center>\r\n<center>The plain HTTP request was sent to HTTPS port</center>\r\n<hr><center>nginx</center>\r\n</body>\r\n</html>\r\n",
         "datamd5" : "0c1820e0d381850a77897bf32978a1f0",
         "datammh3" : 190190724,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "115.66.128.0/17"
         },
         "host" : [
            "bb115-66-173-188"
         ],
         "hostname" : [
            "bb115-66-173-188.singnet.com.sg"
         ],
         "ip" : "115.66.173.188",
         "ipv6" : "false",
         "latitude" : "1.3384",
         "location" : "1.3384,103.8628",
         "longitude" : "103.8628",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "Nginx",
         "productvendor" : "F5",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Bad Request",
         "reverse" : [
            "bb115-66-173-188.singnet.com.sg"
         ],
         "seen_date" : "2024-11-02",
         "source" : "datascan",
         "status" : 400,
         "subnet" : "115.66.128.0/17",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 220.255.248.205:3260 (tcp/http) - last seen on 2024-11-02 at 12:20:53 UTC

    • IP
      220.255.248.205
      Network
      220.255.128.0/17
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://220.255.248.205:3260/ 200

      Reverse DNS
      bb220-255-248-205.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      HTTP Component(s)
      jQuery jQuery 1.10.2
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      53f80d777e475e2bdeb8b59f90b90831
      HTTP Header MD5
      aba654277d72afb8c8f30185ef490f81
      HTTP Body MD5
      85d274008c028df152663b291e2e3d7f
    • HTTP/1.1 200 OK
      Date: Sat, 02 Nov 2024 12:21:45 GMT
      Last-Modified: Wed, 04 Jul 2018 08:17:49 GMT
      Etag: "5b3c82ad.7993"
      Content-Type: text/html
      Content-Length: 7993
      Connection: close
      Accept-Ranges: bytes
      Content-Security-Policy: img-src 'self' data:; default-src 'self' 'unsafe-inline' 'unsafe-eval'
      X-Content-Type-Options: nosniff
      X-Frame-Options: SAMEORIGIN
      x-xss-protection: 1; mode=block
      
      <!DOCTYPE html>
      <html>
          <head>
              <script>
                  /**
                   * 防止浏览器缓存导致登录页的js文件加载失败
                   * 如果url中没有参数则为url上加上一个随机数重新加载,需要过滤cloud方式登录
                   * @return {[type]} [description]
                   */
                  (function(){
                      var href = window.location.href;
                      var ran = Math.round(Math.random() * 1000000000000);
                      if (-1 === href.indexOf('?')){
                          window.location.href = href + '?_=' + ran;
                      } else if (-1 === href.indexOf('_=') && -1 === href.indexOf('/?')){
                          window.location.href = href + '&_=' + ran;
                      }
                  })();
              </script>
              <meta http-equiv="X-UA-Compatible" content="edge" />
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <meta content="favicon.ico" itemprop="image" />
              <link rel="stylesheet" href="/style/index_3050207.css" />
              <link rel="stylesheet" href="style/color.css" />
              <title data-text="Text.VideoManageSystem"></title>
          </head>
          <body id="login_body" class="login_min_height_width">
              <div class="pluginTip" id="pluginTip">
                  <div class="pluginVersionTip" id="pluginVersionTip" data-title="Text.TipDbClickClose3"></div>
              </div>
              <div class="login_fullPage login_min_height_width">
                  <div class="login_placeHolder">
                      <div class="login_minHeight"></div>
                  </div>
                  <div class="login_form">
                      <div class="login_header">
                          <div class="logo" style="background-image: url(/images/logo.png);"></div>
                      </div>
                      <form action="cgi-bin/main-cgi" method="post" name="loginForm" id="loginForm">
                          <table class="login_table">
                              <tr class="login_line">
                                  <td id="ErrorMsg" class="login_msg" colspan="2">
                                      <span id="idErrorMsg"></span>
                                      <span id="idErrorInfo"></span>
                                  </td>
                              </tr>
                              <tr class="login_line hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='lLan' data-text="Text.Lang"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <select class="in_select" name="lLan" id="language">
                                          <!-- <option value="0" data-text="Text.SimplifyChinese"></option> -->
                                          <!-- <option value="1">简体中文</option> -->
                                          <!-- <option value="2">English</option> -->
                                      </select>
                                  </td>
                              </tr>
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='szUserName' data-text="Text.UserName"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <input type="text" class="in_text" name="szUserName" id="szUserName" autocomplete="off" />
                                  </td>
                              </tr>
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='szUserLoginCert' data-text="Text.Passwd"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <input type=password class="in_text nor-submit-pwd" id="szUserPasswdSrc" maxlength="20" value="" autocomplete="off" />
                                      <input type="hidden" name="szUserLoginCert" id="szUserLoginCert" />
                                      <!--
                                      <input type="hidden" name="szUserLoginCertEx" id="szUserLoginCertEx" />
                                      -->
                                      <input type="hidden" name="nonce" id="nonce" />
                                      <input type="hidden" name="szServIpAddr" id="szServIpAddr" />
                                  </td>
                              </tr>
                              <!-- <tr class="login_line">
                                  <td class="login_left">
                                  </td>
                                  <td class="login_right login_remPwd">
                                      <input type="checkbox" name="recordPassword" id="recordPassword" class="login_autoLogin" />
                                      <label for='autoLogin' class="login_autoLoginLabel">自动登录</label>
                                  </td>
                              </tr> -->
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left"></td>
                                  <td class="login_right">
                                      <div id="wanlanid" class="wanlan">
                                          <input id="lan" name="wanlanswitch" type="radio" checked="checked" value="1" />
                                          <label data-text="Text.LAN" for="lan" class="config-label-right-swich-lable">
                                          </label>
                                          <input id="wan" name="wanlanswitch" type="radio" value="0" />
                                          <label data-text="Text.WAN" for="wan" class="config-label-right-swich-lable">
                                          </label>
                                      </div>
                                      <a name="login" type="submit" id="login" class="login-button noMarginLeft">
                                          <span class="custom-btn-left"></span><span class="custom-btn-center ellipsis width70" data-text="Text.Login" data-title="Text.Login"></span><span class="custom-btn-right"></span>
                                      </a>
                                      <a name="reset" type="submit" id="reset" class="login-button">
                                          <span class="custom-btn-left"></span><span class="custom-btn-center ellipsis width70" data-text="Text.Reset" data-title="Text.Reset"></span><span class="custom-btn-right"></span>
                                      </a>
                                  </td>
                              </tr>
                          </table>
      
                      </form>
                      <div class="login_tips">
                          <p data-text="Text.SuggestResolution"></p>
                      </div>
                      <div id="insecurityPasswd" class="login_hidden">
                      </div>
                  </div>
              </div>
              <div style="width:0;height:0;" id="loginPlugs"></div>
          </body>
          <!--[if IE & (lt IE 9)]>
          <script src="/script/plugins/json2_f4e6ebd.js"></script>
          <![endif]-->
          <script src="/script/plugins/MD5_f913ed0.js"></script>
          <script src="/script/plugins/jquery-1.10.2.min_954ab71.js"></script>
          <script src="/script/plugins/jquery.xml2json_0bb5881.js"></script>
          <script src="/script/plugins/base64.min_ae031ff.js"></script>
          <script src="/script/common_378e5b5.js"></script>
          <script src="/script/index_20336a1.js"></script>
          <script src="/script/static_1a0f49b.js"></script>
          <script src="/script/plugins/jquery.cookie_a5283b2.js"></script>
      </html>
      
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-02T12:20:53.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "85d274008c028df152663b291e2e3d7f",
               "bodymmh3" : 532341275,
               "component" : [
                  {
                     "productversion" : "1.10.2",
                     "productvendor" : "jQuery",
                     "product" : "jQuery"
                  }
               ],
               "header" : [
                  {
                     "value" : "Wed, 04 Jul 2018 08:17:49 GMT",
                     "name" : "Last-Modified"
                  },
                  {
                     "name" : "Etag",
                     "value" : "5b3c82ad.7993"
                  }
               ],
               "headermd5" : "aba654277d72afb8c8f30185ef490f81",
               "headermmh3" : 558298413
            },
            "length" : 8398
         },
         "asn" : "AS9506",
         "city" : "Woodlands",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nDate: Sat, 02 Nov 2024 12:21:45 GMT\r\nLast-Modified: Wed, 04 Jul 2018 08:17:49 GMT\r\nEtag: \"5b3c82ad.7993\"\r\nContent-Type: text/html\r\nContent-Length: 7993\r\nConnection: close\r\nAccept-Ranges: bytes\r\nContent-Security-Policy: img-src 'self' data:; default-src 'self' 'unsafe-inline' 'unsafe-eval'\r\nX-Content-Type-Options: nosniff\r\nX-Frame-Options: SAMEORIGIN\r\nx-xss-protection: 1; mode=block\r\n\r\n<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <script>\r\n            /**\r\n             * \u9632\u6b62\u6d4f\u89c8\u5668\u7f13\u5b58\u5bfc\u81f4\u767b\u5f55\u9875\u7684js\u6587\u4ef6\u52a0\u8f7d\u5931\u8d25\r\n             * \u5982\u679curl\u4e2d\u6ca1\u6709\u53c2\u6570\u5219\u4e3aurl\u4e0a\u52a0\u4e0a\u4e00\u4e2a\u968f\u673a\u6570\u91cd\u65b0\u52a0\u8f7d\uff0c\u9700\u8981\u8fc7\u6ee4cloud\u65b9\u5f0f\u767b\u5f55\r\n             * @return {[type]} [description]\r\n             */\r\n            (function(){\r\n                var href = window.location.href;\r\n                var ran = Math.round(Math.random() * 1000000000000);\r\n                if (-1 === href.indexOf('?')){\r\n                    window.location.href = href + '?_=' + ran;\r\n                } else if (-1 === href.indexOf('_=') && -1 === href.indexOf('/?')){\r\n                    window.location.href = href + '&_=' + ran;\r\n                }\r\n            })();\r\n        </script>\r\n        <meta http-equiv=\"X-UA-Compatible\" content=\"edge\" />\r\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n        <meta content=\"favicon.ico\" itemprop=\"image\" />\r\n        <link rel=\"stylesheet\" href=\"/style/index_3050207.css\" />\r\n        <link rel=\"stylesheet\" href=\"style/color.css\" />\r\n        <title data-text=\"Text.VideoManageSystem\"></title>\r\n    </head>\r\n    <body id=\"login_body\" class=\"login_min_height_width\">\r\n        <div class=\"pluginTip\" id=\"pluginTip\">\r\n            <div class=\"pluginVersionTip\" id=\"pluginVersionTip\" data-title=\"Text.TipDbClickClose3\"></div>\r\n        </div>\r\n        <div class=\"login_fullPage login_min_height_width\">\r\n            <div class=\"login_placeHolder\">\r\n                <div class=\"login_minHeight\"></div>\r\n            </div>\r\n            <div class=\"login_form\">\r\n                <div class=\"login_header\">\r\n                    <div class=\"logo\" style=\"background-image: url(/images/logo.png);\"></div>\r\n                </div>\r\n                <form action=\"cgi-bin/main-cgi\" method=\"post\" name=\"loginForm\" id=\"loginForm\">\r\n                    <table class=\"login_table\">\r\n                        <tr class=\"login_line\">\r\n                            <td id=\"ErrorMsg\" class=\"login_msg\" colspan=\"2\">\r\n                                <span id=\"idErrorMsg\"></span>\r\n                                <span id=\"idErrorInfo\"></span>\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='lLan' data-text=\"Text.Lang\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <select class=\"in_select\" name=\"lLan\" id=\"language\">\r\n                                    <!-- <option value=\"0\" data-text=\"Text.SimplifyChinese\"></option> -->\r\n                                    <!-- <option value=\"1\">\u7b80\u4f53\u4e2d\u6587</option> -->\r\n                                    <!-- <option value=\"2\">English</option> -->\r\n                                </select>\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='szUserName' data-text=\"Text.UserName\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <input type=\"text\" class=\"in_text\" name=\"szUserName\" id=\"szUserName\" autocomplete=\"off\" />\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='szUserLoginCert' data-text=\"Text.Passwd\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <input type=password class=\"in_text nor-submit-pwd\" id=\"szUserPasswdSrc\" maxlength=\"20\" value=\"\" autocomplete=\"off\" />\r\n                                <input type=\"hidden\" name=\"szUserLoginCert\" id=\"szUserLoginCert\" />\r\n                                <!--\r\n                                <input type=\"hidden\" name=\"szUserLoginCertEx\" id=\"szUserLoginCertEx\" />\r\n                                -->\r\n                                <input type=\"hidden\" name=\"nonce\" id=\"nonce\" />\r\n                                <input type=\"hidden\" name=\"szServIpAddr\" id=\"szServIpAddr\" />\r\n                            </td>\r\n                        </tr>\r\n                        <!-- <tr class=\"login_line\">\r\n                            <td class=\"login_left\">\r\n                            </td>\r\n                            <td class=\"login_right login_remPwd\">\r\n                                <input type=\"checkbox\" name=\"recordPassword\" id=\"recordPassword\" class=\"login_autoLogin\" />\r\n                                <label for='autoLogin' class=\"login_autoLoginLabel\">\u81ea\u52a8\u767b\u5f55</label>\r\n                            </td>\r\n                        </tr> -->\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\"></td>\r\n                            <td class=\"login_right\">\r\n                                <div id=\"wanlanid\" class=\"wanlan\">\r\n                                    <input id=\"lan\" name=\"wanlanswitch\" type=\"radio\" checked=\"checked\" value=\"1\" />\r\n                                    <label data-text=\"Text.LAN\" for=\"lan\" class=\"config-label-right-swich-lable\">\r\n                                    </label>\r\n                                    <input id=\"wan\" name=\"wanlanswitch\" type=\"radio\" value=\"0\" />\r\n                                    <label data-text=\"Text.WAN\" for=\"wan\" class=\"config-label-right-swich-lable\">\r\n                                    </label>\r\n                                </div>\r\n                                <a name=\"login\" type=\"submit\" id=\"login\" class=\"login-button noMarginLeft\">\r\n                                    <span class=\"custom-btn-left\"></span><span class=\"custom-btn-center ellipsis width70\" data-text=\"Text.Login\" data-title=\"Text.Login\"></span><span class=\"custom-btn-right\"></span>\r\n                                </a>\r\n                                <a name=\"reset\" type=\"submit\" id=\"reset\" class=\"login-button\">\r\n                                    <span class=\"custom-btn-left\"></span><span class=\"custom-btn-center ellipsis width70\" data-text=\"Text.Reset\" data-title=\"Text.Reset\"></span><span class=\"custom-btn-right\"></span>\r\n                                </a>\r\n                            </td>\r\n                        </tr>\r\n                    </table>\r\n\r\n                </form>\r\n                <div class=\"login_tips\">\r\n                    <p data-text=\"Text.SuggestResolution\"></p>\r\n                </div>\r\n                <div id=\"insecurityPasswd\" class=\"login_hidden\">\r\n                </div>\r\n            </div>\r\n        </div>\r\n        <div style=\"width:0;height:0;\" id=\"loginPlugs\"></div>\r\n    </body>\r\n    <!--[if IE & (lt IE 9)]>\r\n    <script src=\"/script/plugins/json2_f4e6ebd.js\"></script>\r\n    <![endif]-->\r\n    <script src=\"/script/plugins/MD5_f913ed0.js\"></script>\r\n    <script src=\"/script/plugins/jquery-1.10.2.min_954ab71.js\"></script>\r\n    <script src=\"/script/plugins/jquery.xml2json_0bb5881.js\"></script>\r\n    <script src=\"/script/plugins/base64.min_ae031ff.js\"></script>\r\n    <script src=\"/script/common_378e5b5.js\"></script>\r\n    <script src=\"/script/index_20336a1.js\"></script>\r\n    <script src=\"/script/static_1a0f49b.js\"></script>\r\n    <script src=\"/script/plugins/jquery.cookie_a5283b2.js\"></script>\r\n</html>\r\n\r\n",
         "datamd5" : "53f80d777e475e2bdeb8b59f90b90831",
         "datammh3" : -1438186925,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "220.255.128.0/17"
         },
         "host" : [
            "bb220-255-248-205"
         ],
         "hostname" : [
            "bb220-255-248-205.singnet.com.sg"
         ],
         "ip" : "220.255.248.205",
         "ipv6" : "false",
         "latitude" : "1.4223",
         "location" : "1.4223,103.7825",
         "longitude" : "103.7825",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb220-255-248-205.singnet.com.sg"
         ],
         "seen_date" : "2024-11-02",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "220.255.128.0/17",
         "tag" : "<enterprise field>: tag",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }