Advertisement
rbyrs

i found the sexbot you were looking for

Dec 1st, 2018
1,917
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5.  
  6. i found the sexbot you were looking for theme by ruby ##
  7. dont remove credit it makes my dick flop :(
  8.  
  9. base by animecharacter
  10. searchbar by route01
  11.  
  12. ----->
  13.  
  14. {block:ifcursorhearts}
  15. <script type="text/javascript">
  16. // <![CDATA[
  17. var colours=new Array('#f00', '#f06', '#f0f', '#f6f', '#f39', '#f9c'); // colours of the hearts
  18. var minisize=16; // smallest size of hearts in pixels
  19. var maxisize=28; // biggest size of hearts in pixels
  20. var hearts=66; // maximum number of hearts on screen
  21. var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
  22.  
  23. /*****************************
  24. *JavaScript Love Heart Cursor*
  25. * (c)2013+ mf2fm web-design *
  26. * http://www.mf2fm.com/rv *
  27. * DON'T EDIT BELOW THIS BOX *
  28. *****************************/
  29. var x=ox=400;
  30. var y=oy=300;
  31. var swide=800;
  32. var shigh=600;
  33. var sleft=sdown=0;
  34. var herz=new Array();
  35. var herzx=new Array();
  36. var herzy=new Array();
  37. var herzs=new Array();
  38. var kiss=false;
  39.  
  40. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  41. var oldonload=window.onload;
  42. if (typeof(oldonload)!='function') window.onload=funky;
  43. else window.onload=function() {
  44. if (oldonload) oldonload();
  45. funky();
  46. }
  47. }
  48.  
  49. addRVLoadEvent(mwah);
  50.  
  51. function mwah() { if (document.getElementById) {
  52. var i, heart;
  53. for (i=0; i<hearts; i++) {
  54. heart=createDiv("auto", "auto");
  55. heart.style.visibility="hidden";
  56. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  57. heart.style.color=colours[i%colours.length];
  58. heart.style.pointerEvents="none";
  59. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  60. else heart.style.opacity=0.75;
  61. heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
  62. document.body.appendChild(heart);
  63. herz[i]=heart;
  64. herzy[i]=false;
  65. }
  66. set_scroll();
  67. set_width();
  68. herzle();
  69. }}
  70.  
  71. function herzle() {
  72. var c;
  73. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  74. ox=x;
  75. oy=y;
  76. for (c=0; c<hearts; c++) if (herzy[c]===false) {
  77. herz[c].firstChild.nodeValue=String.fromCharCode(9829);
  78. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  79. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  80. herz[c].style.fontSize=minisize+"px";
  81. herz[c].style.fontWeight='normal';
  82. herz[c].style.visibility='visible';
  83. herzs[c]=minisize;
  84. break;
  85. }
  86. }
  87. for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  88. setTimeout("herzle()", 40);
  89. }
  90.  
  91. document.onmousedown=pucker;
  92. document.onmouseup=function(){clearTimeout(kiss);};
  93.  
  94. function pucker() {
  95. ox=-1;
  96. oy=-1;
  97. kiss=setTimeout('pucker()', 100);
  98. }
  99.  
  100. function blow_me_a_kiss(i) {
  101. herzy[i]-=herzs[i]/minisize+i%2;
  102. herzx[i]+=(i%5-2)/5;
  103. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  104. herz[i].style.visibility="hidden";
  105. herzy[i]=false;
  106. }
  107. else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
  108. else {
  109. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  110. herz[i].style.top=herzy[i]+"px";
  111. herz[i].style.left=herzx[i]+"px";
  112. }
  113. }
  114.  
  115. function break_my_heart(i) {
  116. var t;
  117. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  118. herz[i].style.fontWeight='bold';
  119. herzy[i]=false;
  120. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  121. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  122. }
  123.  
  124. document.onmousemove=mouse;
  125. function mouse(e) {
  126. if (e) {
  127. y=e.pageY;
  128. x=e.pageX;
  129. }
  130. else {
  131. set_scroll();
  132. y=event.y+sdown;
  133. x=event.x+sleft;
  134. }
  135. }
  136.  
  137. window.onresize=set_width;
  138. function set_width() {
  139. var sw_min=999999;
  140. var sh_min=999999;
  141. if (document.documentElement && document.documentElement.clientWidth) {
  142. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  143. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  144. }
  145. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  146. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  147. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  148. }
  149. if (document.body.clientWidth) {
  150. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  151. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  152. }
  153. if (sw_min==999999 || sh_min==999999) {
  154. sw_min=800;
  155. sh_min=600;
  156. }
  157. swide=sw_min;
  158. shigh=sh_min;
  159. }
  160.  
  161. window.onscroll=set_scroll;
  162. function set_scroll() {
  163. if (typeof(self.pageYOffset)=='number') {
  164. sdown=self.pageYOffset;
  165. sleft=self.pageXOffset;
  166. }
  167. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  168. sdown=document.body.scrollTop;
  169. sleft=document.body.scrollLeft;
  170. }
  171. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  172. sleft=document.documentElement.scrollLeft;
  173. sdown=document.documentElement.scrollTop;
  174. }
  175. else {
  176. sdown=0;
  177. sleft=0;
  178. }
  179. }
  180.  
  181. function createDiv(height, width) {
  182. var div=document.createElement("div");
  183. div.style.position="absolute";
  184. div.style.height=height;
  185. div.style.width=width;
  186. div.style.overflow="hidden";
  187. div.style.backgroundColor="transparent";
  188. return (div);
  189. }
  190. // ]]>
  191. </script>
  192. {/block:ifcursorhearts}
  193.  
  194.  
  195. <meta charset="utf-8">
  196. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  197. {block:Description}
  198. <meta name="description" content="{MetaDescription}"/>
  199. {/block:Description}
  200.  
  201. <title>{Title}</title>
  202.  
  203. <meta name="image:bg" content="">
  204. <meta name="image:sidebar icon" content="">
  205. <meta name="image:side img" content="">
  206. <meta name="image:pixel 1" content="">
  207. <meta name="image:pixel 2" content="">
  208. <meta name="image:pixel 3" content="">
  209. <meta name="image:pixel 4" content="">
  210. <meta name="image:pixel 5" content="">
  211. <meta name="image:pixel 6" content="">
  212. <meta name="image:pixel 7" content="">
  213.  
  214. <meta name="color:bg" content="#fff">
  215. <meta name="color:text"content="#000">
  216. <meta name="color:links" content="#000">
  217. <meta name="color:link border" content="#000">
  218. <meta name="color:posts" content="#fff">
  219. <meta name="color:search border" content="#000">
  220. <meta name="color:borders" content="#000">
  221.  
  222. <meta name="select:bg" content="cover">
  223. <meta name="select:bg" content="repeat">
  224. <meta name="select:borders" content="solid">
  225. <meta name="select:borders" content="dotted">
  226. <meta name="select:borders" content="dashed">
  227. <meta name="select:borders" content="double">
  228. <meta name="select:borders" content="ridge">
  229.  
  230. <meta name="if:description" content="">
  231. <meta name="if:caption" content="">
  232. <meta name="if:pixel 1" content="">
  233. <meta name="if:pixel 2" content="">
  234. <meta name="if:pixel 3" content="">
  235. <meta name="if:pixel 4" content="">
  236. <meta name="if:pixel 5" content="">
  237. <meta name="if:pixel 6" content="">
  238. <meta name="if:pixel 7" content="">
  239. <meta name="if:borders" content="">
  240. <meta name="if:cursor hearts" content="">
  241. <meta name="if:round sidebar img" content="">
  242. <meta name="if:circle sidebar img" content="">
  243. <meta name="if:underlined links" content="">
  244. <meta name="if:bold links" content="">
  245. <meta name="if:italicized links" content="">
  246. <meta name="if:link outline" content="">
  247. <meta name="if:searchbar" content="">
  248.  
  249. <meta name="text:border width" content="">
  250. <meta name="text:font family" content="">
  251. <meta name="text:font size" content="">
  252. <meta name="text:sidebar hover text" content="">
  253. <meta name="text:side img margin right" content="" />
  254. <meta name="text:side img margin top" content="" />
  255. <meta name="text:side img width" content="" />
  256.  
  257. <link rel="shortcut icon" href="{Favicon}">
  258. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  259. <link rel="stylesheet" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  260.  
  261. <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  262.  
  263. <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville|Short+Stack" rel="stylesheet">
  264.  
  265. <style type="text/css">
  266.  
  267.  
  268.  
  269. /*
  270. general text styles, fonts and colours
  271. */
  272.  
  273. body {
  274. margin:0px;
  275. background: fixed {color:bg} url('{image:bg}');
  276. background-size:{select:bg};
  277. font-family: {text:font family};
  278. font-size:{text:font size}px;
  279. line-height:normal;
  280. color: {color:text};
  281. }
  282.  
  283. p{
  284. margin:0 0 10px 0;
  285. padding:0;
  286. }
  287.  
  288. pre {
  289. white-space: pre-wrap;
  290. white-space: -moz-pre-wrap;
  291. white-space: -pre-wrap;
  292. white-space: -o-pre-wrap;
  293. word-wrap: break-word;
  294. }
  295.  
  296. a{
  297. color:{color:links};
  298. {block:ifunderlinedlinks}
  299. text-decoration:none;
  300. {/block:ifunderlinedlinks}
  301. {block:ifboldlinks}
  302. font-weight:bold;
  303. {/block:ifboldlinks}
  304. {block:ifitalicizedlinks}
  305. font-style:italic;
  306. {/block:ifitalicizedlinks}
  307. {block:iflinkoutline}
  308. text-shadow: -1px 0 {color:link border}, 0 1px {color:link border}, 1px 0 {color:link border}, 0 -1px {color:link border};
  309. {/block:iflinkoutline}
  310. }
  311.  
  312. a:hover {
  313. font-style:italic;
  314. text-shadow: 0 0 5px {color:link border};
  315. }
  316.  
  317. li{
  318. margin-left:-15px;
  319. }
  320.  
  321. /* width */
  322. ::-webkit-scrollbar {
  323. width: 0px;
  324. }
  325.  
  326. /* Track */
  327. ::-webkit-scrollbar-track {
  328. background: transparent;
  329. }
  330.  
  331. /* Handle */
  332. ::-webkit-scrollbar-thumb {
  333. background: transparent;
  334. }
  335.  
  336. /* Handle on hover */
  337. ::-webkit-scrollbar-thumb:hover {
  338. background: transparent;
  339. }
  340.  
  341. #container {
  342. position:absolute;
  343. background:{color:posts};
  344. width:1100px;
  345. height:600px;
  346. margin-top:-25px;
  347. margin-left:-265px;
  348. overflow:auto;
  349. padding:10px;
  350. border:3px {select:borders} {color:borders};
  351. }
  352.  
  353. /*
  354. containers etc
  355. */
  356. #wrapper{
  357. width:600px;
  358. margin:70px auto;
  359. }
  360.  
  361. #sidebar{
  362. width:275px;
  363. text-align:center;
  364. margin-left:0px;
  365. padding:15px;
  366. position:fixed;
  367. background:{color:posts};
  368. }
  369.  
  370. #sideimg{
  371. margin-left:{text:side img margin right}px;
  372. margin-top:{text:side img margin top}px;
  373. position:fixed;
  374. padding:3px;
  375. overflow:hidden;
  376. }
  377.  
  378.  
  379. .post{
  380. width:400px;
  381. margin-top:20px;
  382. margin-left:320px;
  383. overflow:hidden;
  384. background:{color:posts};
  385. padding:15px;
  386. }
  387.  
  388. .post img{
  389. max-width:400px;
  390. }
  391.  
  392. #sidebar img{
  393. max-width:275px;
  394. {block:ifroundsidebarimg}
  395. border-radius:7px;
  396. {/block:ifroundsidebarimg}
  397. {block:ifcirclesidebarimg}
  398. border-radius:100%;
  399. {/block:ifcirclesidebarimg}
  400. }
  401.  
  402. #title {
  403. width:275px;
  404. padding:10px;
  405. }
  406.  
  407. .search {
  408. width:170px;
  409. padding:7px;
  410. margin-top:10px;
  411. border-radius:4px;
  412. background:{color:bg};
  413. font-size:12px;
  414. color:{color:text};
  415. border:4px double {color:search border};
  416. font-family:ms gothic;
  417. }
  418.  
  419. ::placeholder{
  420. color:{color:text};
  421. }
  422.  
  423. .go {width:46px; height:34px; background:{color:bg};
  424. border-radius:4px;font-size:12px; font-family:{text:font};color:{color:text};
  425.  
  426. border-top:2px solid rgba({RGBcolor:search border}, 0.3);
  427. border-left:2px solid rgba({RGBcolor:search border}, 0.3);
  428. border-bottom:2px solid rgba({RGBcolor:search border}, 1.0);
  429. border-right:2px solid rgba({RGBcolor:search border}, 1.0);
  430. outline:none;font-family:ms gothic;}
  431.  
  432. .go:active{
  433. border-bottom:2px solid rgba({RGBcolor:search border}, 0.3);
  434. border-right:2px solid rgba({RGBcolor:search border}, 0.3);
  435. border-top:2px solid rgba({RGBcolor:search border}, 1.0);
  436. border-left:2px solid rgba({RGBcolor:search border}, 1.0);
  437. outline:none;}
  438.  
  439. .go:hover{
  440. cursor: help;
  441. }
  442.  
  443. #credit{
  444. position:fixed;
  445. bottom:2px;
  446. right:5px;
  447. font-size:20px;
  448. font-weight:bold;
  449.  
  450. #nav{
  451. margin:50px 0 0 0;
  452. }
  453.  
  454.  
  455.  
  456. /*
  457. content in the body of the posts - quotes, asks, etc
  458. "media" contains photos, photosets, videos, audio posts
  459. */
  460. .media{
  461. margin:0 0 10px 0;
  462. }
  463.  
  464. .title{
  465. font-weight:normal;
  466. font-size:18px;
  467. margin:0 0 10px 0;
  468. }
  469.  
  470. .quote{
  471. font-weight:normal;
  472. font-size:16px;
  473. font-style:italic;
  474. margin:0 0 10px 0;
  475. }
  476.  
  477. .question{
  478. margin-bottom:10px;
  479. }
  480.  
  481. .blockquote{
  482. margin:0 0 10px 10px;
  483. padding:0 0 0 10px;
  484. border-left:solid 1px #000;
  485. }
  486.  
  487. /*
  488. post footers - date, tags, via and source
  489. */
  490. .post .footer{
  491. margin:0px;
  492. }
  493.  
  494. /*
  495. post notes
  496. */
  497. ol.notes{
  498. list-style-type:none;
  499. padding:0;
  500. margin:0;
  501. }
  502.  
  503. ol.notes li.note img{
  504. width:16px;
  505. height:16px;
  506. }
  507.  
  508. ol.notes li.note{
  509. margin:0px;
  510. }
  511.  
  512. {CustomCSS}
  513. </style>
  514. </head>
  515.  
  516. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  517.  
  518. <style>
  519. .tooltip{
  520. display: inline;
  521. position: relative;}
  522.  
  523. #s-m-t-tooltip {
  524. text-align:center;
  525. max-width:400px;
  526. padding:3px;
  527. margin:20px;
  528. background-color:{color:posts};
  529. color:{color:text};
  530. font-size:35px;
  531. letter-spacing:1px;
  532. border-radius:0px;
  533. word-wrap:break-word;
  534. z-index:999999999999999999999999999999999999;
  535. }
  536. </style>
  537.  
  538. <body>
  539. <div id="wrapper">
  540. <div id="container">
  541. <div id="sidebar">
  542. <div class="sidebarimg"><a href="/" title="{text:sidebar hover text}"><img src="{image:sidebar icon}"></a></div>
  543.  
  544. {block:ifdescription}
  545. <div class="description">{Description}</div>
  546. {/block:ifdescription}
  547.  
  548. {block:ifpixel1}
  549. <img src="{image:pixel 1}"></a>
  550. {/block:ifpixel1}
  551. {block:ifpixel2}
  552. <img src="{image:pixel 2}"></a>
  553. {/block:ifpixel2}
  554. {block:ifpixel3}
  555. <img src="{image:pixel 3}"></a>
  556. {/block:ifpixel3}
  557. {block:ifpixel4}
  558. <img src="{image:pixel 4}"></a>
  559. {/block:ifpixel4}
  560. {block:ifpixel5}
  561. <img src="{image:pixel 5}"></a>
  562. {/block:ifpixel5}
  563. {block:ifpixel6}
  564. <img src="{image:pixel 6}"></a>
  565. {/block:ifpixel6}
  566. {block:ifpixel7}
  567. <img src="{image:pixel 7}"></a>
  568. {/block:ifpixel7}
  569.  
  570. {block:ifsearchbar}
  571. <form action="/search" method="get">
  572. <input class="search" type="text" placeholder="{lang:Search}..." name="q" value="" style="outline:none;">
  573. <input class="go" type="submit" value="GO!" id="sb"/>
  574. </form>
  575. {/block:ifsearchbar}
  576.  
  577. {block:Pagination}
  578. <div id="nav">
  579. {block:PreviousPage}<a href="{PreviousPage}">⮄</a>{/block:PreviousPage}
  580.  
  581. {block:NextPage}<a href="{NextPage}">⮆</a>{/block:NextPage}
  582. </div>
  583. {/block:Pagination}
  584.  
  585.  
  586. </div>
  587.  
  588. <div id="content">
  589. {block:Posts}
  590.  
  591. <div class="post">
  592.  
  593. {block:Text}
  594. {block:Title}
  595. <div class="title">{Title}</div>
  596. {/block:Title}
  597. {Body}
  598. {/block:Text}
  599.  
  600. {block:Photo}
  601. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  602. {block:Caption}{block:ifcaption}<div class="caption">{Caption}</div>{/block:ifcaption}{/block:Caption}
  603. {/block:Photo}
  604.  
  605. {block:Photoset}
  606. <div class="media">{Photoset-400}</div>
  607. {block:Caption}{block:ifcaption}<div class="caption">{Caption}</div>{/block:ifcaption}{/block:Caption}
  608. {/block:Photoset}
  609.  
  610. {block:Quote}
  611. <div class="quote">"{Quote}"</div>
  612. {block:Source}
  613. <div class="quotesource">{Source}</div>
  614. {/block:Source}
  615. {/block:Quote}
  616.  
  617. {block:Link}
  618. <div class="title"><a href="{URL}">{Name}</a></div>
  619. {block:Description}
  620. <div class="description">{MetaDescription}</div>
  621. {/block:Description}
  622. {/block:Link}
  623.  
  624. {block:Chat}
  625. {block:Title}
  626. <div class="title">{Title}</div>
  627. {/block:Title}
  628.  
  629. {block:Lines}
  630. <div class="{Alt} user_{UserNumber}">
  631. {block:Label}
  632. <b>{Label}</b>{/block:Label}
  633. &nbsp;{Line}
  634. </div>
  635. {/block:Lines}
  636. {/block:Chat}
  637.  
  638. {block:Video}
  639. <div class="media">{Video-400}</div>
  640. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  641. {/block:Video}
  642.  
  643. {block:Audio}
  644. <div class="media">
  645. {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
  646. {AudioPlayerWhite}
  647. {block:TrackName}{TrackName}<br>{/block:TrackName}
  648. {block:Artist}{Artist}<br>{/block:Artist}
  649. {block:Album}{Album}{/block:Album}
  650. </div>
  651. {block:Caption}{Caption}{/block:Caption}
  652. {/block:Audio}
  653.  
  654. {block:Answer}
  655. <div class="question">{Asker}: {Question}</div>
  656. <div class="caption">{Answer}</div>
  657. {/block:Answer}
  658.  
  659.  
  660. {block:Date}
  661. <div class="footer">
  662. <a href="{Permalink}">{TimeAgo}{block:NoteCount}</a> ☆ <a href="{Permalink}">{NoteCountWithLabel}{/block:NoteCount}</a>
  663. {block:HasTags}<br>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  664. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  665. {block:ContentSource}<br>src: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource}
  666. </div>
  667.  
  668. {block:PermalinkPage}
  669. {block:NoteCount}
  670. {block:PostNotes}{PostNotes}{/block:PostNotes}
  671. {/block:NoteCount}
  672. {/block:PermalinkPage}
  673. {/block:Date}
  674.  
  675. </div>
  676. {/block:Posts}
  677.  
  678. </div>
  679. </div>
  680. </div>
  681. </div>
  682.  
  683. <div id="sideimg">
  684. <img src="{image:side img}" style="width:{text:side img width}px;">
  685. </div>
  686.  
  687. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  688. <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  689.  
  690. <div id="credit"><a href="http://ruby.info.gf">x</a></div>
  691.  
  692. </body>
  693. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement