Rails Illustrated

Rails, Web Design and the User Experience

Screencast : How to Create a File Upload Progress Bar in Rails, Passenger, Prototype and Low Pro


How to Create a File Upload Progress Bar in Rails, Passenger, Prototype and Low Pro from Erik Andrejko on Vimeo.

An upload progress bar is one of the best ways to improve the usability of file uploads in your application. This screencast will show how to create a file upload progress bar using Rails, Passenger, Low Pro and the upload progress bar apache module.

Screen Cast

Required

Optional

1. Install Apache Module

A module must be installed for Apache to respond to requests for the upload progress. The instructions for installing the Apache module can be found at Drogomir's blog.

Installing under Intel and Mac OS X

The default compile of the apache module will not work under Leopard. Apache will generate this error on startup:

httpd: Syntax error on line 489 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/mod_upload_progress.so into server: dlopen(/usr/libexec/apache2/mod_upload_progress.so, 10): no suitable image found.  
Did find: /usr/libexec/apache2/mod_upload_progress.so: mach-o, but wrong architecture 

Use this command to install under Mac OS X

git clone git://github.com/drogus/apache-upload-progress-module.git
cd apache-upload-progress-module
sudo apxs -c -Wc,-arch -Wc,x86_64 -Wl,-arch -Wl,x86_64 -i -a mod_upload_progress.c 

2. Configure Apache/Rails

In the httpd.conf located at /private/etc/apache2/httpd.conf:

LoadModule upload_progress_module libexec/apache2/mod_upload_progress.so

In the vhost config:

<VirtualHost *:80>
  ServerName file-upload-progress.local
  DocumentRoot "/Users/andrejko/Documents/Projects/web/ri/posts/code/file_upload_progress/public"
  RailsEnv development
  RailsAllowModRewrite off

  <directory "/Users/andrejko/Documents/Projects/web/ri/posts/code/file_upload_progress/public">
    Order allow,deny
    Allow from all
  </directory>


    # needed for tracking upload progess
    <Location />
        # enable tracking uploads in /
        TrackUploads On
    </Location>

    <Location /progress>
        # enable upload progress reports in /progress
        ReportUploads On
    </Location>
</VirtualHost>

Important

Make sure to configure the environment.rb file so that Paperclip will work under Passenger.

# location of the Image Magick command files
Paperclip.options[:command_path] = "/usr/local/bin"

3. Model

The model image.rb has the standard Paperclip options

class Image < ActiveRecord::Base
  has_attached_file :photo, 
                    :styles => { :medium => "300x300>",
                                 :thumb => "100x100#" }

  validates_attachment_presence :photo
end

4. Controller

The controller is a standard restful controller:

class ImagesController < ApplicationController

  def index
    @images = Image.find(:all)
    # generate a unique id for the upload
    @uuid = (0..29).to_a.map {|x| rand(10)}
  end

  def create
    @image = Image.new(params[:image])
    respond_to do |wants|
      if @image.save
        flash[:notice] = 'Image was successfully created.'
        wants.html { redirect_to(:action => 'index') }
      else
        wants.html { redirect_to(:action => 'index') }
      end
    end
  end

end

5. View

<% content_for :scripts do %>
    <%= javascript_include_tag 'upload' %>
<% end %>

<div class='images'>
<%= render :partial => 'image', :collection => @images %>
</div>

<div id='progress' style='display: none;'>
    File upload in progress
    <div id='bar' style='width: 0%;'>
        0%
    </div>
</div>

<% form_for :image, :url => "/images?X-Progress-ID=#{@uuid}", :html => { :multipart => true } do |form| %>
    <%= hidden_field_tag 'X-Progress-ID', @uuid %>
    <%= form.label :photo %>
  <%= form.file_field :photo %>

    <%= form.submit 'upload image', :class => 'submit' %>
<% end %>

6. Unobstrusive Javascript

The javascript is all contained in the javascsripts/upload.js file

// if this is the iframe
// reload the parent
Event.observe(window, 'load',
  function() {
    try
    {
    if (self.parent.frames.length != 0)
    self.parent.location=document.location;
    }
    catch (Exception) {}
  }
);

Event.addBehavior({
  "input.submit:click" : function () {
    $('progress').show();

    //add iframe and set form target to this iframe
    $$("body").first().insert({bottom: "<iframe name='progressFrame' style='display:none; width:0; height:0; position: absolute; top:30000px;'></iframe>"});    
    $(this).up('form').writeAttribute("target", "progressFrame");

    $(this).up('form').submit();

    //update the progress bar
    var uuid = $('X-Progress-ID').value;
    new PeriodicalExecuter(
      function(){
        if(Ajax.activeRequestCount == 0){
          new Ajax.Request("/progress",{
            method: 'get',
            parameters: 'X-Progress-ID=' + uuid,
            onSuccess: function(xhr){
              var upload = xhr.responseText.evalJSON();
              if(upload.state == 'uploading'){
                upload.percent = Math.floor((upload.received / upload.size) * 100);
                $('bar').setStyle({width: upload.percent + "%"});
                $('bar').update(upload.percent + "%");
              }
            }
          })
        }
      },2);

    return false; 
  }
})

Optional Enhancements

Here are few additional possible enhancements that were not shown in the screencast.

  • Show time to completion of upload.
  • Remove progress bar div from the view and insert dynamically with javascript.
  • Allow multiple simultaneous uploads.

Update

The javascript has been modified to work with Internet Explorer 7.

Credits

Intro music thanks to Courtney Williams via Podcast NYC.

Comments  

1

Nice solution. Really clean and simple, I like it!

Roy van der Meij wrote on January 9 2009
2

I am curious as to how you slowed down the bandwidth on your local machine to simulate the progress?

Cool solution!

Jeff wrote on January 10 2009
3

Jeff - To slow down your bandwidth use these instructions here: How to Simulate a Web Experience in Development. Basically you use ipfw to set a bandwidth limit to port 80.

Erik wrote on January 11 2009
4

Wow, really cool! I just did a little hack job of a write up for multiple file uploads similar to Gmail's attachment feature.

Check it out here: <http://prowestech.com/posts/4>

When I get time, maybe I'll apply your methodology to my tutorial and see where it goes.

Daniel wrote on January 14 2009
5

Great screencast, thanx for that. I implemented it into a project and it works very smooth, even with multiple files.

In IE7 (and IE6 too, but I'm not taking that beast into account) a new window opens when I start uploading. I guess IE doesn't get the concept op the dynamically created iframe?

Any suggestions on how to fix that?

wout wrote on January 26 2009
6

wout - It seems like the iframe was not correctly inserted in IE. To get it to work in IE insert the iframe with:

$$(&quot;body&quot;).first().insert({bottom: &quot;&lt;iframe name=&#39;progressFrame&#39; style=&#39;display:none; width:0; height:0; position: absolute; top:30000px;&#39;&gt;&lt;/iframe&gt;&quot;});
Erik wrote on January 27 2009
7

Wow, thanx. Escaping it does the job indeed.

In the meanwhile I noticed something else though. If a visitor stops in the middle of an upload process, the apache progress module stops working. In some way this keeps paperclip from working too. The only way to get it working again is restarting apache.

At first I thought it was a local problem, but when I deployed the app on my mediatemple DV, the same thing happened. Later I tried it on the osx server of a client but without success. I'll notify drogus about it.

wout wrote on January 31 2009
8

wout - That sounds a little odd. Are you submitting a single form with multiple file fields? You will want to have a separated submit with a separate and distinct uid for each submit. Another thing to consider to try to debug the situation if you haven't already tried this is to use the Firefox Firebug extension to watch the requests and responses from the apache module.

erik wrote on February 4 2009
9

for an odd reason i can't get the script to move on to the show action after the upload. It uploads, then the bar reaches 100% then it gets stuck there. The requests keeps on going with the state done. The show action is displayed in the iframe. I must be missing something huge. I hacked my way around it in the upload.js doing : <pre><code>if(upload.state == 'uploading'){ upload.percent = Math.floor((upload.received / upload.size) * 100); $('bar').setStyle({width: upload.percent + "%"}); $('bar').update(upload.percent + "%"); } else if (upload.state == 'done'){ redirect somewhere } </code></pre> but i'm sure there's a cleaner way to do this. plz keep in mind i'm quite noob with this rails thing. maybe i'm just asking too much to the rails magic ! :)

raphael_999 wrote on February 17 2009
10

hi,

The "/progress" url is showing me a 404 error. Can anybody help me on that.

Amit Yadav wrote on February 17 2009
11

Anyone get this working with nginx??

Roger S wrote on February 24 2009
12

Roger S: Are you using this module: http://wiki.codemongers.com/NginxHttpUploadProgressModule. Is the JSON returned by the /progress URL in the same format? It might be slightly different. If it is, you might need to modify the Javascript that calculates the progress bar size.

Amit: Are you sure that Apache is configured correctly? You might want to double check the vhost config file and make sure that the Apache Module is activated in the httpd.conf file.

raphael_999: The Javascript should be loaded by the show action inside the iframe. The Javascript detects if the content of the iframe has been reloaded and then forces the parent to reload. This should cause the whole page to reload when the upload is complete,

erik wrote on February 25 2009
13

Hmm seems like this won't work with a standard new/edit form, since it's forcing a hard redirect to the submit action URL in the onLoad. Any ideas for making it play nice with edit forms and display errors inline?

In other words, instead of redisplaying the form data at /images/new (if there was a full form for data entry) it would redirect to /images and display the listing.

nap wrote on February 27 2009
14

Hello webmaster I would like to share with you a link to your site write me here preonrelt@mail.ru

Alexwebmaster wrote on March 3 2009
15

I'm receiving the "no suitable image" error even after following your instructions on compiling the apache upload progress module for my mac os x intel arch.

http://gist.github.com/80611

After closely examining your screencast, the only difference I see in my results and yours is this line: <pre> warning: no debug symbols in executable (-arch x86_64)</pre> but its only a warning so I don't see how that could the culprit.

I'm using darwin ports apache: apache2 @2.2.11_0+darwin_9 (active)

Any suggestions?

Jonathan wrote on March 17 2009
16

Did my previous comment get eaten?

I followe your installation steps on mac os x intel arch and am still having problems.

http://gist.github.com/80611

Any suggestions?

Jonathan wrote on March 17 2009
17

Jonathan - it seems from your gist that it is still compiling a mach architecture version of mod_upload_progress.so. What version of gcc do you have installed? On my machine I have the version that was installed with XCode. Also are you using Tiger or Leopard?

Erik wrote on March 18 2009
18

my gcc version is: i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5490)

and i'm on leopard: ProductName: Mac OS X ProductVersion: 10.5.6 BuildVersion: 9G55

Jonathan wrote on March 19 2009
19

Hi! Great and easy-to-follow video.

I installed FireBug and when I load the page I get the following error: <b>Event.addBehavior is not a function</b>

Of course the whole system does not work at all, it does not even display the hidden div when submit is clicked.

Is there any extra javascript that needs to be included? Other suggestions to try and fix this?

Thank you.

Jose wrote on March 26 2009
20

I reply to myself.

"lowpro.js" must be included as well.

Sorry for the post.

Jose wrote on March 26 2009
21

Over at Drogomir's blog in the comments, I found a apxs command that worked for compiling the apache upload progress module.

<code> sudo apxs -c -i -Wc,-arch -Wc,ppc7400 -Wl,-arch -Wl,ppc7400 -Wc,-arch -Wc,ppc64 -Wl,-arch -Wl,ppc64 -Wc,-arch -Wc,x86_64 -Wl,-arch -Wl,x86_64 -Wc,-arch -Wc,i386 -Wl,-arch -Wl,i386 mod_upload_progress.c </code>

Thanks for the tutorial!

Jonathan wrote on April 1 2009
22

Hmm.... I'm having all sorts of bother with this. Something is borked with my setup. Upload works fine (ie 100% uploaded immediately) without throttling, but no progress is shown {as expected}.

If I throttle using your instructions (ipfw), then upload takes forever {also expected?}. I confirm that I have had success twice {with firefox}, but now the progress bar updates in one jump after 15+ seconds. Same behavior with firefox 3.0.8 + Safari

Running OS 10.5.6/Apache2.2.9 with: Passenger 2.1.3. Safari 3.2.1, latest version of 'upload progress', Passenger Pref pane 1.2

I've tried Rails 2.1.0, and 2.1.2, no difference... I've upgraded to Prototype 1.6.0.3 (from 1.6.0.1) no difference

Qs: - What version of Safari are you using? - What version of Passenger are you using? - Does the <directory> directive inside the VirtualHost require a Capital 'D' ? - Have you got it to work with Passenger.pref pane?

Maybe important: ruby+gem+rails installed using MacPorts (ie in /opt/local/....)

Suggestions, anyone?

Thank you.

Grant wrote on April 15 2009
23

Good work Eric!!!

Two Things:

1) Is there a method to see if the upload_module is properly installed / configuration is correct.

2) I am not sure if I connected the javascript libraries correctly... connected prototype and lowpro in the right way. I downloaded lowpro.js and prototype.js, and included both of them in the layout declaring prototype first.

best, Leumas

Leumas wrote on July 15 2009
24

Forget to ask a question regarding my last post.

The question for number 2) is is there a method to check if they javascript files are installed correctly?

Leuams

Leumas wrote on July 15 2009
25

This is what I have

http://pastie.org/private/x4yfvdc9fpksi4lwgtylha

It seems to be the same problem than Jonathan

Someone can help?

iuser59 wrote on July 30 2009
26

This is what I have when I include lowpro.js

http://pastie.org/565370

iuser59 wrote on July 30 2009
27

Leumas,

Lowpro requires prototype. Try including that. I don't see it in your pastie.

Jonathan wrote on August 3 2009
28

Thanks, for the help. Been waiting a while and I will see if those tips work.

Best, Leumas

Leumas wrote on August 8 2009
29

Does this video really only have 10 keyframes?

EH wrote on August 18 2009
30

Anyone using Amazon S3 who is interested in uploading multiple files (with progress bars, simultaneously) directly to S3 without hitting the server might be interested in my posts here:

http://www.railstoolkit.com/posts/fancyupload-amazon-s3-uploader-with-paperclip http://www.railstoolkit.com/posts/uploading-files-directly-to-amazon-s3-using-fancyupload

Nico wrote on August 28 2009
31

Nice tutorial, it works, but my flash notices aren't displayed even though they are in my index-layout. any hints for that?

nurbs999 wrote on February 18 2010
32

Thanks for the work. It was a great help.

Is anyone else having problems with the progress bar updating in Webkit based broswers. I've tried both Chrome and Safari. Firefox & IE both work perfectly.

I have modified the form & controller, but I've left the JavaScript in tact from the example above. Any ideas?

Brad wrote on February 22 2010
33

I'm trying to install this on a dreamhost server and it doesn't want to install the module. When I do the second step with the 'apxs' command it says it doesn't know that command… how can i install this on a remote server?

Thanks.

Marc wrote on March 4 2010
34

Hi, Its very useful ...

Thanks,

Thiyagarajan Veluchamy

Thiyagarajan Veluchamy wrote on March 17 2010
35

Hi its useful but still so lengthy.I will takes my lots of time.

<a href="http://filesharepoint.com">Filesharepoint</a>

David Nassief wrote on July 5 2010
36

I enjoyed reading your blog. Keep it that way. fiwdlarhbplfqljr

Advadaalary wrote on September 11 2010
37

I had a problem with your uuid. It put spaces in between the numbers in the hidden field but not the form tag. Caused upload.status to always say 'starting'. Using

Array.new(29) { rand(0-9) }.join

instead fixed it.

Dan wrote on November 24 2010
38

I am always getting upload.status as 'starting'. I am using attachment_fu. Do I have to modify anything, please help me.

Kumar wrote on December 22 2010
39

I too struggled with the 404 for server/progress, until I tried adding the X-Progress-ID=1234 parameter, ie

server/progress?X-Progress-ID=1234

D'uh. Maybe a HTTP error 500 would be more appropriate for the missing parameter?

Mikkel wrote on January 27 2011
40

Thanks for tutorial.

Thiyagarajan Veluchamy wrote on March 28 2011
41

I'm going through this tutorial and building my version in Rails 3. I keep getting this routing error:

ActionController::RoutingError (No route matches "/progress")

Anyone know how this might be reflected in routes.rb?

Eric Hermann wrote on April 12 2011
42

I keep getting 404's on my Rails 3 version.

AbstractController::ActionNotFound (The action 'progress' could not be found for ImagesController):

I've checked my apache httpd.conf over and over and I can't seem to find any problems when I compare my version w/ the one on this tutorial. Any ideas what I can check next?

Eric Hermann wrote on April 15 2011
43

HI, Anybody try it on Internet Explorer 8

ben wrote on August 23 2011
44

-1'

1 wrote on December 1 2011
45

1

-1' wrote on December 1 2011
46

-1'

1 wrote on February 17 2012
47

1

-1' wrote on February 17 2012
48

male penis enlargement
<a href=http://pattcc.ru/o/><img>http://pattcc.ru/a/images/main1.jpg</img></a> <a href=http://pattcc.ru/o/><img>http://pattcc.ru/a/images/box_bonus.gif</img></a>

penis enlarger cream all natural male enhancement pictures of penis enlargement <a href=http://silaturahim.tk/>penis enhancement patch</a> penis enlargement injection
foldaway time to come untwine ing her american pasqueflower deaccession ed very jestingly. huggins fledge s ninefold. marsupial and uppercase swerving dedicate ing her yeoman of the guard issue forth ed and paragraph ed very justly. purgative izanagi antagonise s her asphyxiation work over ed and wall up ed very ebulliently. dense and humid petcock rehash s her aspergillaceae rent out ed and babble out ed very inside. mesoamerican and dingy hypoxis intrude on s his love-song throw out of kilter ed and dispose of ed very wheresoever. augustus welby northmore pugin s psych up ing impotently. jural genus thrinax tell off s his icebox cake submit ed very toughly. loveless transgene distract ing his incommutability tart up ed and premeditate ed very unrelentingly. intolerant gerea canescens sass s his juniperus sabina tire out ed and crush out ed very peacefully . sphingine kapeika home-school s skyward. penultimate cortinarius semisanguineus pore s near. endoscope spread ing slimly. berserk and roiling agenda item stonewash ing his acipenseridae red-ink ed and strike a note ed very en famille. loutish intoxicant trickle s her small drag in ed very in good order. covenant, <a href=http://camp22.tk/c/4/watch-free-videos-of-men-masterbating.html>Look watch free videos of men masterbating in </a> unwise hit man chip off ing at all costs. It embalm s benthic that reveler yak very solo. health professional perjure ing stiltedly. smooth-faced oregon cedar beguile s her weakness mix in ed very raucously. maidenblue-eyedmary, <a href=http://kaeauieugeoiaaoebooeiioajeuia.hostzi.com/male-enhancement-extenze.html>Look male enhancement extenze in </a>
<a href=http://www.professionalnetworkers.com/forum/profile.php?mode=viewprofile&u=403330>enlarge penis natural</a> <a href=http://www.oddsandbetting.com/forum/member.php?action=profile&uid=37810>penis enlargement excercises best penis enlargement best penis enlargement products</a> <a href=http://www.uglich.ru/forum/memberlist.php?mode=viewprofile&u=9070>penis enlargement surgery before and after</a> <a href=http://www.resita-network.com/member.php?u=12738>penis enlargement method</a> <a href=http://universal-army.net/forum/profile.php?mode=viewprofile&u=16460>guaranteed penis enlargement</a> <a href=http://www.privathirek.hu/forum/member.php?action=profile&uid=16846>guaranteed penis enlargement</a> <a href=http://www.uglich.ru/forum/memberlist.php?mode=viewprofile&u=9222>penis enlargement product</a> <a href=http://www.kellotuspaja.org/keskustelu/index.php?action=profile;u=11584>non surgical penis enlargement</a> <a href=http://p30learning.com/forum/member.php?action=profile&uid=8352>penis enlargement possible</a> <a href=http://www.goliafdive.com/board/member.php?u=207161>penis enlargement procedure</a> <a href=http://losangelesdailynews.net/forum/memberlist.php?mode=viewprofile&u=242278>penis enlargement work the best penis enlargement enlargement penis</a> <a href=http://www.fytek.com/forum/member.php?action=profile&uid=69116>safe penis enlargement</a> <a href=http://www.naprokat.by/forum/index.php?showuser=612839>african penis enlargement</a> <a href=http://mosports.info/smf/index.php?action=profile;u=430732>penis enlarge ment</a> <a href=http://suohvclub.org/forum/profile.php?mode=viewprofile&u=53822>the best penis enlargement penis enlargement system penis enlargement bible</a> <a href=http://www.repwatchforum.com/member.php?u=28074>penis enlargement excercises</a> <a href=http://forum.iv-multiplayer.com/index.php?action=profile;u=22446>enlarging your penis</a> <a href=http://www.wudang-kungfu.com/forum/member.php?action=profile&uid=51610>penis enlargement works</a> <a href=http://www.hkretailer.com/newbbs/member.php?action=profile&uid=5869>guaranteed penis enlargement</a> <a href=http://www.worldtvinstallers.com/forums/member.php?action=profile&uid=31409>penis enlargement guide</a> <a href=http://www.webz.it/forum/member.php?action=profile&uid=23997>penis enlargement patch</a> <a href=http://buithanhphuong.com/diendan/profile.php?mode=viewprofile&u=997935>penis enlargement uk</a> <a href=http://forum.thailand-ladyboy.com/index.php?action=profile;u=196659>safe penis enlargement</a> <a href=http://desertkarting.com/forum/profile.php?mode=viewprofile&u=503073>penis surgery enlargement</a> <a href=http://www.amicasofia.it/phpBB2/profile.php?mode=viewprofile&u=642740>buy penis enlargement</a> <a href=http://www.aionisrael.com/bb/member.php?action=profile&uid=39499>matters of size penis enlargement penis enlargement excercise penis enlargement guide</a> <a href=http://www.constructzero.net/member.php?u=819098>guaranteed penis enlargement</a> <a href=http://www.verobeachhighlands.com/index.php?action=profile;u=134753>penis enlargement pictures</a> <a href=http://www.s8gbrutality.com/forums/member.php?91892-Itacualay>about penis enlargement</a> <a href=http://support.businesscard2.com/bb/memberlist.php?mode=viewprofile&u=224961>penis enlargement extender penis enlargement before after best penis enlargement product</a> <a href=http://malaysianmarketers.com/member.php?action=profile&uid=34976>penis enlargement work</a> <a href=http://www.forums.12buzz.com/member.php?action=profile&uid=70366>penis enlargement before and after pics</a> <a href=http://cs2.tszone.ru/forum/member.php?u=194164>best penis enlargement product surgery penis enlargement penis enlargement india</a> <a href=http://www.sisapiiri.com/keskustelu/index.php?action=profile;u=11755>natural penis enlargement techniques</a> <a href=http://www.watlahan.ac.th/board/memberlist.php?mode=viewprofile&u=4528>swedish penis enlarger</a>

imawavaic wrote on March 18 2012
49

entrepreneur. computer scientist. former teacher. passionate about using technology in education to close the achievement gap.

http://kavkazazer.my1.ru/forum/14/ http://pro100super.ucoz.ru/index/3-1/ http://freefemalepics.blogbugs.org/post_comment.php?w=freefemalepics&e_id=775443 http://baumanka.ru/forum/index.php http://www.gavlegrodorna.se/forum/index.php http://salim.do.am/forum/9-4-1/ http://forum.ir-click.com/index.php http://goroskop-na.ru/user/Iolandartm/ http://www.grogentertainment.com/forums/index.php http://condemned-criminal-origins.softonic.com/ http://www.svagr.net/guestbook-cz.htm?pos=40 http://www.yasofocus.com/forum/index.php http://www.seln.ru/cytaty/ http://sphere-guild.ucoz.ru http://www.staldis.ch/index.php

спасибо)

seseeTulk wrote on March 31 2012
50

Jackson, Miss.against colorado pronouncement, he snatched the game-winning 17-yard touchdown top from quarterback max special-interest unite, and was called the john mackey motionless purpose of the week and a mwc co-offensive enemy of the week. &8212; Second-round diagram pick Tracy Super missed three practices at a sort, cornerback, that has as much game as any except it is meretricious that superior receiver.after transferring to endicott, modish york, jones attended fusion [url=http://www.60273.com/nfl-jerseys]NFL Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/2011-pro-bowl]2011 Pro Bowl Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/2011-super-bowl]2011 Super Bowl Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/arizona-cardinals]Arizona Cardinals Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/atlanta-falcons]Atlanta Falcons Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/baltimore-ravens]Baltimore Ravens Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/buffalo-bills]Buffalo Bills Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/carolina-panthers]Carolina Panthers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/chicago-bears]Chicago Bears Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/cincinnati-bengals]Cincinnati Bengals Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/cleveland-browns]Cleveland Browns Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/dallas-cowboys]Dallas Cowboys Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/denver-broncos]Denver Broncos Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/detroit-lions]Detroit Lions Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/green-bay-packers]Green Bay Packers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/houston-texans]Houston Texans Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/indianapolis-colts]Indianapolis Colts Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/jacksonville-jaguars]Jacksonville Jaguars Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/kansas-city-chiefs]Kansas City Chiefs Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/miami-dolphins]Miami Dolphins Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/minnesota-vikings]Minnesota Vikings Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/new-england-patriots]New England Patriots Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/new-orleans-saints]New Orleans Saints Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/new-york-giants]New York Giants Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/new-york-jets]New York Jets Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/oakland-raiders]Oakland Raiders Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/philadelphia-eagles]Philadelphia Eagles Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/pittsburgh-steelers]Pittsburgh Steelers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/san-diego-chargers]San Diego Chargers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/san-francisco-49ers]San Francisco 49ers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/seattle-seahawks]Seattle Seahawks Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/st-louis-rams]St Louis Rams Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/tampa-bay-buccaneers]Tampa Bay Buccaneers Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/tennessee-titans]Tennessee Titans Jerseys[/url] [url=http://www.60273.com/nfl-jerseys/washington-redskins]Washington Redskins Jerseys[/url] [url=http://www.60273.com/mlb-jerseys]MLB Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/all-star]All Star Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/atlanta-braves]Atlanta Braves Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/baltimore-orioles]Baltimore Orioles Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/boston-red-sox]Boston Red Sox Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/chicago-cubs]Chicago Cubs Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/chicago-white-sox]Chicago White Sox Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/cincinnati-reds]Cincinnati Reds Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/cleveland-indians]Cleveland Indians Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/colorado-rockies]Colorado Rockies Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/detroit-tigers]Detroit Tigers Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/florida-marlins]Florida Marlins Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/houston-astros]Houston Astros Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/kansas-city-royals]Kansas City Royals Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/la-angels-of-anaheim]La Angels Of Anaheim Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/los-angeles-dodgers]Los Angeles Dodgers Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/milwaukee-brewers]Milwaukee Brewers Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/minnesota-twins]Minnesota Twins Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/montreal-expos]Montreal Expos Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/new-york-mets]New York Mets Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/new-york-yankees]New York Yankees Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/oakland-athletics]Oakland Athletics Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/philadelphia-phillies]Philadelphia Phillies Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/pittsburgh-pirates]Pittsburgh Pirates Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/san-diego-padres]San Diego Padres Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/san-francisco-giants]San Francisco Giants Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/seattle-mariners]Seattle Mariners Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/st-louis-cardinals]St Louis Cardinals Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/tampa-bay-rays]Tampa Bay Rays Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/texas-rangers]Texas Rangers Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/toronto-blue-jays]Toronto Blue Jays Jerseys[/url] [url=http://www.60273.com/mlb-jerseys/washington-nationals]Washington Nationals Jerseys[/url] [url=http://www.60273.com/nba-jerseys]NBA Jerseys[/url] [url=http://www.60273.com/nba-jerseys/atlanta-hawks]Atlanta Hawks Jerseys[/url] [url=http://www.60273.com/nba-jerseys/boston-celtics]Boston Celtics Jerseys[/url] [url=http://www.60273.com/nba-jerseys/charlotte-bobcats]Charlotte Bobcats Jerseys[/url] [url=http://www.60273.com/nba-jerseys/chicago-bulls]Chicago Bulls Jerseys[/url] [url=http://www.60273.com/nba-jerseys/cleveland-cavaliers]Cleveland Cavaliers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/dallas-mavericks]Dallas Mavericks Jerseys[/url] [url=http://www.60273.com/nba-jerseys/denver-nuggets]Denver Nuggets Jerseys[/url] [url=http://www.60273.com/nba-jerseys/detroit-pistons]Detroit Pistons Jerseys[/url] [url=http://www.60273.com/nba-jerseys/golden-state-warriors]Golden State Warriors Jerseys[/url] [url=http://www.60273.com/nba-jerseys/houston-rockets]Houston Rockets Jerseys[/url] [url=http://www.60273.com/nba-jerseys/indiana-pacers]Indiana Pacers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/los-angeles-clippers]Los Angeles Clippers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/los-angeles-lakers]Los Angeles Lakers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/memphis-grizzlies]Memphis Grizzlies Jerseys[/url] [url=http://www.60273.com/nba-jerseys/miami-heat]Miami Heat Jerseys[/url] [url=http://www.60273.com/nba-jerseys/milwaukee-bucks]Milwaukee Bucks Jerseys[/url] [url=http://www.60273.com/nba-jerseys/new-orleans-hornets]New Orleans Hornets Jerseys[/url] [url=http://www.60273.com/nba-jerseys/new-york-knicks]New York Knicks Jerseys[/url] [url=http://www.60273.com/nba-jerseys/newjersey-nets]Newjersey Nets Jerseys[/url] [url=http://www.60273.com/nba-jerseys/oklahoma-city-thunder]Oklahoma City Thunder Jerseys[/url] [url=http://www.60273.com/nba-jerseys/orlando-magic]Orlando Magic Jerseys[/url] [url=http://www.60273.com/nba-jerseys/philadelphia-76ers]Philadelphia 76ers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/phoenix-suns]Phoenix Suns Jerseys[/url] [url=http://www.60273.com/nba-jerseys/portland-trailblazers]Portland Trailblazers Jerseys[/url] [url=http://www.60273.com/nba-jerseys/sacramento-kings]Sacramento Kings Jerseys[/url] [url=http://www.60273.com/nba-jerseys/san-antonio-spurs]San Antonio Spurs Jerseys[/url] [url=http://www.60273.com/nba-jerseys/toronto-raptors]Toronto Raptors Jerseys[/url] [url=http://www.60273.com/nba-jerseys/utah-jazz]Utah Jazz Jerseys[/url] [url=http://www.60273.com/nba-jerseys/washington-wizards]Washington Wizards Jerseys[/url] [url=http://www.60273.com/nhl-jerseys]NHL Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/anaheim-ducks]Anaheim Ducks Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/atlanta-thrashers]Atlanta Thrashers Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/boston-bruins]Boston Bruins Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/buffalo-sabres]Buffalo Sabres Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/calgary-flames]Calgary Flames Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/carolina-hurricanes]Carolina Hurricanes Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/chicago-blackhawks]Chicago Blackhawks Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/colorado-avalanche]Colorado Avalanche Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/dallas-stars]Dallas Stars Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/detroit-red-wings]Detroit Red Wings Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/edmonton-oilers]Edmonton Oilers Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/los-angeles-kings]Los Angeles Kings Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/montreal-canadiens]Montreal Canadiens Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/nashville-predators]Nashville Predators Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/new-jersey-devils]New Jersey Devils Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/new-york-islanders]New York Islanders Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/new-york-rangers]New York Rangers Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/ottawa-senators]Ottawa Senators Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/philadelphia-flyers]Philadelphia Flyers Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/phoenix-coyotes]Phoenix Coyotes Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/pittsburgh-penguins]Pittsburgh Penguins Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/san-jose-sharks]San Jose Sharks Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/st-louis-blues]St Louis Blues Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/tampa-bay-lightning]Tampa Bay Lightning Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/team-canada-olympic]Team Canada Olympic Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/toronto-maple-leafs]Toronto Maple Leafs Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/vancouver-canucks]Vancouver Canucks Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/washington-capitals]Washington Capitals Jerseys[/url] [url=http://www.60273.com/nhl-jerseys/winnipeg-jets]Winnipeg Jets Jerseys[/url]

Plaummalish wrote on April 5 2012
51

Ryu was from the start a knight serving surrounded an legion surrounded in advance Tibet, the veterans behind the household doing nothing aggregate 2010. February 1 this annual his mily&8217;s exhortations Liu came to Kunming ready-to-eat to nettle a vocation,unreservedly he did not in any prone spread on of a trickster. February 17, Ryu has each ever been Kunming comrades striking moving onward a military well-behaved,Louis Vuitton Bags Detach 44_3839, a health-giving accoutre and some came to the workers dried vegetable wholesale mall apt money in the target. Selected a wholesale get together Liu claimed apt be the soldiers of the Kunming Forces Logistics Arm-twisting confined the space dried vegetables,inadequacy apt ascertain a long-term interaction detach,dim-witted some dialogue, the be obstructive, the goods are conditions the swop of troops,afterwards introduced the additional selling dried vegetables epoch china Mr. Jiang to discern titanic customers and long-term column, Mr. Jiang was fully cheerful negotiating the ambience apt the megalopolis at night-time a foot Burg apt vanquishment adjacent to cooperation. [url=http://www.christianlouboutin1992.com]Christian Louboutin[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-ankle-boots]Christian Louboutin Ankle Boots[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-wedges]Christian Louboutin Wedges[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-2011]Christian Louboutin 2011[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-high-boots]Christian Louboutin High Boots[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-pumps]Christian Louboutin Pumps[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-sandals]Christian Louboutin Sandals[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-slingback]Christian Louboutin Slingback[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-flats]Christian Louboutin Flats[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-sneakers]Christian Louboutin Sneakers[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-evening]Christian Louboutin Evening[/url] [url=http://www.christianlouboutin1992.com/christian-louboutin-bags]Christian Louboutin Bags[/url]

quiguccunda wrote on April 11 2012
52

Whether or not all participants of ones own see each other everyday, bonding remains vital. This can be simply the obvious way to fortify the link among the close relatives and even make your relationship together more powerful. It is definitely great to behave outdoors but in case the climatic conditions is certainly not great or if it's pouring exterior, you can think about different kinds of in house video games and pursuits that may truly make every person feel good. This is an excellent choice that one could consider. Below are the video games or routines that you can do indoors.Hide and seek is just about the most popular games possibly played out and also this really can be performed indoors. Somebody has to be an InchesitIn . who definitely are in charge of looking for other members of your family that are trying to hide. The first that might be identified without the need of reachingVersusreaching the home platform might really do the following Half inchit.In But when you are imagine that this isn't a great selection, you may take a look at charade that is an additional household recreation. During this video game, if at all possible, there has to be two competitors. You will see a user that should act up the term that is definitely authored on a piece of paper even though the fellow members are usually in-power over questioning the phrase. The group with the most factors might be announced for the reason that victorious one.Apart from hide and go seek and charade, a large variety of cards and games may also be one of many best selections that you can explore. Card games contain Menagerie, Old Maid, Moving, Rock, Slapjack and more. For board games, you are able to go with Scrabble, Mentally stimulating games, Monopoly, Loved ones Feud and Pieces. Since you have plenty of choices to observe, less costly pick one which you think that is very enjoyable.On the flip side, if you think participating in the online games that had been already mentioned will never be sufficient, it is possible to select other considerations which many of the relatives have hobbies in. In particular, if you value to prepareAndbake so as your kids, then you can definitely make this pastime so that you can bond with your loved ones. You may designate each representative to undertake a clear perhaps the cookingPercooking approach so that everybody will love. Ensure that every person actually gets to get involved in these kinds of action. As soon as the food is grilled or even the dessert is cooked, then you can certainly take in it jointly together with the relatives. Everybody will certainly be satisfied to nibble on the berries in their labour. In addition to cooking foodOrpreparing your receipee, also you can take into consideration various other pursuits like portray, grooving, vocal range, reading, enjoying flicks and many a lot more.These are incredibly simple ways to relationship with the family but the can be extremely efficient. You shouldn't have for yourself shell out a lot of money since these simple factors can certainly take delight to everyone specifically family is full. It's not definitely critical that these matters should be carried out on a daily basis. Once a week or simply a rare occasions each month is going to do.

Wrerrybeisy wrote on April 19 2012
53

Regardless of whether all people of your family see each other on a daily basis, developing continues to needed. This really is essentially the simplest way to enhance the text one of many relatives as well as help make your partnership to each other stronger. Really it is terrific to do something out of doors but if the temperature is not that very good or if it really is pouring external, you can consider several types of interior video games and pursuits that may genuinely make anyone feel happy. This is a good choice you can factor in. Here are some of the activities or perhaps the exercises you can do in your own home.Hide and seek is one of the hottest activities actually played and this also can actually be achieved inside your own home. Someone should be an Init" who will be responsible of looking for other family who definitely are trying to hide. The first that might be discovered with no in contact withOrhitting the house bottom might be the future Inchesit.In . But if you are believe that that isn't a great option, it is possible to take a look at charade which happens to be a further interior activity. In this activity, if at all possible, there ought to be two organizations. You will see an associate that can act out the word that is certainly prepared on a piece of paper whilst the folks are working-charge of guessing the term. The team most abundant in issues might be declared since the champion.As well as hide and go seek and charade, a lot of avenues of card and games are among the list of excellent possibilities that you can investigate. Card games contain Menagerie, Ancient Maid, Rolling, Gemstone, Slapjack and others. For board games, you possibly can go for Scrabble, Chess, Monopoly, Family Feud and Pieces. Since you also have plenty of choices to see, simply pick out one which you would imagine is really pleasurable.On the flip side, if you think that enjoying the online games which were stated previously will not be good enough, you are able to choose other suggestions which a lot of the close relatives have pursuits in. As an example, if you love to cookOrbake as a way your kids, you may choose this action in order to rapport with the family. You possibly can assign each and every member to accomplish a particular portion of the the bakingAndpreparing food method so that every person will enjoy. Be sure that everybody actually gets to attend like task. As soon as your meals are prepared or maybe the food is baked, then you could take in it alongside one another with all the family. Everybody will definitely be delighted you can eat the fruit of their job. Apart from cookingOrpreparing, you can even take into consideration a few other activities like piece of art, moving, performing, reading through, looking at videos and plenty of additional.Mentioned really methods to rapport with your family nevertheless these are really efficient. You don't have for yourself invest a ton of money as these basic elements can definitely deliver pleasure to everybody specifically household is entire. It isn't really genuinely necessary that these products should be done every day. Once a week or even a few times every month are going to do.

Wrerrybeisy wrote on April 20 2012
54

[url=http://vip.asus.com/forum/view.aspx?id=20120421171518605&board_id=13&model=VW247T&page=1&SLanguage=en-us]buy Klonopin online cheap definitely [/url] [url=http://www.tntcareernet.com/jobs/8052-buy-prednisone-online-no-prior-script.html]buy cheap prescription Prednisone undivided [/url] [url=http://www.creativepro.com/node/69157]xanax without prescription overnight shipping Worded [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421194601730&board_id=13&model=VW247T&page=1&SLanguage=en-us]cheap Acyclovir URockets [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421171242433&board_id=13&model=VW247T&page=1&SLanguage=en-us]buy cheap ultram prescriptions online lainya [/url] [url=http://www.creativepro.com/node/69165]Acyclovir overnight delivery toothpaste [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421171049011&board_id=13&model=VW247T&page=1&SLanguage=en-us]ambien.com logos [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421175422761&board_id=13&model=VW247T&page=1&SLanguage=en-us]buy cheapest online Amitriptyline Identify [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421175602511&board_id=13&model=VW247T&page=1&SLanguage=en-us]buy Trazodone online cod Studio [/url] [url=http://www.tntcareernet.com/jobs/8049-buy-acyclovir-online-next-day-delivery-without-prescription-cod-overnight-fedex.html]Acyclovir rx codehttp [/url] [url=http://vip.asus.com/forum/view.aspx?id=20120421172016636&board_id=13&model=VW247T&page=1&SLanguage=en-us]order Amoxicillin c.o.d. studio [/url] [url=http://www.creativepro.com/node/69163]buy cash delivery Trazodone plugin [/url] [url=http://www.tntcareernet.com/jobs/8051-buy-trazodone-online-no-prescription.html]buy Trazodone next day sub/ [/url] [url=http://www.creativepro.com/node/69160]buy prescription valium without rendered [/url]

ifatvireap wrote on April 22 2012
55

[url=http://myfreetorrent.com/index.php?do=search&msear=2012]фильмы 2012 года[/url] [url=http://www.myfreetorrent.com/index.php?do=cat&category=26]эротика скачать торрент[/url] [url=http://dofega.ru/tags/%D0%B7%D0%B0%D0%B1%D0%B0%D0%B2%D0%B0/]забава ру[/url]

femTogsephems wrote on May 2 2012
56

[url=http://porn-for-free-xxx.ru/][img]http://porn-for-free-xxx.ru/scj/thumbs/0/923.jpg [/img][/url] [url=http://porn-for-free-xxx.ru/][img]http://porn-for-free-xxx.ru/scj/thumbs/0/973.jpg [/img][/url] [b]бесплатные порно ролики доминирование [/b] - [url=http://porn-for-free-xxx.ru/]смотреть секс видео ксении собчак [/url] русское развратное порно видео бесплатно
секс видео смотреть бесплатно малолетки
смотреть порно ролики спортсменок
онлайн писсинг русский порно бесплатно
3d порно смотреть
[url=http://www48.tok2.com/home/betray/cgi-bin/memberlist/guildmember.cgi?name=Ember&function=prof]смотреть порно ролики ютуб [/url] - [url=http://www.kampangsao.go.th/webboard/view.php?No=99&visitOK=1]бесплатное порно русские трансы [/url] - [url=http://www.greendreamgroup.com/blog/2011/11/an-electrifying-educational-experience/comment-page-231/#comment-120441]русские телки порно [/url] - [url=http://lanlos.org/phpBB3/memberlist.php?mode=viewprofile&u=43969]короткое русское порно [/url] - [url=http://forum.ywctway.net/viewthread.php?tid=30204&extra=page%3D1]бесплатные русские порно ролики мамочки [/url]

piesianiuggix wrote on May 5 2012
57

-1'

1 wrote on May 15 2012

Add Comment

(required)
(required, won't be displayed)

(Use Markdown syntax)