
贴子水印插件2.1 for phpwind 2.02发布(2004.12.25修改)
踩踩 13作者:alex 发表日期:2004-12-23 复制链接 收藏
2004.12.25 修改过,请大家重新安装一下,大家最好根据压缩包里的安装说明.txt来修改
2004.12.21
修改,使其适用于2.02版本
2004.8.7 新增功能(修补)
1.修补设定变量设置,暂时只能设定{db_bbsname}论坛名称和{db_authorname}作者名称
2.修补水印长度及随机串显示bug
Copy code
[/code]2004.8.7 修改文件/eis","phpcode('\1')",$message);
bbscode.php
read.php
admin/watermark.php
template/admin/watermark.htm
1.后台设置用户浏览加水印及版块加水印功能。
2.可以设定水印文字和水印长度 。
请把[ code][ /code]中的空格去掉
/*********************************************************************/
/* */
/* PHPWIND1.3.6 帖子水印插件 Version 2.0 */
/* */
/* 程序开发: Alex(萧风) */
/* 版权所有: 萧风驿站(mysunland.com) */
/* 联系电邮: [email]hjunw@hotmail.com[/email] */
/* 技术支持: [url]http://www.sms55.cn/reg.htmmysunland.com[/url] [url]http://www.sms55.cn/reg.htmwww.phpwind.net[/url] */
/* 使用声明: 此乃为PHPWIND系统所开发的贴子水印插件,欢迎使用。 */
/* 如需修改或作商业用途,必须先经版权持有人准许。 */
/* */
/*********************************************************************/
安装步骤:
1。上传template,hack,data文件夹内文件到服务器相关目录
2。上传后请将 文件夹 data/config 及文件 data/config/watermark_config.php 的属性改为 666 或 777
3.修改./require/bbscode.php
(如果不想修改,请把附件内的bbscode.php上传到论坛目录下的require目录下覆盖原来的(注意备份))
查找:
[code] if(strpos($message,"[ code]") !== false && strpos($message,"[ /code]") !== false){
$message=preg_replace("/[code](.+?)
}[/code]
在其后插入:
Copy code
//帖子水印代码
if (strpos($message,"[watermark]")!==false && strpos($message,"[ /watermark]")!==false){
$message = preg_replace("/s*[watermark](.+?)[/watermark]s*/ies", "watermark('\1')", $message);
}
//帖子水印代码结束
查找:
Copy code
function phpcode($code){
global $code_num,$code_htm;
在其后加入:
Copy code
//帖子水印代码
$code=str_replace("[watermark]","",$code);
$code=str_replace("[/watermark]","",$code);
//结束帖子水印代码
在文章的最后("?>"之前)加入
Copy code
//帖子水印代码(函数)
function watermark($code) {
global $tpc_author,$read,$db_bbsname,$readcolorone,$readcolortwo,$watermark_content,$watermark_length;
$code = str_replace("\"", """, preg_replace("/^[
]*(.+?)[
]*$/is", "\1", $code));
if(!$read["colour"]) $postcolor= $readcolortwo;
else $postcolor=$read["colour"];
$pieces = explode('<br>', nl2br($code));
unset ($code);
$newmessage="";
foreach ($pieces as $key => $value) {
srand((double)microtime()*100000000); //打乱随机种子
$randtext = rand();
$randnum=$randtext;
$value=str_replace("<br />","",$value);
$randtext=md5($randtext);
$watermark_text=str_replace("{db_bbsname}",$db_bbsname,$watermark_content);
$watermark_text=str_replace("{db_authorname}",$read['author'],$watermark_text);
if($randnum%2==0){
$randtext=substrs($randtext,$watermark_length);
$newmessage .=$value."[color=".$postcolor."]".$randtext.'[/color]<br>';
}
else{
$watermark_show=substrs($watermark_text.$randtext,$watermark_length);
$newmessage .=$value."[color=".$postcolor."]".$watermark_show.'[/color]<br>';
}
//$newmess#000000age.=$value."[color=$postcolor]版权所有";
}
str_replace("<br />","
",$newmessage);
return $newmessage;
}
//帖子水印代码结束
4.修改./read.php文件(这个就没有参考文件了,我的read.php修改太多,就不提供了。)
查找:
Copy code
require_once(R_P.'require/forum.php');
在其后添加:
Copy code
require_once(R_P.'data/config/watermark_config.php');
查找:
Copy code
global $SYSTEM,$groupid,$admincheck,$attach_url,$attachper,$winduid,$tablecolor,$tpc_author,$tpc_buy,$count,$timestamp,$db_onlinetime,$attachpath,$gp_allowloadrvrc,$readcolorone,$readcolortwo,$lpic,$ltitle,$imgpath,$db_ipfrom,$db_showonline,$stylepath,$db_windpost,$db_windpic,$db_signwindcode,$fid,$tid,$pid,$pic_a;
替换为:
Copy code
global $allowed_gid,$disallowed_fid,$SYSTEM,$groupid,$admincheck,$attach_url,$attachper,$winduid,$tablecolor,$tpc_author,$tpc_buy,$count,$timestamp,$db_onlinetime,$attachpath,$gp_allowloadrvrc,$readcolorone,$readcolortwo,$lpic,$ltitle,$imgpath,$db_ipfrom,$db_showonline,$stylepath,$db_windpost,$db_windpic,$db_signwindcode,$fid,$tid,$pid,$pic_a;
查找 :
Copy code
if($read['ifconvert']==2){
//print_r($pic_a);exit;
$read['content']=convert($read['content'],$db_windpost);
}
在其前面添加 :
Copy code
//帖子水印代码
$wm_gidchecked=false;$wm_fidchecked=false;
if(strpos($allowed_gid,",".$groupid.",")!==false)$wm_gidchecked=true;
if(strpos($disallowed_fid,",".$fid.",")!==false)$wm_fidchecked=true;
if($wm_fidchecked && $wm_gidchecked){
$read["content"]="[watermark]".$read["content"]."[/watermark]";
$read['ifconvert']=2;
}
//帖子水印代码结束
安装结束,请到后台设置。(管理员默认可以更改帖子水印插件设置)
5.后台添加新插件。
插件名称:贴子水印
唯一标识符:watermark
前台文件名:留空
后台文件名:watermarkset.php
相关文件:hack/watermarkset.php,hack/watermarkset.htm,data/config/watermark_config.php
是否启用(是否在前台显示):否(注意是否)
OK。安装成功。请在后台设定相关信息。
如在这儿不能正常看到,请看压缩包内相关文件

<a href="http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html" > http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html , sonic hedgehog hentai black girls </a> http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html
<a href="http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html" > http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html , aria strapon fucking men </a> http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html
<a href="http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html" > http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html , free ebony hardcore porn xxx lesbians </a> http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html
<a href="http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html" > http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html , absolutly free xxx cum shots </a> http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html
<a href="http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html" > http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html , shaved testicles teens </a> http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html
<a href="http://www.ensemblegames.com/casino/free-online-casino-poker.html" > http://www.ensemblegames.com/casino/free-online-casino-poker.html , free online casino poker </a> http://www.ensemblegames.com/casino/free-online-casino-poker.html
<a href="http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html" > http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html , free gay chat rooms </a> http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html
<a href="http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html" > http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html , schoolgirl upskirt secretary </a> http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html
<a href="http://www.historea.com/bbw-sex/free-nude-bbw-pic.html" > http://www.historea.com/bbw-sex/free-nude-bbw-pic.html , free nude bbw pic </a> http://www.historea.com/bbw-sex/free-nude-bbw-pic.html
<a href="http://www.cegled.net/keno/keno-cheats-for-pogo.html" > http://www.cegled.net/keno/keno-cheats-for-pogo.html , keno cheats for pogo </a> http://www.cegled.net/keno/keno-cheats-for-pogo.html
<a href="http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html" > http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html , free lesbian dildo cow pussy </a> http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html
<a href="http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html" > http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html , babe guy sucking cock bisexual hardcore sex scene males fucking teen </a> http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html
<a href="http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html" > http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html , gay male dildo fucking </a> http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html
<a href="http://www.see-regen.net/amateur-sex/diapered-teens-sex.html" > http://www.see-regen.net/amateur-sex/diapered-teens-sex.html , diapered teens sex </a> http://www.see-regen.net/amateur-sex/diapered-teens-sex.html
<a href="http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html" > http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html , africa livecam guy </a> http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html
<a href="http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html" > http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html , mega big cocks </a> http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html
<a href="http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html" > http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html , hardcore lesbain asian porn </a> http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html
<a href="http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html" > http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html , hydrocodone 10500 </a> http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html
<a href="http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html" > http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html , gay fisting web sites blogs </a> http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html
IHvCbXLmiAtryjKoE
<a href="http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html" > http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html , sonic hedgehog hentai black girls </a> http://www.historea.com/toons/sonic-hedgehog-hentai-black-girls.html
<a href="http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html" > http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html , aria strapon fucking men </a> http://www.uhrsof.com/dildo/aria-strapon-fucking-men.html
<a href="http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html" > http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html , free ebony hardcore porn xxx lesbians </a> http://www.uhrsof.com/hardcore/free-ebony-hardcore-porn-xxx-lesbians.html
<a href="http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html" > http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html , absolutly free xxx cum shots </a> http://www.historea.com/cumshot-sex/absolutly-free-xxx-cum-shots.html
<a href="http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html" > http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html , shaved testicles teens </a> http://www.stockademuseum.com/shaved-sex/shaved-testicles-teens.html
<a href="http://www.ensemblegames.com/casino/free-online-casino-poker.html" > http://www.ensemblegames.com/casino/free-online-casino-poker.html , free online casino poker </a> http://www.ensemblegames.com/casino/free-online-casino-poker.html
<a href="http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html" > http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html , free gay chat rooms </a> http://www.stjohnsoflattingtown.org/gays-sex/free-gay-chat-rooms.html
<a href="http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html" > http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html , schoolgirl upskirt secretary </a> http://www.see-regen.net/voyeur-sex/schoolgirl-upskirt-secretary.html
<a href="http://www.historea.com/bbw-sex/free-nude-bbw-pic.html" > http://www.historea.com/bbw-sex/free-nude-bbw-pic.html , free nude bbw pic </a> http://www.historea.com/bbw-sex/free-nude-bbw-pic.html
<a href="http://www.cegled.net/keno/keno-cheats-for-pogo.html" > http://www.cegled.net/keno/keno-cheats-for-pogo.html , keno cheats for pogo </a> http://www.cegled.net/keno/keno-cheats-for-pogo.html
<a href="http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html" > http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html , free lesbian dildo cow pussy </a> http://www.see-regen.net/dildo/free-lesbian-dildo-cow-pussy.html
<a href="http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html" > http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html , babe guy sucking cock bisexual hardcore sex scene males fucking teen </a> http://www.historea.com/gays-sex/babe-guy-sucking-cock-bisexual-hardcore-sex-scene-males-fucking-teen.html
<a href="http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html" > http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html , gay male dildo fucking </a> http://www.twinmoonsarchery.org/sex-toys/gay-male-dildo-fucking.html
<a href="http://www.see-regen.net/amateur-sex/diapered-teens-sex.html" > http://www.see-regen.net/amateur-sex/diapered-teens-sex.html , diapered teens sex </a> http://www.see-regen.net/amateur-sex/diapered-teens-sex.html
<a href="http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html" > http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html , africa livecam guy </a> http://www.stjohnsoflattingtown.org/cams/africa-livecam-guy.html
<a href="http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html" > http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html , mega big cocks </a> http://www.stjohnsoflattingtown.org/big-cock/mega-big-cocks.html
<a href="http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html" > http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html , hardcore lesbain asian porn </a> http://www.nsbri.com/hardcore/hardcore-lesbain-asian-porn.html
<a href="http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html" > http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html , hydrocodone 10500 </a> http://www.americajobnet.com/hydrocodone/hydrocodone-10500.html
<a href="http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html" > http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html , gay fisting web sites blogs </a> http://www.stjohnsoflattingtown.org/fisting/gay-fisting-web-sites-blogs.html
IHvCbXLmiAtryjKoE
<a href="http://bestsites.sayt.ws/xxx/beastiality-porn.html">beastiality porn</a> [url=http://bestsites.sayt.ws/xxx/beastiality-porn.html]beastiality porn[/url]
<a href="http://clik.to/incest">incest</a> [url=http://clik.to/incest]incest[/url]
<a href="http://bestsites.sayt.ws/xxx/ass-fucking.html">ass fucking</a> [url=http://bestsites.sayt.ws/xxx/ass-fucking.html]ass fucking[/url]
<a href="http://tramadol.psl.lt/">buy cheap tramadol online</a> [url=http://tramadol.psl.lt/]buy cheap tramadol online[/url]
<a href="http://clik.to/view-tramadol-online">cheap tramadol online</a> [url=http://clik.to/view-tramadol-online]cheap tramadol online[/url]
<a href="http://bestsites.sayt.ws/pharmacy/cheap-carisoprodol.html">cheap carisoprodol</a> [url=http://bestsites.sayt.ws/pharmacy/cheap-carisoprodol.html]cheap carisoprodol[/url]
<a href="http://tramadol.psl.lt/">buy cheap tramadol online</a> [url=http://tramadol.psl.lt/]buy cheap tramadol online[/url]
<a href="http://bestsites.sayt.ws/pharmacy/cheap-carisoprodol.html">cheap carisoprodol</a> [url=http://bestsites.sayt.ws/pharmacy/cheap-carisoprodol.html]cheap carisoprodol[/url]
<a href="http://bestsites.sayt.ws/pharmacy/cheap-tramadol.html">cheap tramadol</a> [url=http://bestsites.sayt.ws/pharmacy/cheap-tramadol.html]cheap tramadol[/url]
<a href="http://bestsites.sayt.ws/xxx/family-taboo.html">family taboo</a> [url=http://bestsites.sayt.ws/xxx/family-taboo.html]family taboo[/url]
<a href="http://wiki.pheno.wisc.edu/pub/Main/SiSi/soma-online.html">soma online</a> [url=http://wiki.pheno.wisc.edu/pub/Main/SiSi/soma-online.html]soma online[/url]
<a href="http://clik.to/pet-meds">Pet meds</a> [url=http://clik.to/pet-meds]Pet meds[/url]
<a href="http://tramadol.psl.lt/">buy cheap tramadol online</a> [url=http://tramadol.psl.lt/]buy cheap tramadol online[/url]
<a href="http://bestsites.sayt.ws/pharmacy/buy-valium.html">buy valium</a> [url=http://bestsites.sayt.ws/pharmacy/buy-valium.html]buy valium[/url]
<a href="http://bestsites.sayt.ws/xxx/lesbian-orgy.html">lesbian orgy</a> [url=http://bestsites.sayt.ws/xxx/lesbian-orgy.html]lesbian orgy[/url]
<a href="http://clik.to/view-tramadol-online">cheap tramadol online</a> [url=http://clik.to/view-tramadol-online]cheap tramadol online[/url]
<a href="http://www.nsbri.com/amateur-sex/amateur-facial-video.html" > http://www.nsbri.com/amateur-sex/amateur-facial-video.html , amateur facial video </a> http://www.nsbri.com/amateur-sex/amateur-facial-video.html
<a href="http://www.twinmoonsarchery.org/asian-sex/japanese-bondage-art.html" > http://www.twinmoonsarchery.org/asian-sex/japanese-bondage-art.html , japanese bondage art </a> http://www.twinmoonsarchery.org/asian-sex/japanese-bondage-art.html
<a href="http://www.uhrsof.com/group-sex/lez-group-sex.html" > http://www.uhrsof.com/group-sex/lez-group-sex.html , lez group sex </a> http://www.uhrsof.com/group-sex/lez-group-sex.html
<a href="http://www.nsbri.com/dildo/teen-model-dildo-lesbian-girls.html" > http://www.nsbri.com/dildo/teen-model-dildo-lesbian-girls.html , teen model dildo lesbian girls </a> http://www.nsbri.com/dildo/teen-model-dildo-lesbian-girls.html
<a href="http://www.uhrsof.com/cumshot-sex/free-cum-shots-ray-guhn.html" > http://www.uhrsof.com/cumshot-sex/free-cum-shots-ray-guhn.html , free cum shots ray guhn </a> http://www.uhrsof.com/cumshot-sex/free-cum-shots-ray-guhn.html
<a href="http://www.see-regen.net/group-sex/free-gangbang-cumshots-sucking-cufiesta-groupsex.html" > http://www.see-regen.net/group-sex/free-gangbang-cumshots-sucking-cufiesta-groupsex.html , free gangbang cumshots sucking cufiesta groupsex </a> http://www.see-regen.net/group-sex/free-gangbang-cumshots-sucking-cufiesta-groupsex.html
<a href="http://www.uhrsof.com/anal-sex/huge-assholes.html" > http://www.uhrsof.com/anal-sex/huge-assholes.html , huge assholes </a> http://www.uhrsof.com/anal-sex/huge-assholes.html
<a href="http://www.twinmoonsarchery.org/asian-sex/asian-porn-erotic-girls.html" > http://www.twinmoonsarchery.org/asian-sex/asian-porn-erotic-girls.html , asian porn erotic girls </a> http://www.twinmoonsarchery.org/asian-sex/asian-porn-erotic-girls.html
<a href="http://www.stjohnsoflattingtown.org/bdsm-sex/socks-fetish.html" > http://www.stjohnsoflattingtown.org/bdsm-sex/socks-fetish.html , socks fetish </a> http://www.stjohnsoflattingtown.org/bdsm-sex/socks-fetish.html
<a href="http://www.see-regen.net/toons/mai-valentine-hentai-dick-girls.html" > http://www.see-regen.net/toons/mai-valentine-hentai-dick-girls.html , mai valentine hentai dick girls </a> http://www.see-regen.net/toons/mai-valentine-hentai-dick-girls.html
<a href="http://www.twinmoonsarchery.org/amateur-sex/adult-amateur-pictures-brent-mindy.html" > http://www.twinmoonsarchery.org/amateur-sex/adult-amateur-pictures-brent-mindy.html , adult amateur pictures brent mindy </a> http://www.twinmoonsarchery.org/amateur-sex/adult-amateur-pictures-brent-mindy.html
<a href="http://www.stockademuseum.com/latina/nasty-latina-teen-pussy.html" > http://www.stockademuseum.com/latina/nasty-latina-teen-pussy.html , nasty latina teen pussy </a> http://www.stockademuseum.com/latina/nasty-latina-teen-pussy.html
<a href="http://www.twinmoonsarchery.org/amateur-sex/amature-mature-sex.html" > http://www.twinmoonsarchery.org/amateur-sex/amature-mature-sex.html , amature mature sex </a> http://www.twinmoonsarchery.org/amateur-sex/amature-mature-sex.html
<a href="http://www.twinmoonsarchery.org/dating/free-adult-only-dating-new-zealand.html" > http://www.twinmoonsarchery.org/dating/free-adult-only-dating-new-zealand.html , free adult only dating new zealand </a> http://www.twinmoonsarchery.org/dating/free-adult-only-dating-new-zealand.html
<a href="http://www.nsbri.com/group-sex/free-gay-teen-orgies.html" > http://www.nsbri.com/group-sex/free-gay-teen-orgies.html , free gay teen orgies </a> http://www.nsbri.com/group-sex/free-gay-teen-orgies.html
<a href="http://www.ensemblegames.com/stok/stock-certificate.html" > http://www.ensemblegames.com/stok/stock-certificate.html , stock certificate </a> http://www.ensemblegames.com/stok/stock-certificate.html
<a href="http://www.upaidscontrol.org/sex-story/free-black-erotic-stories.html" > http://www.upaidscontrol.org/sex-story/free-black-erotic-stories.html , free black erotic stories </a> http://www.upaidscontrol.org/sex-story/free-black-erotic-stories.html
<a href="http://www.twinmoonsarchery.org/shemale-sex/indy-escorts-shemale-downloads.html" > http://www.twinmoonsarchery.org/shemale-sex/indy-escorts-shemale-downloads.html , indy escorts shemale downloads </a> http://www.twinmoonsarchery.org/shemale-sex/indy-escorts-shemale-downloads.html
<a href="http://www.stockademuseum.com/blowjob/japanese-movie-bukkake-blowjob-ava-devine-clips-free-ones.html" > http://www.stockademuseum.com/blowjob/japanese-movie-bukkake-blowjob-ava-devine-clips-free-ones.html , japanese movie bukkake blowjob ava devine clips free ones </a> http://www.stockademuseum.com/blowjob/japanese-movie-bukkake-blowjob-ava-devine-clips-free-ones.html
aHLUlKoVgtnFrbWpI