<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>
// 
var colour="random"; 
var sparkles=50;

/****************************
*  Tinkerbell Magic Sparkle *
*(c)2005-11 mf2fm web-design*
*  http://www.mf2fm.com/rv  *
* DON’T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();

window.onload=function() { if (document.getElementById) {
  var i, rats, rlef, rdow;
  for (var i=0; i
    var rats=createDiv(3, 3);
    rats.style.visibility=”hidden”;
    document.body.appendChild(tiny[i]=rats);
    starv[i]=0;
    tinyv[i]=0;
    var rats=createDiv(5, 5);
    rats.style.backgroundColor=”transparent”;
    rats.style.visibility=”hidden”;
    var rlef=createDiv(1, 5);
    var rdow=createDiv(5, 1);
    rats.appendChild(rlef);
    rats.appendChild(rdow);
    rlef.style.top=”2px”;
    rlef.style.left=”0px”;
    rdow.style.top=”0px”;
    rdow.style.left=”2px”;
    document.body.appendChild(star[i]=rats);
  }
  set_width();
  sparkle();
}}

function sparkle() {
  var c;
  if (x!=ox || y!=oy) {
    ox=x;
    oy=y;
    for (c=0; c
      star[c].style.left=(starx[c]=x)+”px”;
      star[c].style.top=(stary[c]=y)+”px”;
      star[c].style.clip=”rect(0px, 5px, 5px, 0px)”;
      star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour==”random”)?newColour():colour;
      star[c].style.visibility=”visible”;
      starv[c]=50;
      break;
    }
  }
  for (c=0; c
    if (starv[c]) update_star(c);
    if (tinyv[c]) update_tiny(c);
  }
  setTimeout(“sparkle()”, 40);
}

function update_star(i) {
  if (—starv[i]==25) star[i].style.clip=”rect(1px, 4px, 4px, 1px)”;
  if (starv[i]) {
    stary[i]+=1+Math.random()*3;
    if (stary[i]0) {
      star[i].style.top=stary[i]+”px”;
      starx[i]+=(i%5-2)/5;
      star[i].style.left=starx[i]+”px”;
    }
    else {
      star[i].style.visibility=”hidden”;
      starv[i]=0;
      return;
    }
  }
  else {
    tinyv[i]=50;
    tiny[i].style.top=(tinyy[i]=stary[i])+”px”;
    tiny[i].style.left=(tinyx[i]=starx[i])+”px”;
    tiny[i].style.width=”2px”;
    tiny[i].style.height=”2px”;
    tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
    star[i].style.visibility=”hidden”;
    tiny[i].style.visibility=”visible”
  }
}

function update_tiny(i) {
  if (—tinyv[i]==25) {
    tiny[i].style.width=”1px”;
    tiny[i].style.height=”1px”;
  }
  if (tinyv[i]) {
    tinyy[i]+=1+Math.random()*3;
    if (tinyy[i]0) {
      tiny[i].style.top=tinyy[i]+”px”;
      tinyx[i]+=(i%5-2)/5;
      tiny[i].style.left=tinyx[i]+”px”;
    }
    else {
      tiny[i].style.visibility=”hidden”;
      tinyv[i]=0;
      return;
    }
  }
  else tiny[i].style.visibility=”hidden”;
}

document.onmousemove=mouse;
function mouse(e) {
  set_scroll();
  y=(e)?e.pageY:event.y+sdown;
  x=(e)?e.pageX:event.x+sleft;
}

function set_scroll() {
  if (typeof(self.pageYOffset)==”number”) {
    sdown=self.pageYOffset;
    sleft=self.pageXOffset;
  }
  else if (document.body.scrollTop || document.body.scrollLeft) {
    sdown=document.body.scrollTop;
    sleft=document.body.scrollLeft;
  }
  else if (document.documentElement &amp;&amp; (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
    sleft=document.documentElement.scrollLeft;
	sdown=document.documentElement.scrollTop;
  }
  else {
    sdown=0;
    sleft=0;
  }
}

window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement &amp;&amp; document.documentElement.clientWidth) {
    if (document.documentElement.clientWidth&gt;0) sw_min=document.documentElement.clientWidth;
    if (document.documentElement.clientHeight&gt;0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)!=”undefined” &amp;&amp; self.innerWidth) {
    if (self.innerWidth&gt;0 &amp;&amp; self.innerWidth
    if (self.innerHeight&gt;0 &amp;&amp; self.innerHeight
  }
  if (document.body.clientWidth) {
    if (document.body.clientWidth&gt;0 &amp;&amp; document.body.clientWidth
    if (document.body.clientHeight&gt;0 &amp;&amp; document.body.clientHeight
  }
  if (sw_min==999999 || sh_min==999999) {
    sw_min=800;
    sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}

function createDiv(height, width) {
  var div=document.createElement(“div”);
  div.style.position=”absolute”;
  div.style.height=height+”px”;
  div.style.width=width+”px”;
  div.style.overflow=”hidden”;
  return (div);
}

function newColour() {
  var c=new Array();
  c[0]=255;
  c[1]=Math.floor(Math.random()*256);
  c[2]=Math.floor(Math.random()*(256-c[1]/2));
  c.sort(function(){return (0.5 - Math.random());});
  return (“rgb(“+c[0]+”, “+c[1]+”, “+c[2]+”)”);
}
// ]]&gt;</description><title>Ḏ✺ℕ✞₤♁☼₭</title><generator>Tumblr (3.0; @dumblondesluts)</generator><link>http://dumblondesluts.tumblr.com/</link><item><title>totaltrashtheband:

Total Trash - “You Don’t Try” tape - click...</title><description>&lt;img src="http://25.media.tumblr.com/be02795fcf2a71c23279b60a3e5a110f/tumblr_mmr6lywwG71ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/50361686551/total-trash-you-dont-try-tape-click-to-buy"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://totaltrash.bandcamp.com/album/you-dont-try"&gt;Total Trash - “You Don’t Try” tape - click to buy&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/50390993536</link><guid>http://dumblondesluts.tumblr.com/post/50390993536</guid><pubDate>Mon, 13 May 2013 22:23:51 -0400</pubDate></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/daa9686c9c4da8993d18937926e35bb7/tumblr_mmngi6chy51qblkbeo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/50189514296</link><guid>http://dumblondesluts.tumblr.com/post/50189514296</guid><pubDate>Sat, 11 May 2013 15:51:41 -0400</pubDate><category>pink gameboy</category><category>japanese</category><category>japan</category><category>gameboy</category><category>retro</category><category>game boy</category><category>pink</category><category>tetris</category><category>nintendo</category></item><item><title>heyimonline:

Matthew Zefeldt
More of the Same Thing,...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_mcottpOoEt1rqbodro1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://heyimonline.tumblr.com/post/34618732982/matthew-zefeldt-more-of-the-same-thing"&gt;heyimonline&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;br/&gt;&lt;/em&gt;Matthew Zefeldt&lt;/p&gt;
&lt;p&gt;&lt;em&gt;More of the Same Thing&lt;/em&gt;&lt;span&gt;, 2011     &lt;/span&gt;&lt;span&gt;Acrylic on Canvas. 55 x 43 inches&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/49404941363</link><guid>http://dumblondesluts.tumblr.com/post/49404941363</guid><pubDate>Wed, 01 May 2013 21:40:09 -0400</pubDate></item><item><title>Mathew Zefeldt</title><description>&lt;img src="http://24.media.tumblr.com/ff6789f0bed05e4cdfdc33ba0412000d/tumblr_mm5dx0jVlU1qblkbeo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.mathewzefeldt.com/work/single-gallery/15670036"&gt;Mathew Zefeldt&lt;/a&gt;&lt;/p&gt;</description><link>http://dumblondesluts.tumblr.com/post/49404844155</link><guid>http://dumblondesluts.tumblr.com/post/49404844155</guid><pubDate>Wed, 01 May 2013 21:39:00 -0400</pubDate><category>mathew zefeldt</category><category>art</category><category>cyber punk</category><category>tumblr</category><category>painting</category></item><item><title>radiohead used to be my favorite band and now i think they are boring. does anyone else feel this...</title><description>&lt;p&gt;radiohead used to be my favorite band and now i think they are boring. does anyone else feel this way that has listened to them extensively????&lt;/p&gt;</description><link>http://dumblondesluts.tumblr.com/post/48335193524</link><guid>http://dumblondesluts.tumblr.com/post/48335193524</guid><pubDate>Fri, 19 Apr 2013 00:12:26 -0400</pubDate></item><item><title>0: Height&#13;</title><description>    0: Height&lt;br /&gt;&#13;
5' 2"&lt;br /&gt;&#13;
    1: Virgin?&lt;br /&gt;&#13;
nope&lt;br /&gt;&#13;
    2: Shoe Size&lt;br /&gt;&#13;
7.5&lt;br /&gt;&#13;
    3: Do you Smoke?&lt;br /&gt;&#13;
sometimes&lt;br /&gt;&#13;
    4: Do you Drink?&lt;br /&gt;&#13;
not really. wine sometimes&lt;br /&gt;&#13;
    5: Do you take drugs?&lt;br /&gt;&#13;
not usually&lt;br /&gt;&#13;
    6: Age you get mistaken for&lt;br /&gt;&#13;
18&lt;br /&gt;&#13;
    7: Have Tattoos?&lt;br /&gt;&#13;
home-made&lt;br /&gt;&#13;
    8: Want any tattoos?&lt;br /&gt;&#13;
all of em&lt;br /&gt;&#13;
    9: Got any Piercings?&lt;br /&gt;&#13;
nose - don't wear any rings in there though&lt;br /&gt;&#13;
    10: Want any Piercings?&lt;br /&gt;&#13;
i've had pretty much all the facial piercings at one point and i don't want em anymore&lt;br /&gt;&#13;
    11: Best friend?&lt;br /&gt;&#13;
dusty&lt;br /&gt;&#13;
    12: Relationship status&lt;br /&gt;&#13;
dusty&lt;br /&gt;&#13;
    13: Biggest turn ons&lt;br /&gt;&#13;
dressing well, good music taste&lt;br /&gt;&#13;
    14: Biggest turn offs&lt;br /&gt;&#13;
sandals, naivety&lt;br /&gt;&#13;
    15: Favorite Movie&lt;br /&gt;&#13;
marie antoinette&lt;br /&gt;&#13;
    16: I’ll love you if&lt;br /&gt;&#13;
secret&lt;br /&gt;&#13;
    17: Someone you miss&lt;br /&gt;&#13;
my sissy&lt;br /&gt;&#13;
    18: Most traumatic experience&lt;br /&gt;&#13;
scared cause i haven't really had one yet&lt;br /&gt;&#13;
    19: A fact about your personality&lt;br /&gt;&#13;
i don't really care if you don't like me&lt;br /&gt;&#13;
    20: What I hate most about myself&lt;br /&gt;&#13;
thinking about myself too much&lt;br /&gt;&#13;
    21: What I love most about myself&lt;br /&gt;&#13;
what I'm doing with my life currently, my constant questioning of the world&lt;br /&gt;&#13;
    22: What I want to be when I get older&lt;br /&gt;&#13;
not boring&lt;br /&gt;&#13;
    23: My relationship with my sibling(s)&lt;br /&gt;&#13;
rad&lt;br /&gt;&#13;
    24: My relationship with my parent(s)&lt;br /&gt;&#13;
its not too bad&lt;br /&gt;&#13;
    25: My idea of a perfect date&lt;br /&gt;&#13;
take me to see babes in toyland&lt;br /&gt;&#13;
    26: My biggest pet peeves&lt;br /&gt;&#13;
when people pick at food i am in the midst of making&lt;br /&gt;&#13;
    27: A description of the girl/boy I like&lt;br /&gt;&#13;
sexiest bro alive&lt;br /&gt;&#13;
    28: A description of the person I dislike the most&lt;br /&gt;&#13;
conniving lil bitch&lt;br /&gt;&#13;
    29: A reason I’ve lied to a friend&lt;br /&gt;&#13;
to not hurt feelings&lt;br /&gt;&#13;
    30: What I hate the most about work/school&lt;br /&gt;&#13;
time/pressure&lt;br /&gt;&#13;
    31: What my last text message says&lt;br /&gt;&#13;
Yaaa.&lt;br /&gt;&#13;
    32: What words upset me the most&lt;br /&gt;&#13;
why are you with me&lt;br /&gt;&#13;
    33: What words make me feel the best about myself&lt;br /&gt;&#13;
you're amazing&lt;br /&gt;&#13;
    34: What I find attractive in women&lt;br /&gt;&#13;
stylishness and feminine mystique in their personal objects (hard to explain)&lt;br /&gt;&#13;
    35: What I find attractive in men&lt;br /&gt;&#13;
attention to aesthetics and intelligence&lt;br /&gt;&#13;
    36: Where I would like to live&lt;br /&gt;&#13;
ny&lt;br /&gt;&#13;
    37: One of my insecurities&lt;br /&gt;&#13;
addicted to shopping&lt;br /&gt;&#13;
    38: My childhood career choice&lt;br /&gt;&#13;
artist (!)&lt;br /&gt;&#13;
    39: My favorite ice cream flavor&lt;br /&gt;&#13;
strawberry&lt;br /&gt;&#13;
    40: Who wish I could be&lt;br /&gt;&#13;
kat bjelland&lt;br /&gt;&#13;
    41: Where I want to be right now&lt;br /&gt;&#13;
up ur hole&lt;br /&gt;&#13;
    42: The last thing I ate&lt;br /&gt;&#13;
buffalo chicken wrap&lt;br /&gt;&#13;
    43: Sexiest person that comes to my mind immediately&lt;br /&gt;&#13;
courtneyyyyy&lt;br /&gt;&#13;
    44: A random fact about anything&lt;br /&gt;&#13;
yuh mutha smells&lt;br /&gt;&#13;
</description><link>http://dumblondesluts.tumblr.com/post/48089219205</link><guid>http://dumblondesluts.tumblr.com/post/48089219205</guid><pubDate>Mon, 15 Apr 2013 22:01:34 -0400</pubDate></item><item><title>emilyhaddenblog:

(via Andrea Bergart | 2012)</title><description>&lt;img src="http://25.media.tumblr.com/7d18990eb7f2904c3e470451456bc15a/tumblr_mkmq94dNC01qalerro1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://emilyhaddenblog.tumblr.com/post/46933788448/via-andrea-bergart-2012" class="tumblr_blog"&gt;emilyhaddenblog&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;(via &lt;a href="http://andreabergart.com/#/fullscreen/3839487"&gt;Andrea Bergart | 2012&lt;/a&gt;)&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/48010188221</link><guid>http://dumblondesluts.tumblr.com/post/48010188221</guid><pubDate>Sun, 14 Apr 2013 22:24:36 -0400</pubDate></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/d8df8ff4dcfc167b50eefa0f17ad5a21/tumblr_mkr0w5UhtW1rlpzedo1_500.gif"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/47163919953</link><guid>http://dumblondesluts.tumblr.com/post/47163919953</guid><pubDate>Thu, 04 Apr 2013 23:13:12 -0400</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/e12ce78f6e488d5dd79f19cbc18e8f9c/tumblr_mk8yzlViF11ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/46309812402</link><guid>http://dumblondesluts.tumblr.com/post/46309812402</guid><pubDate>Mon, 25 Mar 2013 23:14:32 -0400</pubDate></item><item><title>totaltrashtheband:

Total Trash - You Don’t Try Tape on...</title><description>&lt;img src="http://25.media.tumblr.com/4d1f6e47a9df5ca8f46753960bb5fc0d/tumblr_mjm8w8W7Hx1ryeeo6o1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/45287455712/total-trash-you-dont-try-tape-on-bandcamp"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://totaltrash.bandcamp.com/"&gt;Total Trash - You Don’t Try Tape on Bandcamp&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/45297322198</link><guid>http://dumblondesluts.tumblr.com/post/45297322198</guid><pubDate>Wed, 13 Mar 2013 18:33:11 -0400</pubDate></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/a555053948ef0563d98ea72ba51e17b5/tumblr_mjf0pbLYO31qkjjfoo1_400.gif"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/44998975832</link><guid>http://dumblondesluts.tumblr.com/post/44998975832</guid><pubDate>Sat, 09 Mar 2013 23:40:45 -0500</pubDate></item><item><title>totaltrashtheband:


TOTAL TRASH MUSIC VIDEO FOR LISTEN
</title><description>&lt;iframe width="400" height="300" src="http://www.youtube.com/embed/uw7pFDtK8No?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/44986709878/total-trash-music-video-for-listen"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;img alt="image" height="313" src="http://24.media.tumblr.com/d976012c42df5f61d07662c49e946139/tumblr_mj4ci1NpIT1ryeeo6o1_500.jpg" width="500"/&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://totaltrashtheband.tumblr.com/"&gt;TOTAL TRASH&lt;/a&gt; MUSIC VIDEO FOR &lt;a href="http://totaltrash.bandcamp.com/track/listen"&gt;LISTEN&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/44986825137</link><guid>http://dumblondesluts.tumblr.com/post/44986825137</guid><pubDate>Sat, 09 Mar 2013 20:52:54 -0500</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/ac8b1f0f7765f840748a43e5e6b716e5/tumblr_mj2tqurc2Q1rhw28eo1_400.gif"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/44912374993</link><guid>http://dumblondesluts.tumblr.com/post/44912374993</guid><pubDate>Fri, 08 Mar 2013 22:54:05 -0500</pubDate></item><item><title>totaltrashtheband:

‎…CoMiNgSoOn…
</title><description>&lt;img src="http://24.media.tumblr.com/d976012c42df5f61d07662c49e946139/tumblr_mj4ci1NpIT1ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/44519544909/comingsoon"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span class="Apple-style-span"&gt;‎…CoMiNgSoOn…&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/44542498956</link><guid>http://dumblondesluts.tumblr.com/post/44542498956</guid><pubDate>Mon, 04 Mar 2013 10:12:13 -0500</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/c18e09f9cd18def8ef32e7b20948dc30/tumblr_mj211jiBc81qkgz0bo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/44415889898</link><guid>http://dumblondesluts.tumblr.com/post/44415889898</guid><pubDate>Sat, 02 Mar 2013 20:23:07 -0500</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/227bc0deca3c2afcb76b8496ab8ae053/tumblr_mj24ghEi4G1qzgnzho1_500.png"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://25.media.tumblr.com/9a72236c3bedc400a23650351ac1a38b/tumblr_mj24ghEi4G1qzgnzho2_500.png"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://25.media.tumblr.com/dc560ea8fd1726a14ee9c8c271624c18/tumblr_mj24ghEi4G1qzgnzho3_500.png"/&gt;&lt;br/&gt; &lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/44413161501</link><guid>http://dumblondesluts.tumblr.com/post/44413161501</guid><pubDate>Sat, 02 Mar 2013 19:44:30 -0500</pubDate></item><item><title>why is it that when we are kids, we are constantly encouraged to be creative and do creative things...</title><description>&lt;p&gt;why is it that when we are kids, we are constantly encouraged to be creative and do creative things (i.e. music, art, creative writing), but then as people get older they forget that they are capable of doing these things at all and decide to leave it up to the &amp;#8220;experts&amp;#8221;. it makes me sad. punk rock forever dude.&lt;/p&gt;</description><link>http://dumblondesluts.tumblr.com/post/44066002991</link><guid>http://dumblondesluts.tumblr.com/post/44066002991</guid><pubDate>Tue, 26 Feb 2013 11:02:09 -0500</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/293e7b3e1959a0e7e755c532838dbbbd/tumblr_mi70k8JGmZ1ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://dumblondesluts.tumblr.com/post/43371058605</link><guid>http://dumblondesluts.tumblr.com/post/43371058605</guid><pubDate>Sun, 17 Feb 2013 22:42:41 -0500</pubDate></item><item><title>totaltrashtheband:

still from upcoming total trash music vid
</title><description>&lt;img src="http://25.media.tumblr.com/bda808a8043655b18d1ea2b8ec9d4638/tumblr_mhzc996KiA1ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/42710727562/still-from-upcoming-total-trash-music-vid"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;still from upcoming &lt;a href="http://www.totaltrashtheband.tumblr.com"&gt;total trash&lt;/a&gt; music vid&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/42710752094</link><guid>http://dumblondesluts.tumblr.com/post/42710752094</guid><pubDate>Sat, 09 Feb 2013 20:03:31 -0500</pubDate></item><item><title>totaltrashtheband:

Total Trash Tour 2013
</title><description>&lt;img src="http://25.media.tumblr.com/637f50daeb85080fd10621fc27fca35e/tumblr_mhf6x5j1N01ryeeo6o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://totaltrashtheband.tumblr.com/post/41841212804/total-trash-tour-2013"&gt;totaltrashtheband&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://totaltrash.bandcamp.com"&gt;Total Trash Tour 2013&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://dumblondesluts.tumblr.com/post/41844099584</link><guid>http://dumblondesluts.tumblr.com/post/41844099584</guid><pubDate>Tue, 29 Jan 2013 23:34:03 -0500</pubDate></item></channel></rss>
