if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method = this, args = $A(arguments), object = args.shift();
		return function(event) {
			return __method.apply(object, [event || window.event].concat(args));
		}
	}
}
var $A = Array.from = function(iterable) {
	if (!iterable) return [];
	if (iterable.toArray) {
		return iterable.toArray();
	} else {
		var results = [];
		for (var i = 0; i < iterable.length; i++)
			results.push(iterable[i]);
		return results;
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVVWP) == "undefined") {
	IDTVVWP = function () {this.initialize.apply(this, arguments);};
	IDTVVWP.prototype = {
		frame: null,
		initialize: function (ds) {

			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_fabe689d56')[0];
				} catch(e) {}
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_inres"></div><div class="idtv_bb">' +
				'<div class="idtv_btn_prev"></div><div class="idtv_btn_next"></div><div class="idtv_bb_pages"></div></div></div>';
			var divs = this.element.getElementsByTagName('div');
			this.elementout = divs[0];
			this.elementin = divs[1];
			this.btn_prev = divs[3];
			this.btn_next = divs[4];
			this.pagers_area = divs[5];
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				this.btn_prev.onclick = this.prevP.bindAsEventListener(this);
				this.btn_next.onclick = this.nextP.bindAsEventListener(this);
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				this.results = new Array();
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if ((i % this.ds.cols + Math.floor(i / this.ds.cols)) % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');  // comment only to fix code coloring "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length && jsonArr[i].length_seconds ?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title)
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + (jsonArr[i].title ? jsonArr[i].title : '') + "</span>";
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + (jsonArr[i].author ? jsonArr[i].author : '') + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') + (jsonArr[i].length_seconds ? jsonArr[i].length_seconds : '');
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + (jsonArr[i].view_count ? this.formatCommasInt(jsonArr[i].view_count) : '');
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + (jsonArr[i].rating_avg ? Math.customRound(jsonArr[i].rating_avg, 1) : '') + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + (jsonArr[i].description ? jsonArr[i].description : '') + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate)
						nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
					nr.innerHTML += t;
					this.elementin.appendChild(nr);
					nr.style.display = 'none';
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
				this.showRes();
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/fabe689d56/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded) {
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh);
				}
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

			}
			/*this.frameholder.style.top = this.results[i].offsetTop + "px";
			this.frameholder.style.left = this.results[i].offsetLeft + this.results[i].offsetWidth + "px";*/
			var scrlX = (window.pageXOffset || document.body.scrollLeft || document.documentElement.scrollLeft);
		    var scrlY = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		    var viewportW = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth ;
		    var viewportH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		    var element = this.elementout;
			var elFixedX = 0, elFixedY = 0;
		    do {
		    	elFixedY += element.offsetTop  || 0; elFixedX += element.offsetLeft || 0; element = element.offsetParent || element.parentNode;
		    } while (element);
		    var nx = 0, ny =0;
			switch (this.ds.plpl) {
				case "center":
					nx = scrlX + ((viewportW - this.ds.plw) / 2) - elFixedX;
					ny = scrlY + ((viewportH - this.ds.plh) / 2) - elFixedY;
					break;
				case "left":
					nx = this.results[i].offsetLeft - this.ds.plw;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "right":
					nx = this.results[i].offsetLeft + this.results[i].offsetWidth;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "top":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop - this.ds.plh;
					break;
				case "bottom":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop + this.results[i].offsetHeight;
					break;
				default: return;
			}
			if (this.ba) {
				nx += elFixedX; ny += elFixedY;
				if (nx < 0) nx = 0;
				if (ny < 0) ny = 0;
			} else {
				if (this.ds.plpl != "center") { // some checks if top/left it is out of the viewport
					var rx = nx + elFixedX, ry = ny + elFixedY;
					if (rx < 0) nx -= rx;
					if (ry < 0) ny -= ry;
				}
			}
			this.frameholder.style.left = nx + "px";
			this.frameholder.style.top = ny + "px";

			this.frameholder.style.display = 'block';
			var loaded = false;
			try {
				if (this.frame.contentWindow && this.frame.contentWindow.Player) { // detect if script access is allowed
					this.frame.contentWindow.Player.playlist.selectItem(i);
					this.frame.contentWindow.Player.playlist.playSelected();
					loaded = true;
				}
			} catch (e) {};
			if (!loaded) {
				if (this.frame.parentNode == this.frameholder) this.frameholder.removeChild(this.frame);
				this.frame.src = 'http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+(this.ds.data.results[i].id ? this.ds.data.results[i].id : i);
				this.frameholder.appendChild(this.frame);
			}
		},
		closeplr: function (event) { this.frameholder.style.display='none'; this.frameholder.removeChild(this.frame); },
		showRes: function () {
			if (this.results.length == 0)
				this.pagers_area.innerHTML = 'no results';
			else {
				var s = this.page * this.ds.pp, e = Math.min (s + this.ds.pp, this.results.length) - 1;
				for (var i = 0, n = this.results.length; i < n; i ++)
					this.results[i].style.display =  (i < s || i > e ? 'none' : 'block');
				this.pagers_area.innerHTML = (s+1) + ' - ' + (e+1) + ' (' + this.results.length + ')';
			}
		},
		nextP: function () { if (this.page < this.maxpage - 1) { this.page ++; this.showRes(); } },
		prevP: function () { if (this.page > 0) { this.page --; this.showRes(); } },
		formatCommasInt: function (val) {
			var s = new String(val);
			var rgx = /(\d+)(\d{3})/;
			while (rgx.test(s)) s = s.replace(rgx, '$1' + ',' + '$2');
			return s;
		}
	}
}

var IDTVLBDataSourcefabe689d56 = {
	id: 'fabe689d56', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 197, height: 152, pp: 1,
	rows: 1, cols: 1,
	plw: 500, plh: 420,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVVWP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'O',
	reverse_playlist: false,
	pldelta: 0,
Table './idesktop/yt_cache' is marked as crashed and should be repaired<br>Query: insert into yt_cache values ('http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?max-results=10&start-index=1&safeSearch=moderate&time=today&format=5&v=2&client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&key=AI39si5QWl6WGY_2385XkoUaIPz1HOMVnixcqhiWVfd_YNvJAeHGWsXOBTb-a3jz5noA5jGUkd5ydVTwzEy8OLkG4jC_Lh7Mew', 218, '<?xml version=\'1.0\' encoding=\'UTF-8\'?><feed xmlns=\'http://www.w3.org/2005/Atom\' xmlns:media=\'http://search.yahoo.com/mrss/\' xmlns:openSearch=\'http://a9.com/-/spec/opensearch/1.1/\' xmlns:gd=\'http://schemas.google.com/g/2005\' xmlns:yt=\'http://gdata.youtube.com/schemas/2007\' gd:etag=\'W/&quot;DEYEQn8yeCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:standardfeed:us:top_rated</id><updated>2012-02-08T21:41:43.190-08:00</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><title>Top Rated</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/browse?s=tr\'/><link rel=\'http://schemas.google.com/g/2005#feed\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://schemas.google.com/g/2005#batch\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/batch?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=1&amp;max-results=10&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.206&amp;format=5&amp;time=today&amp;safeSearch=moderate&amp;v=2\'/><link rel=\'service\' type=\'application/atomsvc+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated?alt=atom-service&amp;v=2\'/><link rel=\'next\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=11&amp;max-results=10&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.206&amp;format=5&amp;time=today&amp;safeSearch=moderate&amp;v=2\'/><author><name>YouTube</name><uri>http://www.youtube.com/</uri></author><generator version=\'2.1\' uri=\'http://gdata.youtube.com\'>YouTube data API</generator><openSearch:totalResults>97</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>10</openSearch:itemsPerPage><entry gd:etag=\'W/&quot;DEEFQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:5kZ4xuAvfSg</id><published>2012-02-08T03:21:01.000Z</published><updated>2012-02-09T05:50:10.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RAY WILLIAM JOHNSON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RAYWILLIAMJOHNSON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'videos\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rwj\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'three\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equalsthree\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'=3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals three\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals 3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'raywiliamjohnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ray wiliam johnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ray williams johnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Elephant Hits Man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dude Passes Out\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Who Is Ray?\'/><title>FIGHTING THE ELEPHANT - Ray William Johnson Video</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/5kZ4xuAvfSg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=5kZ4xuAvfSg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=5kZ4xuAvfSg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/5kZ4xuAvfSg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>RayWilliamJohnson</name><uri>http://gdata.youtube.com/feeds/api/users/Gt7X90Au6BV8rf49BiM6Dg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'39835\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/5kZ4xuAvfSg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'443\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache5.c.youtube.com/CnELENy73wIaaAkofS_gxnhG5hMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'443\' yt:format=\'1\'/><media:content url=\'rtsp://v3.cache8.c.youtube.com/CnELENy73wIaaAkofS_gxnhG5hMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'443\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>RayWilliamJohnson</media:credit><media:description type=\'plain\'>THANX FOR SUBSCRIBING TO MY VIDEOS!! :D

MY TWITTER: https://twitter.com/RayWJ 

MY FACEBOOK: http://www.facebook.com/raywilliamjohnson

MY GOOGLE+  http://Gplus.to/RayWJ

STORE: http://www.raywj.com/shop/

WEBSITE: http://raywj.com

=3 Tshirt Girl: http://twitter.com/TheKylaLeon

EQUALS 3 IN SPANISH: http://www.youtube.com/IgualATres

**********************************************************************
   Here are the links to the full reviews of the content discussed in this video. Please don\'t harass the video creators or send them hate-messages. If you like what you see on each of their channels, feel free to subscribe to them. 
:) Thanx:


Elephant Hits Man: http://www.youtube.com/watch?v=VZKwkGqDIQY&amp;feature=player_embedded

Dude Passes Out: http://www.youtube.com/watch?v=3D5o3PYcJoM&amp;feature=player_embedded

WALL STREET JOURNAL VIDEO:
http://www.youtube.com/watch?v=JUIr9f2Fob0

Who is Ray?: http://online.wsj.com/article/SB10001424052970204624204577179073123148432.html#articleTabs%3Dcomments
http://www.youtube.com/watch?v=JUIr9f2Fob0

CQOTD: http://www.youtube.com/watch?v=ZgDuoTqjDSs

---
\"RAY WILLIAM JOHNSON\" \"Ray William Johnson\" RAYWILLIAMJOHNSON video videos VIDEO VIDEOS raywilliamjohnson \"ray william johnson\" rwj equals three equalsthree =3 \"equals three\" \"equals 3\" raywiliamjohnson \"ray wiliam johnson\" \"ray williams johnson\" \"Elephant Hits Man\" \"Dude Passes Out\" \"Who Is Ray?\"</media:description><media:keywords>RAY WILLIAM JOHNSON, RAYWILLIAMJOHNSON, video, videos, rwj, equals, three, equalsthree, =3, equals three, equals 3, raywiliamjohnson, ray wiliam johnson, ray williams johnson, Elephant Hits Man, Dude Passes Out, Who Is Ray?</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=5kZ4xuAvfSg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:41.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:41.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:32.250\' yt:name=\'end\'/><media:title type=\'plain\'>FIGHTING THE ELEPHANT - Ray William Johnson Video</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'443\'/><yt:uploaded>2012-02-08T03:21:01.000Z</yt:uploaded><yt:videoid>5kZ4xuAvfSg</yt:videoid></media:group><gd:rating average=\'4.883549\' max=\'5\' min=\'1\' numRaters=\'67462\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6367\' viewCount=\'800583\'/><yt:rating numDislikes=\'1964\' numLikes=\'65498\'/></entry><entry gd:etag=\'W/&quot;DEIDQ347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:98NyGAMcTsE</id><published>2012-02-07T08:39:27.000Z</published><updated>2012-02-09T05:49:32.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FPS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RUSSIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FPSRUSSIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GUN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'VIDEO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SHOOTING\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GOLDEN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AK47\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GOLD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SHOOT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FIELD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'STRIP\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AR15\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MOSIN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NAGANT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UZI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RCXD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'IN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'REAL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LIFE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MP5\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SMG\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'S&amp;W\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'500\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'most\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'powerful\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'handgun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jumping\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'weapons\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nature\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hiking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hunting\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'warfare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'garderning\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defense\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'backflip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'self\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'taekwondo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'archery\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'outdoors\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stunts\'/><title>TOP SHOT  EPISODE 1</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/98NyGAMcTsE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_UU4zYC1GgI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=98NyGAMcTsE&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=98NyGAMcTsE\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/98NyGAMcTsE?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>FPSRussia</name><uri>http://gdata.youtube.com/feeds/api/users/EPTp5WMAzjh9mOrKUwRLmQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'18015\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/98NyGAMcTsE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'442\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache8.c.youtube.com/CnELENy73wIaaAnBThwDGHLD9xMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'442\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache8.c.youtube.com/CnELENy73wIaaAnBThwDGHLD9xMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'442\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>FPSRussia</media:credit><media:description type=\'plain\'>FPSRussia Shirts: http://fpsrussia.spreadshirt.com/-C94489
Twitter: http://twitter.com/THEFPSHOW
FaceBook: http://www.facebook.com/FPSRUSSIA
Explosive Targets: http://redtargets.com/

Big thanks to Dustin for coming on and to History for trusting me with his safety haha.

Oh and I should probably mention dont put a grip pod on your 5.7 unless you have the proper licensing like we do, I know it sounds silly but its one of those little modifications that reclassify weapons, kind of like how taking the stock off an AR makes it pistol.</media:description><media:keywords>FPS, RUSSIA, FPSRUSSIA, GUN, VIDEO, SHOOTING, GOLDEN, AK, AK47, GOLD, HOW, TO, SHOOT, FIELD, STRIP, AR15, MOSIN, NAGANT, UZI, RCXD, IN, REAL, LIFE, MP5, SMG, S&amp;W, 500, most, powerful, handgun, jumping, weapons, nature, hiking, defence, hunting, warfare, garderning, defense, backflip, self, taekwondo, archery, outdoors, stunts</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=98NyGAMcTsE&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:41\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:41\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:31.500\' yt:name=\'end\'/><media:title type=\'plain\'>TOP SHOT  EPISODE 1</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'442\'/><yt:uploaded>2012-02-07T08:39:27.000Z</yt:uploaded><yt:videoid>98NyGAMcTsE</yt:videoid></media:group><gd:rating average=\'4.9700556\' max=\'5\' min=\'1\' numRaters=\'32193\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4031\' viewCount=\'514071\'/><yt:rating numDislikes=\'241\' numLikes=\'31952\'/></entry><entry gd:etag=\'W/&quot;DEIMR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:L7s2D5l8zhM</id><published>2012-02-07T07:47:53.000Z</published><updated>2012-02-09T05:49:46.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'epic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'meal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'time\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'burger\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bacon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'baconator\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bacon weave\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'macaroni\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mac and cheese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'kraft dinner\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chicken\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'puff pastry\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crust\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'poutine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fries\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gravy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cheese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pizza\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pepperoni\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pad thai\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'liquor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'appleton\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'apples\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rum\'/><title>Next Level Pies - Epic Meal Time</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/L7s2D5l8zhM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=L7s2D5l8zhM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=L7s2D5l8zhM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/L7s2D5l8zhM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>EpicMealTime</name><uri>http://gdata.youtube.com/feeds/api/users/Yjk_zY-iYR8YNfJmuzd70A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'9928\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/L7s2D5l8zhM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'187\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache1.c.youtube.com/CnELENy73wIaaAkTznyZDza7LxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'187\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAkTznyZDza7LxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'187\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>EpicMealTime</media:credit><media:description type=\'plain\'>Click LIKE/FAV!!  

EpicMealTime creates various Next Level Pies. Burgers, chickens, mac n\' cheese, liquor, pad thai, pizza and poutine all stuffed into delicious baked pies.

GET BACON LUBE AND BACONSALT AND BACONAISE at:  
http://www.epicmealtime.com/bacon

Twitter:
http://www.twitter.com/epicmealtime

Facebook:
http://www.facebook.com/epicmealtime

Buy Our Shirts
http://shop.epicmealtime.com</media:description><media:keywords>epic, meal, time, pies, burger, bacon, baconator, bacon weave, macaroni, mac and cheese, kraft dinner, chicken, puff pastry, crust, poutine, fries, gravy, cheese, pizza, pepperoni, pad thai, liquor, appleton, apples, rum</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=L7s2D5l8zhM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:33.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:46.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:33.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:20.250\' yt:name=\'end\'/><media:title type=\'plain\'>Next Level Pies - Epic Meal Time</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'187\'/><yt:uploaded>2012-02-07T07:47:53.000Z</yt:uploaded><yt:videoid>L7s2D5l8zhM</yt:videoid></media:group><gd:rating average=\'4.8506255\' max=\'5\' min=\'1\' numRaters=\'26939\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2768\' viewCount=\'820149\'/><yt:rating numDislikes=\'1006\' numLikes=\'25933\'/></entry><entry gd:etag=\'W/&quot;DEEESH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:4TPwN4l7YvA</id><published>2012-02-08T23:01:49.000Z</published><updated>2012-02-09T05:50:09.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ryan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'higa\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'million\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'subscribers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nigahiga\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'how\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'to\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'make\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'youtube\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><title>5 Million Subscribers</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/4TPwN4l7YvA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=4TPwN4l7YvA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/4TPwN4l7YvA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/4TPwN4l7YvA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/4TPwN4l7YvA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/4TPwN4l7YvA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=4TPwN4l7YvA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/4TPwN4l7YvA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>nigahiga</name><uri>http://gdata.youtube.com/feeds/api/users/SAUGyc_xA8uYzaIVG6MESQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/4TPwN4l7YvA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'10007\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/4TPwN4l7YvA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'111\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache4.c.youtube.com/CnELENy73wIaaAnwYnuJN_Az4RMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'111\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache6.c.youtube.com/CnELENy73wIaaAnwYnuJN_Az4RMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'111\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>nigahiga</media:credit><media:description type=\'plain\'>This video shows you the secrets and my glamourous life as a youtuber.
Thank you all so much for subscribing!  I say it all the time but I truly appreciate you all watching.  More to come soon!  Already in production.. ryan higa production.

Also check out my:
twitter
http://www.twitter.com/therealryanhiga
facebook
http://www.facebook.com/higatv
2nd channel
http://www.youtube.com/higatv</media:description><media:keywords>ryan, higa, million, subscribers, nigahiga, how, to, make, youtube, video</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=4TPwN4l7YvA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/4TPwN4l7YvA/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/4TPwN4l7YvA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/4TPwN4l7YvA/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:27.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/4TPwN4l7YvA/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/4TPwN4l7YvA/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:23.250\' yt:name=\'end\'/><media:title type=\'plain\'>5 Million Subscribers</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'111\'/><yt:uploaded>2012-02-08T23:01:49.000Z</yt:uploaded><yt:videoid>4TPwN4l7YvA</yt:videoid></media:group><gd:rating average=\'4.974727\' max=\'5\' min=\'1\' numRaters=\'27381\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2400\' viewCount=\'317\'/><yt:rating numDislikes=\'173\' numLikes=\'27208\'/></entry><entry gd:etag=\'W/&quot;DEIDRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:Yyd0sd8XEBY</id><published>2012-02-07T22:52:58.000Z</published><updated>2012-02-09T05:49:34.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sxephil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'philip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defranco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lindsay\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lohan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lilyhammer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Netflix\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jessica\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nigri\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Prop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Eight\'/><title>LINDSAY LOHAN AS TALENTED AS PROP 8 IS CONSTITUTIONAL!!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Yyd0sd8XEBY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RWIosqbTnzc?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Yyd0sd8XEBY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=Yyd0sd8XEBY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/Yyd0sd8XEBY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>sxephil</name><uri>http://gdata.youtube.com/feeds/api/users/lFSU9_bUb4Rc6OYfTt5SPw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'21286\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/Yyd0sd8XEBY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'424\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache3.c.youtube.com/CnELENy73wIaaAkWEBffsXQnYxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'424\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache5.c.youtube.com/CnELENy73wIaaAkWEBffsXQnYxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'424\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>sxephil</media:credit><media:description type=\'plain\'>Check out today\'s SourceFed!! http://www.youtube.com/watch?v=RWIosqbTnzc&amp;list=PL8F30E917C5D2E4D4

FACEBOOK: http://on.fb.me/mqpRW7   TWITTER:  http://Twitter.com/PhillyD

Philly D OFFICIAL APP: http://bit.ly/aIyY0w

----------------------------
ALL of today\'s Stories:
Motorcycle Circus Crash:
http://gizmo.do/wtFsMD

Lilyhammer Netflix Launch:
http://gaw.kr/yIhQQb

Machete Sequel??
http://bit.ly/x8GcAC

New Spiderman Trailer:
http://chzb.gr/zL5dwi

Best. Bet. Ever:
http://bit.ly/wuK5Pf

Lindsay Lohan Photos:
http://gaw.kr/xAWWoc

Jessica Nigri\'s Skyrim:
http://bit.ly/y7ZzKG

Cop Chase. For no reason.
http://bit.ly/w8GYXS

Prop 8 \"Unconstitutional\"
http://huff.to/wW9qXc
----------------------------

music by:
Ronald Jenkees: http://bit.ly/mQsz3h
@hagemeister
@urbandelights</media:description><media:keywords>sxephil, philip, defranco, Lindsay, Lohan, Lilyhammer, Netflix, Jessica, Nigri, Prop, Eight</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Yyd0sd8XEBY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:46\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:18\' yt:name=\'end\'/><media:title type=\'plain\'>LINDSAY LOHAN AS TALENTED AS PROP 8 IS CONSTITUTIONAL!!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'424\'/><yt:uploaded>2012-02-07T22:52:58.000Z</yt:uploaded><yt:videoid>Yyd0sd8XEBY</yt:videoid></media:group><gd:rating average=\'4.9017878\' max=\'5\' min=\'1\' numRaters=\'24559\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1067\' viewCount=\'371868\'/><yt:rating numDislikes=\'603\' numLikes=\'23956\'/></entry><entry gd:etag=\'W/&quot;DEINSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:x29GVD6fyKw</id><published>2012-02-07T21:18:42.000Z</published><updated>2012-02-09T05:49:58.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mw3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'moab\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'modern\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'warfare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'live\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stream\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cod\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'call\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'of\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'duty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'whiteboy7thst\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Call Of Duty: Modern Warfare 3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'World\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'world record\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'worlds\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fastest\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'codmw3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nuke\'/><title>MW3: MOABBBB LIVE STREAM!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/x29GVD6fyKw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Sz1-QiwiesY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=x29GVD6fyKw&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/x29GVD6fyKw/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/x29GVD6fyKw/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/x29GVD6fyKw/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/x29GVD6fyKw/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#live.event\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/WhiteBoy7thst/live/events/Z-q7JeHIZggx5k0bsDnqJ5Urkq8DXgGk?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=x29GVD6fyKw\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/x29GVD6fyKw?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>WhiteBoy7thst</name><uri>http://gdata.youtube.com/feeds/api/users/G7yOZ7cPubnm2J6J8evlhA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/x29GVD6fyKw/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'133802\'/></gd:comments><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/x29GVD6fyKw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'13184\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache8.c.youtube.com/CnELENy73wIaaAmsyJ8-VEZvxxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'13184\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache4.c.youtube.com/CnELENy73wIaaAmsyJ8-VEZvxxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'13184\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>WhiteBoy7thst</media:credit><media:description type=\'plain\'>http://www.whiteboy7thst.spreadshirt.com Get your MOAB Swag here!</media:description><media:keywords>mw3, moab, modern, warfare, live, stream, cod, call, of, duty, whiteboy7thst, Call Of Duty: Modern Warfare 3, World, world record, worlds, fastest, codmw3, nuke</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=x29GVD6fyKw&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/x29GVD6fyKw/default.jpg\' height=\'90\' width=\'120\' time=\'01:49:52\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/x29GVD6fyKw/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/x29GVD6fyKw/1.jpg\' height=\'90\' width=\'120\' time=\'00:54:56\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/x29GVD6fyKw/2.jpg\' height=\'90\' width=\'120\' time=\'01:49:52\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/x29GVD6fyKw/3.jpg\' height=\'90\' width=\'120\' time=\'02:44:48\' yt:name=\'end\'/><media:title type=\'plain\'>MW3: MOABBBB LIVE STREAM!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'13184\'/><yt:uploaded>2012-02-07T21:18:42.000Z</yt:uploaded><yt:videoid>x29GVD6fyKw</yt:videoid></media:group><gd:rating average=\'4.9020834\' max=\'5\' min=\'1\' numRaters=\'20303\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2056\' viewCount=\'0\'/><yt:rating numDislikes=\'497\' numLikes=\'19806\'/></entry><entry gd:etag=\'W/&quot;DEEESX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:CJOVntAve4M</id><published>2012-02-09T01:53:29.000Z</published><updated>2012-02-09T05:50:08.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Comedy\' label=\'Comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jenna\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'marbles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mourey\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'what\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'boys\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'do\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'in\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bathroom\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'morning\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'girls\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'marblesisa\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'inamouse\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'costume\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'andkermit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'isakitty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'inashow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ponycostume\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'thatswhy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'theyareboth\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sofucking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'good\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'looking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'andeverytime\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'wegoto\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'theparkall\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'thebitches\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'arelikeyokermit/marbles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GETME\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FUCKINGPREGNANT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'andthentheyare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'likeohwait\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'wedonthaveourballs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'anymoreWTF?\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'unicorn\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vaginas\'/><title>What Boys Do In The Bathroom In The Morning</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/CJOVntAve4M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=CJOVntAve4M&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CJOVntAve4M/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CJOVntAve4M/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CJOVntAve4M/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CJOVntAve4M/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=CJOVntAve4M\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/CJOVntAve4M?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>JennaMarbles</name><uri>http://gdata.youtube.com/feeds/api/users/9gFih9rw0zNCK3ZtoKQQyA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/CJOVntAve4M/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5647\'/></gd:comments><media:group><media:category label=\'Comedy\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Comedy</media:category><media:content url=\'http://www.youtube.com/v/CJOVntAve4M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'157\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache8.c.youtube.com/CnELENy73wIaaAmDey_QnpWTCBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'157\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache4.c.youtube.com/CnELENy73wIaaAmDey_QnpWTCBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'157\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>JennaMarbles</media:credit><media:description type=\'plain\'>Please subscribe to my channel and my vlog channel!  I make new videos here every Wednesday and make vlogs during my majestical daily life. 
JennaMarbles
JennaMarblesVlog

Facebook: 
http://www.facebook.com/pages/Jenna-Mourey/311917224927

Twitter:
https://twitter.com/#!/Jenna_Marbles
@Jenna_Marbles

@CharlesMarbles

@Kermit_thedog

T-Shirts (so far, sorry we\'re working on more!!)
http://www.districtlines.com/jennamarbles

Blog:
http://www.jennamarblesblog.com/

Tumblr: 
http://jennamarbles.tumblr.com/</media:description><media:keywords>jenna, marbles, mourey, what, boys, do, in, the, bathroom, morning, girls, marblesisa, bat, inamouse, costume, andkermit, isakitty, inashow, ponycostume, thatswhy, theyareboth, sofucking, good, looking, andeverytime, wegoto, theparkall, thebitches, arelikeyokermit/marbles, GETME, FUCKINGPREGNANT, andthentheyare, likeohwait, wedonthaveourballs, anymoreWTF?, unicorn, vaginas</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=CJOVntAve4M&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CJOVntAve4M/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CJOVntAve4M/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CJOVntAve4M/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:39.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CJOVntAve4M/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CJOVntAve4M/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:57.750\' yt:name=\'end\'/><media:title type=\'plain\'>What Boys Do In The Bathroom In The Morning</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'157\'/><yt:uploaded>2012-02-09T01:53:29.000Z</yt:uploaded><yt:videoid>CJOVntAve4M</yt:videoid></media:group><gd:rating average=\'4.9090643\' max=\'5\' min=\'1\' numRaters=\'17067\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2262\' viewCount=\'306\'/><yt:rating numDislikes=\'388\' numLikes=\'16679\'/></entry><entry gd:etag=\'W/&quot;DEIGQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:dZNG12rPw9Y</id><published>2012-02-07T17:38:34.000Z</published><updated>2012-02-09T05:48:40.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Games\' label=\'Gaming\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Skyrim\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MP7\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'free for all\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'modern\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'warfare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stealth\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bomber\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mw3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'patch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fmg9\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'quick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rank\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'up\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fast\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'team\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defender\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ffa\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ac130\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'class\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'setup\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'power\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'position\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'woodysgamertag\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'seatown\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dome\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'arkaden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bakaara\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bakara\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'resistance\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'downturn\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bootleg\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'underground\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'outpost\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mission\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'modern warfare 3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'call\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'duty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Call Of Duty: Modern Warfare 3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Call Duty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'xbox\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'free\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'for\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'all\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'p90\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'domination\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'commentary\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gold gun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'color\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'blind\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'assist\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hidden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Secret\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Live\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mail\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'monday\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'juggernaut\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CM901\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'striker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shotgun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gamebattles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gb\'/><title>Whats wrong with Colin?</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/dZNG12rPw9Y?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=dZNG12rPw9Y&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dZNG12rPw9Y/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dZNG12rPw9Y/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dZNG12rPw9Y/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dZNG12rPw9Y/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=dZNG12rPw9Y\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/dZNG12rPw9Y?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>WoodysGamertag</name><uri>http://gdata.youtube.com/feeds/api/users/IPVJoHb_A5S3kcv3TJlyEg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/dZNG12rPw9Y/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'6897\'/></gd:comments><yt:hd/><media:group><media:category label=\'Gaming\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Games</media:category><media:content url=\'http://www.youtube.com/v/dZNG12rPw9Y?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'486\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache2.c.youtube.com/CnELENy73wIaaAnWw89q10aTdRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'486\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache3.c.youtube.com/CnELENy73wIaaAnWw89q10aTdRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'486\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>WoodysGamertag</media:credit><media:description type=\'plain\'>It\'s funny, there are some sheeple that listen to haters and think that any time I talk about my son I\'m exploiting him.  He\'s a part of my life and I share my life experiences with people on this channel.  If a person thinks I should be hiding who he is that says more about him than it does me. 

I know Colin and he is awesome. I will not back off from sharing any part of my life because some hater has tried to define what the rules are on my channel.

T-Shirts: http://woodysgamertag.spreadshirt.com
Like My Page: http://facebook.com/woodysgamertag
Twitter: http://twitter.com/woodysgamertag
Google+: http://gplus.to/woodysgamertag
Tumblr: http://woodysgamertag.tumblr.com</media:description><media:keywords>Skyrim, MP7, free for all, modern, warfare, stealth, bomber, mw3, patch, fmg9, quick, tip, rank, up, fast, team, defender, ffa, ac130, class, setup, power, position, woodysgamertag, seatown, dome, arkaden, bakaara, bakara, resistance, downturn, bootleg, underground, outpost, mission, modern warfare 3, call, duty, Call Of Duty: Modern Warfare 3, Call Duty, xbox, free, for, all, p90, domination, commentary, gold gun, color, blind, assist, Hidden, Secret, Live, Chat, mail, monday, juggernaut, CM901, striker, spas, shotgun, gamebattles, gb</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=dZNG12rPw9Y&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dZNG12rPw9Y/default.jpg\' height=\'90\' width=\'120\' time=\'00:04:03\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dZNG12rPw9Y/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dZNG12rPw9Y/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:01.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dZNG12rPw9Y/2.jpg\' height=\'90\' width=\'120\' time=\'00:04:03\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dZNG12rPw9Y/3.jpg\' height=\'90\' width=\'120\' time=\'00:06:04.500\' yt:name=\'end\'/><media:title type=\'plain\'>Whats wrong with Colin?</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'486\'/><yt:uploaded>2012-02-07T17:38:34.000Z</yt:uploaded><yt:videoid>dZNG12rPw9Y</yt:videoid></media:group><gd:rating average=\'4.8832793\' max=\'5\' min=\'1\' numRaters=\'12954\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1377\' viewCount=\'118528\'/><yt:rating numDislikes=\'378\' numLikes=\'12576\'/></entry><entry gd:etag=\'W/&quot;DEYFRn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:MS-6VoCTqsg</id><published>2012-02-07T11:30:16.000Z</published><updated>2012-02-09T05:41:57.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'die\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'aussenseiter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'liebe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hass\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hater\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fans\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'wahrheit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gerüchte\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'geld\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'partner\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'youtube\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'juliensblog\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'humor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'therapie\'/><title>Das ehrlichste Video! | DieAussenseiter</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MS-6VoCTqsg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MS-6VoCTqsg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MS-6VoCTqsg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MS-6VoCTqsg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MS-6VoCTqsg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MS-6VoCTqsg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=MS-6VoCTqsg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/MS-6VoCTqsg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>DieAussenseiter</name><uri>http://gdata.youtube.com/feeds/api/users/Kn1vL4Ou4DKu0BlcK3NlDQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/MS-6VoCTqsg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'4800\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/MS-6VoCTqsg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'1411\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache7.c.youtube.com/CnELENy73wIaaAnIqpOAVrovMRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'1411\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache5.c.youtube.com/CnELENy73wIaaAnIqpOAVrovMRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'1411\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>DieAussenseiter</media:credit><media:description type=\'plain\'>Es gibt YouTuber (auch in Deutschland), die das 2fache, das 3fache oder sogar das 5fache von dem verdienen, was wir verdienen, aber ausgerechnet wir werden als Bonzen bezeichnet, obwohl wir unsere Videos seit Jahren mit Leidenschaft machen... Solche Unterstellungen machen uns ganz schön fertig, deswegen haben wir dieses Video aufgenommen, um ein paar Sachen klarzustellen!

Hallo ihr Lieben:) Das folgende Video soll kein Mitleid erregen oder jemanden Schuldgefühle geben, sondern etwas Verständnis für die Welt, die Mitmenschen und vor allem uns erwecken. Nichts ist perfekt auch wir sind nicht perfekt! Auch wir haben Menschen verletzt und wurden verletzt, aber wir versuchen bessere Menschen zu werden und uns war es sehr wichtig dieses Video zu drehen, in dem wir ein paar Sachen ansprechen, die uns am Herzen liegen! Dieses Video wurde spontan und ehrlich aufgenommen um all die Gerüchte aus der Welt zu schaffen, welche uns echt manchmal auf die Nerven gehen. Unsere Denkweise ist heute etwas anders als vor ein paar Jahren.   

Bald erscheint unser 100% selbst erschaffenes Buch, bei dem wir komplett selbst für Text und die Bilder verantwortlich sind. Außerdem arbeiten wir an vielen neuen Videos, um euch weiterhin zu unterhalten, zumindest die, die uns nicht dafür hassen, was wir gern tun - Entertainment. Wir wollen den Menschen zeigen, dass man im Leben Spaß haben kann, egal wie schwer es manchmal zu sein scheint und hoffentlich hört ihr auf uns und auf euer Herz und versucht so wie wir bessere Menschen zu werden :)

Viel Spaß mit DieAussenseiter!</media:description><media:keywords>die, aussenseiter, liebe, hass, hater, fans, wahrheit, gerüchte, geld, partner, youtube, juliensblog, humor, therapie</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MS-6VoCTqsg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MS-6VoCTqsg/default.jpg\' height=\'90\' width=\'120\' time=\'00:11:45.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MS-6VoCTqsg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MS-6VoCTqsg/1.jpg\' height=\'90\' width=\'120\' time=\'00:05:52.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MS-6VoCTqsg/2.jpg\' height=\'90\' width=\'120\' time=\'00:11:45.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MS-6VoCTqsg/3.jpg\' height=\'90\' width=\'120\' time=\'00:17:38.250\' yt:name=\'end\'/><media:title type=\'plain\'>Das ehrlichste Video! | DieAussenseiter</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'1411\'/><yt:uploaded>2012-02-07T11:30:16.000Z</yt:uploaded><yt:videoid>MS-6VoCTqsg</yt:videoid></media:group><gd:rating average=\'4.874842\' max=\'5\' min=\'1\' numRaters=\'12688\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1156\' viewCount=\'117694\'/><yt:rating numDislikes=\'397\' numLikes=\'12291\'/></entry><entry gd:etag=\'W/&quot;DEIMQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:15xqiQW45sA</id><published>2012-02-08T13:36:19.000Z</published><updated>2012-02-09T05:49:40.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dieaussenseiter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'die\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'aussenseiter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'protest\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gegen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'acta\'/><title>F*CK YOU ACTA!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/15xqiQW45sA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=15xqiQW45sA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/15xqiQW45sA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/15xqiQW45sA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/15xqiQW45sA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/15xqiQW45sA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=15xqiQW45sA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/top_rated/v/15xqiQW45sA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>DieAussenseiter</name><uri>http://gdata.youtube.com/feeds/api/users/Kn1vL4Ou4DKu0BlcK3NlDQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/15xqiQW45sA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1952\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/15xqiQW45sA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'309\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache3.c.youtube.com/CnELENy73wIaaAnA5rgFiWqc1xMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'309\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/CnELENy73wIaaAnA5rgFiWqc1xMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'309\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>DieAussenseiter</media:credit><media:description type=\'plain\'>Was ist ACTA?

http://www.youtube.com/watch?v=9LEhf7pP3Pw

Nehmt bitte an der Online-Petition gegen ACTA teil, gebt eure Stimme ab und zeigt somit, dass wir (die Internet-Gemeinschaft) uns nicht unterkriegen lassen:

http://www.avaaz.org/en/eu_save_the_internet_spread/?wtyBGcb</media:description><media:keywords>dieaussenseiter, die, aussenseiter, protest, gegen, acta</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=15xqiQW45sA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/15xqiQW45sA/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:34.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/15xqiQW45sA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/15xqiQW45sA/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:17.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/15xqiQW45sA/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:34.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/15xqiQW45sA/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:51.750\' yt:name=\'end\'/><media:title type=\'plain\'>F*CK YOU ACTA!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'309\'/><yt:uploaded>2012-02-08T13:36:19.000Z</yt:uploaded><yt:videoid>15xqiQW45sA</yt:videoid></media:group><gd:rating average=\'4.9431076\' max=\'5\' min=\'1\' numRaters=\'12093\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'923\' viewCount=\'39359\'/><yt:rating numDislikes=\'172\' numLikes=\'11921\'/></entry></feed>', now(), now())
