poronovideos人初重口_黑人粗大a片在线观看_美女末成年视频黄是免费网址_另类maturetube富婆

市場價:元價格:元

  • 中文名稱:六甲基二硅氮烷
  • CAS RN:999-97-3
  • EINECS號:213-668-5
  • 分 子 式:C6H19NSi2
  • 分 子 量:161.39
  • 分子式:
【外觀性質(zhì)】

無色、透明、易流動液體。
【溶解性】

溶于多數(shù)有機溶劑。
【熔點?】

-78 °C
【沸點?】

125?°C(lit.)
【密度?】

0.774?g/mL?at 25?°C(lit.)
【折射率?】

n20/D?1.407(lit.)
【閃點?】

57.2?°F
【儲存條件?】

2-8°C
【水溶解性?】

REACTS
【敏感性?】

Moisture Sensitive
【Merck?】

14,4689
【BRN?】

635752
【存儲注意事項】

氮氣保護;濕度敏感

【用途一】

特種有機合成。阿米卡星、盤尼西林、頭孢霉素、氟尿嘧啶及各種青霉素衍生物等合成過程中的甲硅烷基化。硅藻土、白炭黑、鈦等粉末的表面處理。半導體工業(yè)中光致刻蝕劑的粘結(jié)助劑。
【用途二】

為阿米卡星藥用中間體,是羥基及氨基保護劑
【用途三】

用于生產(chǎn)橡膠、藥物。該品是消減氣相色譜載體表面吸附活的減尾劑。
【用途四】

堿性硅烷化保護劑,無機填料處理劑
安全數(shù)據(jù) 回目錄
【危險品標志?】

F,C
【危險類別碼?】

R11-R20/21/22-R34
【安全說明?】

S16-S26-S36/37/39-S45
【危險品運輸編號?】

UN 3286 3/PG 2
【W(wǎng)GK Germany?】

2
【RTECS?】

JM9230000
【F?】

21
【Hazard Note?】

Flammable
【TSCA?】

Yes
【危險等級】

3
【包裝類別】

II
【海關(guān)編碼】

29319090
制備方法 回目錄
【方法一】

將109g(1.0mol)三甲基氯硅烷溶于500ml無水乙醚,通入氨氣,立即出現(xiàn)白色沉淀。加熱至回流,慢慢通氨維持6h,使氯化銨沉降、過濾,取乙醚溶液先蒸出乙醚,再蒸出六甲基二硅氨烷,得52.5g,收率65%。



回目錄

999-97-3(安全特性,毒性,儲運) 回目錄
【儲運特性】

庫房通風低溫干燥; 與氧化劑、酸類分開存放
【毒性分級】

中毒
【急性毒性】

口服- 大鼠 LD50: 850 毫克/ 公斤; 口服- 小鼠 LDL0: 850 毫克/ 公斤
【可燃性危險特性】

遇明火、高溫、氧化劑易燃; 遇水分解有毒硅化物氣體; 燃燒產(chǎn)生有毒氮氧化物煙霧
【類別】

易燃液體
【滅火劑】

干粉、干砂、二氧化碳、泡沫、1211滅火劑

上一個:六甲基二硅氧烷
下一個:
網(wǎng)站首頁 / 公司簡介 / 產(chǎn)品中心 / 新聞動態(tài) / 在線留言 / 聯(lián)系我們
有機硅銷售:
  • 內(nèi)銷電話:86-0559-2346805 18055913262
  • E-mail:hsuzihang@163.com
  • 外銷電話:86-0559-2346805 18055913262



關(guān)

Copyright yourname allrights reserved <a ><font color="#fff">皖ICP備19001001號-1 </font></a> <span>技術(shù)支持:<a target="_blank">久鑫網(wǎng)絡</a></span> </div> </div> </div> <script type="text/javascript" src="js/swiper.min.js"></script> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> var mySwiper = new Swiper('#swiper-container', { autoplay: { delay:5000,//1秒切換一次 }, loop:true, pagination: { el: '.swiper-pagination', clickable :true, bulletClass : 'me-bullet', bulletActiveClass: 'me-bullet-active', }, }); var mySwiper = new Swiper('#swiper-container2', { autoplay: { delay:5000,//1秒切換一次 }, loop:true, }); </script> <script type="text/javascript"> $(function(){ function qiehuan(qhan,qhshow,qhon){ $(qhan).click(function(){ $(qhan).removeClass(qhon); $(this).addClass(qhon); var i = $(this).index(qhan); $(qhshow).eq(i).show().siblings(qhshow).hide(); }); } var Marquee = function(ul){ //每次移動的個數(shù) var moveNum = $(ul).attr('moveNum') || 1; //單個元素移動的長度 var w = $(ul).find('li').outerWidth(true); var changeLi = function(dir){ for(var i=0;i<moveNum;i++){ if(dir == 'r'){ $(ul).find('li:first').appendTo($(ul)); }else{ $(ul).find('li:last').prependTo($(ul)); } } } var move = function(dir){ var _left = 0; if(dir == 'r'){ _left = - moveNum * w ; }else{ changeLi(dir); _left = moveNum * w ; $(ul).css('left',-_left); _left = 0; } $(ul).animate({left:_left},500,function(){ if(dir == 'r'){ changeLi(dir); } $(ul).css('left','0px'); }); //$('ul').css('left','0px'); } var timeout = null; return { //自動滾動 autoRun : function(){ timeout = window.setInterval(function(){move('r')},4000); }, next : function(){ this.stop(); move('r'); this.autoRun(); }, pre : function(){ this.stop(); move('l'); this.autoRun(); }, stop : function(){ window.clearTimeout(timeout); } } }; //需要修改的調(diào)用的樣式 var marquee_list = new Marquee($('.indextxt4 ul').get(0)); marquee_list.autoRun(); $(".txt4right").click(function(){ marquee_list.pre(); }) $(".txt4left").click(function(){ marquee_list.next(); }) }); </script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.aiderfinancials.com/" title="poronovideos人初重口_黑人粗大a片在线观看_美女末成年视频黄是免费网址_另类maturetube富婆">poronovideos人初重口_黑人粗大a片在线观看_美女末成年视频黄是免费网址_另类maturetube富婆</a> <div class="friend-links"> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="tocin" class="pl_css_ganrao" style="display: none;"><thead id="tocin"><video id="tocin"><samp id="tocin"></samp></video></thead><dd id="tocin"></dd><legend id="tocin"></legend><style id="tocin"></style><sup id="tocin"><form id="tocin"></form></sup><tfoot id="tocin"><legend id="tocin"></legend></tfoot><b id="tocin"><progress id="tocin"><nav id="tocin"><kbd id="tocin"></kbd></nav></progress></b><optgroup id="tocin"><button id="tocin"></button></optgroup><center id="tocin"></center><nav id="tocin"></nav><delect id="tocin"><cite id="tocin"></cite></delect><em id="tocin"><menuitem id="tocin"></menuitem></em><dd id="tocin"><ol id="tocin"><optgroup id="tocin"></optgroup></ol></dd><s id="tocin"></s><label id="tocin"><acronym id="tocin"></acronym></label><object id="tocin"></object><acronym id="tocin"></acronym><dl id="tocin"></dl><optgroup id="tocin"></optgroup><span id="tocin"><pre id="tocin"><center id="tocin"><input id="tocin"></input></center></pre></span><strong id="tocin"><mark id="tocin"><wbr id="tocin"></wbr></mark></strong><strong id="tocin"></strong><u id="tocin"></u><strong id="tocin"></strong><table id="tocin"></table><fieldset id="tocin"></fieldset><center id="tocin"></center><small id="tocin"></small><strong id="tocin"><tt id="tocin"></tt></strong><kbd id="tocin"></kbd><small id="tocin"></small><noframes id="tocin"></noframes><cite id="tocin"></cite><option id="tocin"></option><ol id="tocin"><em id="tocin"></em></ol><center id="tocin"></center><dl id="tocin"><acronym id="tocin"></acronym></dl><span id="tocin"></span><optgroup id="tocin"><mark id="tocin"><strong id="tocin"><abbr id="tocin"></abbr></strong></mark></optgroup><dfn id="tocin"><noscript id="tocin"></noscript></dfn><center id="tocin"><label id="tocin"><strong id="tocin"></strong></label></center><label id="tocin"></label><dl id="tocin"></dl><xmp id="tocin"></xmp><big id="tocin"><track id="tocin"><sub id="tocin"><strong id="tocin"></strong></sub></track></big><legend id="tocin"><menuitem id="tocin"><ol id="tocin"></ol></menuitem></legend><dd id="tocin"></dd><noscript id="tocin"><address id="tocin"></address></noscript><em id="tocin"><p id="tocin"><option id="tocin"><wbr id="tocin"></wbr></option></p></em><nobr id="tocin"><address id="tocin"></address></nobr></div> </html>