Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - brccd.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Mon, 12 May 2025 17:07:53 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
X-Powered-By: PHP/5.2.17
Vary: User-Agent,Accept-Encoding

HTTP Code 200 OK

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

When is Code 200 used?

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

What does Code 200 mean for the user?

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

GET / HTTP/1.1
Host: brccd.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<META content="IE=10.000" http-equiv="X-UA-Compatible">
<META http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<title>什韵创意 </title>
<meta name="keywords" content="什韵创意" />
<meta name="description" content="什韵创意" />
<link href="css/css.css" rel="stylesheet" />
<link href="css/css_c.css" rel="stylesheet" type="text/css" />

<style type="text/css">
<!--

.t_rt{text-align:right;}
ul,li{margin:0px;padding:0px;}
li{list-style-type:none;}
.cont5{}
.cls{clear:both;}
.hidden{display:none;}
.scrolldoorFrame{width:400px;margin:0px auto;overflow:hidden;}
.scrollUl{width:570px;overflow:hidden;height:35px; float:left; display:inline;}
.scrollUl li{float:left; width:100px; height:35px; display:inline; margin-right:3px;}
.sd01{cursor:pointer; width:100px; height:35px; float:left; display:inline; text-align:center; line-height:35px; font-family:"微软雅黑"; font-size:14px; color:#FFF;  background:#14a83b;}
.sd02{cursor:pointer; width:100px; height:35px; float:left; display:inline; text-align:center; line-height:35px; font-family:"微软雅黑"; font-size:14px; color:#FFF;  background:#B8B8B8;}
-->
</style>
<script type="text/javascript">

function scrollDoor(){
}
scrollDoor.prototype = {
	sd : function(menus,divs,openClass,closeClass){
		var _this = this;
		if(menus.length != divs.length)
		{
			alert("菜单层数量和内容层数量不一样!");
			return false;
		}				
		for(var i = 0 ; i < menus.length ; i++)
		{	
			_this.$(menus[i]).value = i;				
			_this.$(menus[i]).onmouseover = function(){
					
				for(var j = 0 ; j < menus.length ; j++)
				{						
					_this.$(menus[j]).className = closeClass;
					_this.$(divs[j]).style.display = "none";
				}
				_this.$(menus[this.value]).className = openClass;	
				_this.$(divs[this.value]).style.display = "block";				
			}
		}
		},
	$ : function(oid){
		if(typeof(oid) == "string")
		return document.getElementById(oid);
		return oid;
	}
}
window.onload = function(){
	var SDmodel = new scrollDoor();
	SDmodel.sd(["m01","m02","m03"],["c01","c02","c03"],"sd01","sd02");
	SDmodel.sd(["m001","m002","m003","m004"],["c001","c002","c003","c004"],"sd01","sd02");

}
</script>



<style type="text/css">

/* qqshop focus */
#focus {width:1000px; height:310px; overflow:hidden; position:relative;}
#focus ul {height:310px; position:absolute;}
#focus ul li {float:left; width:1000px; height:310px; overflow:hidden; position:relative; background:#000;}
#focus ul li div {position:absolute; overflow:hidden;}
#focus .btnBg {position:absolute; width:590px; height:20px; left:0; bottom:0; background:#000;}
#focus .btn {position:absolute; width:580px; height:10px; padding:5px 10px; right:0; bottom:0; text-align:right;}
#focus .btn span {display:inline-block; _display:inline; _zoom:1; width:25px; height:10px; _font-size:0; margin-left:5px; cursor:pointer; background:#005dae;}
#focus .btn span.on {background:#000;}
#focus .preNext {width:45px; height:100px; position:absolute; top:10px;cursor:pointer;}
#focus .pre {left:0;}
#focus .next {right:0; background-position:right top;}

</style>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(function() {
	var sWidth = $("#focus").width(); //获取焦点图的宽度(显示面积)
	var len = $("#focus ul li").length; //获取焦点图个数
	var index = 0;
	var picTimer;
	
	//以下代码添加数字按钮和按钮后的半透明条,还有上一页、下一页两个按钮
	var btn = "<div class='btnBg'></div><div class='btn'>";
	for(var i=0; i < len; i++) {
		btn += "<span></span>";
	}
	btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
	$("#focus").append(btn);
	$("#focus .btnBg").css("opacity",0.0);

	//为小按钮添加鼠标滑入事件,以显示相应的内容
	$("#focus .btn span").css("opacity",0.4).mouseenter(function() {
		index = $("#focus .btn span").index(this);
		showPics(index);
	}).eq(0).trigger("mouseenter");

	//上一页、下一页按钮透明度处理
	$("#focus .preNext").css("opacity",0.2).hover(function() {
		$(this).stop(true,false).animate({"opacity":"0.5"},300);
	},function() {
		$(this).stop(true,false).animate({"opacity":"0.2"},300);
	});

	//上一页按钮
	$("#focus .pre").click(function() {
		index -= 1;
		if(index == -1) {index = len - 1;}
		showPics(index);
	});

	//下一页按钮
	$("#focus .next").click(function() {
		index += 1;
		if(index == len) {index = 0;}
		showPics(index);
	});

	//本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度
	$("#focus ul").css("width",sWidth * (len));
	
	//鼠标滑上焦点图时停止自动播放,滑出时开始自动播放
	$("#focus").hover(function() {
		clearInterval(picTimer);
	},function() {
		picTimer = setInterval(function() {
			showPics(index);
			index++;
			if(index == len) {index = 0;}
		},4000); //此4000代表自动播放的间隔,单位:毫秒
	}).trigger("mouseleave");
	
	//显示图片函数,根据接收的index值显示相应的内容
	function showPics(index) { //普通切换
		var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
		$("#focus ul").stop(true,false).animate({"left":nowLeft},300); //通过animate()调整ul元素滚动到计算出的position
		//$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
		$("#focus .btn span").stop(true,false).animate({"opacity":"0.4"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //为当前的按钮切换到选中的效果
	}
});

</script>
<SCRIPT type=text/javascript>
$(function(){
	$('.nav').find('li').eq(0).addClass('now');
})
</SCRIPT>
</HEAD> 
<BODY>

<div class="content">
<div class="header">
<div class="logo"><a href="/"><img src="/images/c1.jpg" width="295" height="103"></a></div>
<div class="top_bar">
<script src="/e/member/login/loginjs.php"></script>
</div>
  <form action='/e/search/index.php' method="post" name="search_news" id="search_news">
<input type="hidden" name="show" value="title" />
<input type="hidden" name="classid" value="16,22" />
  <div class="sou"><input name="keyboard" id="keyboard" type="text" value="请输入搜索关键词" class="s1" onclick="this.value='';focus()"><input name="sub" type="submit" value="" class="s2"></div>
  
<div class="her1"><img src="/d/file/qitaxinxiguanli/2015-07-03/73391e9024c83f46a2f33baa93d897d8.jpg" width="142" height="25"></div>
</form>
</div>
  <div class="nav">
    <ul>
      <li id="one"><a href="/">公司首页</a></li>
      <li><a href="/about">关于什韵</a></li>
      <li><a href="/yewu">核心业务</a></li>
      <li><a href="/youshi">公司优势</a></li>
      <li><a href="/product">礼品展示</a></li>
      <li><a href="/news">新闻视点</a></li>
      <li><a href="/case">实践案例</a></li>
      <li><a href="/touzi">投资者关系</a></li>
      <li><a href="/contact">联系我们</a></li>
    </ul>
  </div>


<div class="huan">
<div id="focus">
<ul>
<li><a href=""><img src="/d/file/huandengpian/2023-06-30/806907fd59295541e0289c92d8fba561.png" width="1000" height="310"/></a></li>
<li><a href=""><img src="/d/file/huandengpian/2015-07-03/6ae79907f91f793abdebf84659e03524.jpg" width="1000" height="310"/></a></li>
<li><a href=""><img src="/d/file/huandengpian/2023-06-30/78337209dbf111d852cf109979aa9b7c.png" width="1000" height="310"/></a></li>
</ul>
 </div>
</div>




<div class="c1">
  <div class="c11">
     <ul class="scrollUl">
				<li class="sd01" id="m01">公司动态</li>
				<li class="sd02" id="m02">行业动态</li>
				<li class="sd02" id="m03">公示公告</li>
	</ul>
  </div>
  
  <div class="c12">
    <div class="bor03 cont5">
				<div id="c01" class="">
									<div class="c13">
                        <div class="c131"><a href="/news/gongsidongtai/15.html" title="马志刚董事长与世界文化城Sonny总裁进行项目洽谈并签署合作意向"><img src="/d/file/news/gongsidongtai/2015-08-14/5319cf80137fcc21d5f4951ce59dfafa.jpg" width="200" height="140"></a></div>
                      <div class="c132">
                        <h3><a href="/news/gongsidongtai/15.html" title="马志刚董事长与世界文化城Sonny总裁进行项目洽谈并签署合作意向">马志刚董事长与世界文化城Sonny总裁进行</a></h3>
                        <p>7月13日马志刚董事长接见世界文化城Sonny Lee总裁,双方在友好的气氛下交换对当前国际国内经济形势的看法,并对双方开展合作事宜进行了讨论。Sonny Lee总裁系美国三五集团公...</p>
                        <span><a href="/news/gongsidongtai/15.html">查看详细内容>></a></span>
                      </div>
 
                    </div>
                    <ul class="c14">
                      <li onMouseOver="this.className='now'" onMouseOut="this.className=''"><a href="/news/gongsidongtai/16.html">什韵公司正式作为第四届中国(北京)国际服务贸易交易会市场运营代</a><span>2015-06-05</span></li>
 
                     
                    </ul>
				</div>
				<div id="c02" class="hidden">
									<div class="c13">
                        <div class="c131"><a href="/news/gongsidongtai/17.html" title="所有可以分销的商品均明确显示商品名"><img src="/d/file/news/gongsidongtai/2015-07-03/ce7bf47b62376abb123909a4468a8444.jpg" width="200" height="140"></a></div>
                      <div class="c132">
                        <h3><a href="/news/gongsidongtai/17.html" title="所有可以分销的商品均明确显示商品名">所有可以分销的商品均明确显示商品名</a></h3>
                        <p>所有可以分销的商品均明确显示商品名、价格、每单佣金和转发次数。其中,来自京东自营商品库的商品,都会在商品左上角显示&amp;ldquo;京东供货&amp;rdquo;字样。仔细研究拍拍的做法,不...</p>
                        <span><a href="/news/gongsidongtai/17.html">查看详细内容>></a></span>
                      </div>
 
                    </div>
                    <ul class="c14">
                      <li onMouseOver="this.className='now'" onMouseOut="this.className=''"><a href="/news/gongsidongtai/18.html">拍拍小店给你提供应用的场景很多</a><span>2015-07-03</span></li>
 
                     
                    </ul>
				</div>
				<div id="c03" class="hidden">
									<div class="c13">
                        <div class="c131"><a href="/news/gongshigonggao/19.html" title="中国(北京)国际服务贸易交易会"><img src="/d/file/news/gongshigonggao/2015-08-21/9ea2088a7316403583f41572cbfba6a8.jpg" width="200" height="140"></a></div>
                      <div class="c132">
                        <h3><a href="/news/gongshigonggao/19.html" title="中国(北京)国际服务贸易交易会">中国(北京)国际服务贸易交易会</a></h3>
                        <p>由中华人民共和国商务部和北京市人民政府共同主办中国(北京)国际服务贸易交易会(简称京交会)CHINA BEIJING INTERNATIONAL FAIR FOR TRADE IN SERVICES...</p>
                        <span><a href="/news/gongshigonggao/19.html">查看详细内容>></a></span>
                      </div>
 
                    </div>
                    <ul class="c14">
 
                     
                    </ul>
				</div>
								
  </div>
  </div>
  
</div>


<div class="c2">
  <div class="c21"><h3>公司简介</h3><p>|</p><span>Company Profile</span><a href="/about"><img src="images/c11.jpg" width="56" height="18"></a></div>
  <div class="c22"><img src="/d/file/qitaxinxiguanli/2015-08-12/dc0cffbceb4f62ef32b2624bdf73dbd8.jpg" width="410" height="149"></div>
  <div class="c23">北京什韵文化创意发展有限公司成立于2013年10月。她是由中国著名经济学家马志刚教授倡导,并在其《艺术创意产业论——人类一种新型的产业发展模式》理论指导下集合中国各方优势资源的背景下嫁接而成。“什韵”一词是马志刚教授亲自命名。“什”表示世界千姿百态的客观事物,“韵”表示事物的灵魂,“什韵”的涵义就是指用智慧挖掘事物的灵魂并将其传扬。
“什韵创意”以中国最高级别活动的创意、执行和国家礼品的创意设计、推广(所有礼品...</div>
</div>

<div class="guang"><a href=""><img src="/d/file/qitaxinxiguanli/2015-08-13/a2dbf4eb5f9fd7ff580d5cae4560b3c2.jpg" width="1000"></a></div>

<div class="c3">
  <div class="c31"><h3>什韵案例</h3><p>|</p><span>Shenyun Cases</span><a href="/case"><img src="images/c11.jpg" width="56" height="18"></a></div>
  <ul>
    <li class=""><a href="/case/xiangmuguihua/29.html" title="东方姚记——中国智力文化园"><img src="/d/file/case/xiangmuguihua/2015-08-13/1d461781159a039d8cccee48187f2923.jpg" width="188" height="113"></a><span><a href="/case/xiangmuguihua/29.html" title="东方姚记——中国智力文化园">东方姚记——中国智力文化园</a></span></li>
    <li class=""><a href="/case/xiangmuguihua/28.html" title="各类战略报告书"><img src="/d/file/case/xiangmuguihua/2015-08-13/20b10c37b77cbb2ae1f03f25c7f62796.jpg" width="188" height="113"></a><span><a href="/case/xiangmuguihua/28.html" title="各类战略报告书">各类战略报告书</a></span></li>
    <li class=""><a href="/case/xiangmuguihua/26.html" title="海立方中国文化艺术创意城"><img src="/d/file/case/xiangmuguihua/2015-08-13/047319aa448fa69d81bf100d0ba9420b.jpg" width="188" height="113"></a><span><a href="/case/xiangmuguihua/26.html" title="海立方中国文化艺术创意城">海立方中国文化艺术创意城</a></span></li>
    <li class=""><a href="/case/xiangmuguihua/25.html" title="恒源祥奥运战略报告书"><img src="/d/file/case/xiangmuguihua/2015-08-13/3dc24dbd5e8e0c2f788e90e689722762.jpg" width="188" height="113"></a><span><a href="/case/xiangmuguihua/25.html" title="恒源祥奥运战略报告书">恒源祥奥运战略报告书</a></span></li>
    <li class="hou"><a href="/case/lipinkaifa/23.html" title="十二生肖礼品开发"><img src="/d/file/case/lipinkaifa/2015-08-13/26926c0b82f52db21588cba5ba9e1822.jpg" width="188" height="113"></a><span><a href="/case/lipinkaifa/23.html" title="十二生肖礼品开发">十二生肖礼品开发</a></span></li>
      </ul>
</div>


<div class="guang">
<ul>
 <li><a href="http://www.maesd.org.cn"><img src="/d/file/qitaxinxiguanli/2022-03-24/a503250d1fc1fc88872a7a3d38c6729e.jpg" width="315" height="90"></a></li>
  <li><a href="http://www.nmgnyxxw.com/"><img src="/d/file/qitaxinxiguanli/2015-08-13/75ac89116a290d4981bf64aa1d5d9dc8.jpg" width="315" height="90"></a></li>
  <li class="hou"><a href="http://www.ciftis.org"><img src="/d/file/qitaxinxiguanli/2015-08-13/e83726ac6755e9452b68f60f39560cc2.jpg" width="315" height="90"></a></li>
</ul>
</div>


<div class="c4">
  <div class="c41"><h3>礼品展示</h3><p>|</p><span>Gift Show</span><a href="/product"><img src="images/c11.jpg" width="56" height="18"></a></div>
  <div class="c42">
    <ul class="scrollUl">
								<li class="sd01" id="m001">十二生肖系列</li>
				<li class="sd02" id="m002">礼品套装</li>
				<li class="sd02" id="m003">节日礼品</li>
				<li class="sd02" id="m004">商务礼品</li>
	</ul>
  </div>
  
      <div class="bor03 cont5">

				<div id="c001" class="">
					<ul class="c43">

                      <li class=""><a href="/product/shiershengxiaoxilie/xiaolei1/32.html" title="丝巾-生肖系列‘丑牛’"><img src="/d/file/product/shiershengxiaoxilie/xiaolei1/2022-03-24/dee1af6cf85f56ff970d74587d2faceb.jpg" width="186" height="140"></a><span><a href="/product/shiershengxiaoxilie/xiaolei1/32.html" title="丝巾-生肖系列‘丑牛’">丝巾-生肖系列‘丑牛</a></span><p>售价¥699.00</p></li>

                      <li class=""><a href="/product/shiershengxiaoxilie/xiaolei1/31.html" title="丝巾-生肖系列‘子鼠’"><img src="/d/file/product/shiershengxiaoxilie/xiaolei1/2022-03-24/50296f22811616d67fcc99ccd79e4dcb.jpg" width="186" height="140"></a><span><a href="/product/shiershengxiaoxilie/xiaolei1/31.html" title="丝巾-生肖系列‘子鼠’">丝巾-生肖系列‘子鼠</a></span><p>售价¥699.00</p></li>

                      <li class=""><a href="/product/shiershengxiaoxilie/xiaolei1/30.html" title="丝巾-生肖系列‘亥猪’"><img src="/d/file/product/shiershengxiaoxilie/xiaolei1/2022-03-24/8a45d62cc17f4551e2c32ba73916cfae.jpg" width="186" height="140"></a><span><a href="/product/shiershengxiaoxilie/xiaolei1/30.html" title="丝巾-生肖系列‘亥猪’">丝巾-生肖系列‘亥猪</a></span><p>售价¥699.00</p></li>

                      <li class=""><a href="/product/shiershengxiaoxilie/xiaolei1/29.html" title="丝巾-生肖系列‘戌狗’"><img src="/d/file/product/shiershengxiaoxilie/xiaolei1/2022-03-24/a7aec11569e66a1dd42f9fc410530039.jpg" width="186" height="140"></a><span><a href="/product/shiershengxiaoxilie/xiaolei1/29.html" title="丝巾-生肖系列‘戌狗’">丝巾-生肖系列‘戌狗</a></span><p>售价¥699.00</p></li>

                      <li class="hou"><a href="/product/shiershengxiaoxilie/xiaolei1/28.html" title="国泰有吉"><img src="/d/file/product/shiershengxiaoxilie/xiaolei1/2022-03-24/0236849800508f5ef07204decd6be24c.jpg" width="186" height="140"></a><span><a href="/product/shiershengxiaoxilie/xiaolei1/28.html" title="国泰有吉">国泰有吉</a></span><p>售价¥699.00</p></li>
 
                    </ul>
				</div>
				<div id="c002" class="hidden">
					<ul class="c43">
 
                    </ul>
				</div>
				<div id="c003" class="hidden">
					<ul class="c43">
 
                    </ul>
				</div>
				<div id="c004" class="hidden">
					<ul class="c43">
 
                    </ul>
				</div>
								
  </div>
  
</div>





 <div class="footer">
 
  <div class="f1">
    <dl>
      <dt><a href="/about">关于什韵</a></dt>
      <dd><a href="/about/1.html">公司简介</a></dd>
      <dd><a href="/about/2.html">发展历程</a></dd>
      <dd><a href="/about/3.html">组织流程</a></dd>
      <dd><a href="/about/4.html">公司愿景</a></dd>
    </dl>
    <dl>
      <dt><a href="/yewu">核心业务</a></dt>
      <dd><a href="/yewu/5.html">核心业务介绍</a></dd>
     
    </dl>
    <dl>
      <dt><a href="/youshi">公司优势</a></dt>
         <dd><a href="/youshi/7.html">公司资源</a></dd>
      <dd><a href="/youshi/8.html">公司政策</a></dd>
      <dd><a href="/youshi/9.html">公司人脉</a></dd>
     
    </dl>
    <dl>
      <dt><a href="/product">礼品展示</a></dt>
      <dd><a href="/product">产品系列</a></dd>
      <dd><a href="/dingzhi">定制专区</a></dd>
      <dd><a href="/waishang">外商平台</a></dd>
         </dl>
    <dl>
      <dt><a href="/news">新闻视点</a></dt>
      <dd><a href="/news/gongsidongtai">公司动态</a></dd>
      <dd><a href="/news/xingyedongtai">行业动态</a></dd>
      <dd><a href="/news/gongshigonggao">公示公告</a></dd>
 
      
    </dl>
    <style type="text/css">


#divselect{width:170px;  position:relative; z-index:10000; float:left; display:inline;}
#divselect cite{width:170px; height:27px;line-height:27px; color:#666666; cursor:pointer;font-style:normal; font-size:14px; font-family:"微软雅黑"; float:left; display:inline;  padding-left:30px;}
#divselect ul{width:150px;border:1px solid #666; background-color:#ffffff; position:absolute; z-index:20000; margin-top:25px; margin-left:9px; display:none;}
#divselect ul li{height:24px; line-height:24px;}
#divselect ul li a{display:block; height:24px; color:#666666; text-decoration:none;font-size:14px; font-family:"微软雅黑"; padding-left:20px; font-style:normal;}
#divselect ul li a:hover{background-color:#F5F5F5;}

#n{margin:10px auto; width:920px; border:1px solid #f1f1f1;font-size:12px; line-height:30px;}
#n a{ padding:0 4px; color:#333}
</style>

<script type="text/javascript" src="/js/divselect.js"></script>
<script type="text/javascript">
$(function(){
	$.divselect("#divselect","#inputselect");
	
});
</script>
    <div class="f11">
        <div class="f111">
           <form action="" method="post">
<div id="divselect">
      <cite>友情链接</cite>
      <ul>
          <li><a href="http://www.maesd.org.cn/" selectid="1" target="_blank">内蒙古农经研究院</a></li>
         <li><a href="http://www.nmgnyxxw.com/" selectid="2" target="_blank">内蒙古农业信息平台</a></li>
         
      </ul>
  </div>
  <input name="" type="hidden" value="" id="inputselect"/>

 
</form>
        </div>
        <div class="f112"><img src="/d/file/qitaxinxiguanli/2015-07-03/1e668dd1a4df2bb583e8c14012aa2a9b.jpg" width="190" height="80"></div>
        <div class="f113"><img src="/d/file/qitaxinxiguanli/2015-07-03/9fece28771dff615080bb76f44e5c869.jpg" width="190" height="63"></div>
    </div>
    
    
  </div>
  
  
  <div class="f2">版权所有 20015-2025(C) 什韵创意 保留所有权利  备案号:<a style="color:#aaaaaa"  href="https://beian.miit.gov.cn/">京ICP备15035930号-1</a>  技术支持:<a style="color:#aaaaaa"  href="http://www.bj686.com">博昊天成</a>  <script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1257009862'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1257009862%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script></div>
 
</div>





<div class="clear"></div>
</div>


</BODY></HTML>                               

Whois info of domain

Domain Name: BRCCD.COM
Registry Domain ID: 1862093316_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2024-05-15T07:20:43Z
Creation Date: 2014-06-09T07:00:13Z
Registry Expiry Date: 2029-06-09T07:00:13Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS13.HICHINA.COM
Name Server: DNS14.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-12T17:07:35Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass