Skip to content

Instantly share code, notes, and snippets.

@paul
Created August 26, 2011 01:23
Show Gist options
  • Save paul/1172468 to your computer and use it in GitHub Desktop.
Save paul/1172468 to your computer and use it in GitHub Desktop.
$(function() {
callbacks = [];
inlineImages = function(content) {
content.find('a').each(function() {
if (/\.(gif|jpe?g|png)/i.test($(this).text()))
$(this).html('<img src="'+$(this).text()+'"/>')
});
};
callbacks.push(inlineImages);
saEmotes = function(content) {
if(!SAEmoteTest.test(content.text())) { return; }
$.each(content[0].childNodes, function(i, node) {
if(!node.nodeType == 3) { return; }
while(m = SAEmoteExec.exec(node.nodeValue)) {
var range = document.createRange();
index = node.nodeValue.indexOf(m[1]);
range.setStart(node, index);
range.setEnd(node, index + m[1].length);
var attrs = SAEmoteImageMap[m[1]];
var img = $('<img/>', {
src: attrs.image,
height: attrs.height,
width: attrs.width,
title: attrs.description
});
range.deleteContents();
range.insertNode(img[0]);
}
});
};
callbacks.push(saEmotes);
$(document).delegate('#js-chat li', 'DOMNodeInserted', function(e) {
$(e.target).find('.content').each(function() {
var els = $(this);
if(!els.length == 0)
$.each(callbacks, function(i, cb) { cb(els) });
});
});
SAEmoteJSON = [{"emoticons": [{"code": ":(", "description": "frown", "image": "http://sae.tweek.us/static/images/emoticons/frown.gif", "height": 15, "width": 15, "added": 1255900959}, {"code": ":)", "description": "smile", "image": "http://sae.tweek.us/static/images/emoticons/smile.gif", "height": 15, "width": 15, "added": 1255900959}, {"code": ":11tea:", "description": "11:00 drink tea every day", "image": "http://sae.tweek.us/static/images/emoticons/emot-11tea.gif", "height": 25, "width": 32, "added": 1255900960}, {"code": ":3:", "description": "kitty face", "image": "http://sae.tweek.us/static/images/emoticons/emot-3.gif", "height": 18, "width": 15, "added": 1255900960}, {"code": ":a2m:", "description": "Ass to Mouth", "image": "http://sae.tweek.us/static/images/emoticons/emot-a2m.gif", "height": 19, "width": 40, "added": 1255900960}, {"code": ":aaa:", "description": "my mouth is opening oh no", "image": "http://sae.tweek.us/static/images/emoticons/emot-aaa.gif", "height": 15, "width": 15, "added": 1255900960}, {"code": ":aaaaa:", "description": "AAAAAAHHHHHHHHH!", "image": "http://sae.tweek.us/static/images/emoticons/emot-aaaaa.gif", "height": 15, "width": 15, "added": 1255900960}, {"code": ":airquote:", "description": "metaironysarcasm quoting", "image": "http://sae.tweek.us/static/images/emoticons/emot-airquote.gif", "height": 17, "width": 35, "added": 1255900961}, {"code": ":allears:", "description": "All Ears", "image": "http://sae.tweek.us/static/images/emoticons/emot-allears.gif", "height": 18, "width": 23, "added": 1255900961}, {"code": ":angel:", "description": "sop babys", "image": "http://sae.tweek.us/static/images/emoticons/emot-angel.gif", "height": 23, "width": 42, "added": 1255900961}, {"code": ":argh:", "description": "Argh!", "image": "http://sae.tweek.us/static/images/emoticons/emot-argh.gif", "height": 15, "width": 32, "added": 1255900961}, {"code": ":arghfist:", "description": "SO ANGRY", "image": "http://sae.tweek.us/static/images/emoticons/emot-arghfist.gif", "height": 15, "width": 12, "added": 1255900961}, {"code": ":bang:", "description": "Banging head against the wall", "image": "http://sae.tweek.us/static/images/emoticons/emot-bang.gif", "height": 20, "width": 25, "added": 1255900961}, {"code": ":banjo:", "description": "Some banjo thing somebody bought for some great reason I suppose", "image": "http://sae.tweek.us/static/images/emoticons/emot-banjo.gif", "height": 20, "width": 19, "added": 1255900962}, {"code": ":black101:", "description": "Grimm and frostbitten", "image": "http://sae.tweek.us/static/images/emoticons/emot-black101.gif", "height": 22, "width": 35, "added": 1255900962}, {"code": ":blush:", "description": "Oh... heh, I was just...", "image": "http://sae.tweek.us/static/images/emoticons/emot-blush.gif", "height": 15, "width": 15, "added": 1255900962}, {"code": ":bravo2:", "description": "wordjo", "image": "http://sae.tweek.us/static/images/emoticons/emot-bravo2.gif", "height": 18, "width": 50, "added": 1255900962}, {"code": ":butt:", "description": "butt", "image": "http://sae.tweek.us/static/images/emoticons/emot-butt.gif", "height": 15, "width": 15, "added": 1255900962}, {"code": ":catholic:", "description": "A Pope culture icon.", "image": "http://sae.tweek.us/static/images/emoticons/emot-catholic.gif", "height": 25, "width": 27, "added": 1255900962}, {"code": ":cawg:", "description": "Cackling Aloud With Gusto", "image": "http://sae.tweek.us/static/images/emoticons/emot-cawg.gif", "height": 25, "width": 23, "added": 1255900962}, {"code": ":cb:", "description": "Clownballoon is coming...!", "image": "http://sae.tweek.us/static/images/emoticons/emot-clownballoon.gif", "height": 15, "width": 15, "added": 1255900962}, {"code": ":cheers:", "description": "Here's to us!", "image": "http://sae.tweek.us/static/images/emoticons/emot-cheers.gif", "height": 15, "width": 29, "added": 1255900963}, {"code": ":chef:", "description": "I am the chef!", "image": "http://sae.tweek.us/static/images/emoticons/emot-chef.gif", "height": 25, "width": 25, "added": 1255900963}, {"code": ":clint:", "description": "i'm a cowboy baby", "image": "http://sae.tweek.us/static/images/emoticons/emot-clint.gif", "height": 25, "width": 30, "added": 1255900963}, {"code": ":coffee:", "description": "best part of waking up!", "image": "http://sae.tweek.us/static/images/emoticons/emot-coffee.gif", "height": 17, "width": 12, "added": 1255900963}, {"code": ":colbert:", "description": "crossarms", "image": "http://sae.tweek.us/static/images/emoticons/emot-colbert.gif", "height": 23, "width": 21, "added": 1255900963}, {"code": ":comeback:", "description": "They're coming back!", "image": "http://sae.tweek.us/static/images/emoticons/emot-comeback.gif", "height": 17, "width": 17, "added": 1255900963}, {"code": ":commissar:", "description": "Summary Execution", "image": "http://sae.tweek.us/static/images/emoticons/emot-commissar.gif", "height": 24, "width": 64, "added": 1255900963}, {"code": ":confused:", "description": "confused", "image": "http://sae.tweek.us/static/images/emoticons/confused.gif", "height": 22, "width": 15, "added": 1255900964}, {"code": ":cool:", "description": "cool", "image": "http://sae.tweek.us/static/images/emoticons/cool.gif", "height": 15, "width": 15, "added": 1255900964}, {"code": ":cop:", "description": "I'm a cop you idiot!", "image": "http://sae.tweek.us/static/images/emoticons/emot-cop.gif", "height": 19, "width": 26, "added": 1255900964}, {"code": ":corsair:", "description": "Corsair is old", "image": "http://sae.tweek.us/static/images/emoticons/emot-corsair.gif", "height": 31, "width": 29, "added": 1268245124}, {"code": ":crossarms:", "description": "colbert", "image": "http://sae.tweek.us/static/images/emoticons/emot-crossarms.gif", "height": 15, "width": 30, "added": 1255900964}, {"code": ":cry:", "description": "Some kind of zombie chewing tobacco and crying I guess", "image": "http://sae.tweek.us/static/images/emoticons/emot-crying.gif", "height": 16, "width": 16, "added": 1255900964}, {"code": ":cthulhu:", "description": "Cthulhu", "image": "http://sae.tweek.us/static/images/emoticons/emot-cthulhu.gif", "height": 23, "width": 25, "added": 1255900964}, {"code": ":D", "description": "big grin", "image": "http://sae.tweek.us/static/images/emoticons/biggrin.gif", "height": 15, "width": 15, "added": 1255900964}, {"code": ":dance:", "description": "Dance", "image": "http://sae.tweek.us/static/images/emoticons/emot-dance.gif", "height": 18, "width": 24, "added": 1255900964}, {"code": ":devil:", "description": "Demonology 101", "image": "http://sae.tweek.us/static/images/emoticons/emot-devil.gif", "height": 23, "width": 24, "added": 1255900965}, {"code": ":doh:", "description": "D'oh!", "image": "http://sae.tweek.us/static/images/emoticons/emot-doh.gif", "height": 22, "width": 21, "added": 1255900965}, {"code": ":downs:", "description": "Yaaaay! Happy happy yay!", "image": "http://sae.tweek.us/static/images/emoticons/emot-downs.gif", "height": 15, "width": 15, "added": 1255900965}, {"code": ":downsgun:", "description": "Downs botches suicide", "image": "http://sae.tweek.us/static/images/emoticons/emot-downsgun.gif", "height": 19, "width": 27, "added": 1255900965}, {"code": ":downsrim:", "description": "downs rimshot", "image": "http://sae.tweek.us/static/images/emoticons/emot-downsrim.gif", "height": 25, "width": 37, "added": 1255900965}, {"code": ":downswords:", "description": "listen to me :(", "image": "http://sae.tweek.us/static/images/emoticons/emot-downswords.gif", "height": 15, "width": 46, "added": 1255900965}, {"code": ":drac:", "description": "Dracula is coming", "image": "http://sae.tweek.us/static/images/emoticons/emot-drac.gif", "height": 25, "width": 31, "added": 1255900965}, {"code": ":eek:", "description": "Eek", "image": "http://sae.tweek.us/static/images/emoticons/emot-eek.gif", "height": 15, "width": 15, "added": 1255900965}, {"code": ":emo:", "description": "Emo", "image": "http://sae.tweek.us/static/images/emoticons/emot-emo.gif", "height": 15, "width": 36, "added": 1255900966}, {"code": ":eng101:", "description": "I don't know", "image": "http://sae.tweek.us/static/images/emoticons/emot-eng101.gif", "height": 19, "width": 23, "added": 1255900966}, {"code": ":eng99:", "description": "Sad eng101", "image": "http://sae.tweek.us/static/images/emoticons/emot-eng99.gif", "height": 19, "width": 23, "added": 1255900966}, {"code": ":engleft:", "description": "Eng Left", "image": "http://sae.tweek.us/static/images/emoticons/emot-engleft.gif", "height": 21, "width": 25, "added": 1255900966}, {"code": ":ese:", "description": "i cut you", "image": "http://sae.tweek.us/static/images/emoticons/emot-ese.gif", "height": 25, "width": 30, "added": 1255900966}, {"code": ":f5:", "description": "pres butan to go", "image": "http://sae.tweek.us/static/images/emoticons/emot-f5.gif", "height": 17, "width": 28, "added": 1255900966}, {"code": ":f5h:", "description": "F5 Hand", "image": "http://sae.tweek.us/static/images/emoticons/emot-f5h.gif", "height": 17, "width": 13, "added": 1255900966}, {"code": ":fap:", "description": "Fapping off", "image": "http://sae.tweek.us/static/images/emoticons/emot-fappery.gif", "height": 19, "width": 41, "added": 1255900966}, {"code": ":fh:", "description": "JERK JERK JERK JERK", "image": "http://sae.tweek.us/static/images/emoticons/emot-fh.gif", "height": 19, "width": 25, "added": 1255900967}, {"code": ":flame:", "description": "Mr. V gets roasted", "image": "http://sae.tweek.us/static/images/emoticons/emot-flame.gif", "height": 25, "width": 60, "added": 1255900967}, {"code": ":gay:", "description": "not straight", "image": "http://sae.tweek.us/static/images/emoticons/emot-gay.gif", "height": 17, "width": 33, "added": 1255900967}, {"code": ":geno:", "description": "The Path is Grey", "image": "http://sae.tweek.us/static/images/emoticons/emot-geno.gif", "height": 15, "width": 15, "added": 1255900967}, {"code": ":ghost:", "description": "Boo", "image": "http://sae.tweek.us/static/images/emoticons/emot-ghost.gif", "height": 22, "width": 15, "added": 1255900967}, {"code": ":gibs:", "description": "Gibs", "image": "http://sae.tweek.us/static/images/emoticons/emot-gibs.gif", "height": 15, "width": 15, "added": 1255900967}, {"code": ":glomp:", "description": "BLATANTLY STOLEN FROM DEVIANTART", "image": "http://sae.tweek.us/static/images/emoticons/emot-glomp.gif", "height": 20, "width": 47, "added": 1255900967}, {"code": ":golfclap:", "description": "nice job my nigga", "image": "http://sae.tweek.us/static/images/emoticons/emot-golfclap.gif", "height": 15, "width": 24, "added": 1255900967}, {"code": ":gonk:", "description": "GONK", "image": "http://sae.tweek.us/static/images/emoticons/emot-gonk.gif", "height": 15, "width": 15, "added": 1255900968}, {"code": ":greatgift:", "description": "great gifts for dads and grads", "image": "http://sae.tweek.us/static/images/emoticons/emot-greatgift.gif", "height": 16, "width": 16, "added": 1255900968}, {"code": ":haw:", "description": "Haw haw haw", "image": "http://sae.tweek.us/static/images/emoticons/emot-haw.gif", "height": 15, "width": 15, "added": 1255900968}, {"code": ":hawaaaafap:", "description": "tha lowride bitch", "image": "http://sae.tweek.us/static/images/emoticons/emot-hawaaaafap.gif", "height": 19, "width": 36, "added": 1255900968}, {"code": ":hehe:", "description": "Heh.", "image": "http://sae.tweek.us/static/images/emoticons/emot-hehe.gif", "height": 15, "width": 15, "added": 1255900968}, {"code": ":hf:", "description": "You can hi-five stuff now", "image": "http://sae.tweek.us/static/images/emoticons/emot-hf.gif", "height": 15, "width": 8, "added": 1255900968}, {"code": ":hfive:", "description": "Hi five it up nigga", "image": "http://sae.tweek.us/static/images/emoticons/emot-hfive.gif", "height": 15, "width": 38, "added": 1255900968}, {"code": ":hist101:", "description": "S P Q R", "image": "http://sae.tweek.us/static/images/emoticons/emot-hist101.gif", "height": 22, "width": 34, "added": 1255900968}, {"code": ":hitler:", "description": "Hitler", "image": "http://sae.tweek.us/static/images/emoticons/emot-hitler.gif", "height": 15, "width": 15, "added": 1255900969}, {"code": ":holy:", "description": "holy dance", "image": "http://sae.tweek.us/static/images/emoticons/emot-holy.gif", "height": 18, "width": 24, "added": 1255900969}, {"code": ":huh:", "description": "huh", "image": "http://sae.tweek.us/static/images/emoticons/emot-huh.gif", "height": 20, "width": 24, "added": 1255900969}, {"code": ":hydrogen:", "description": "Hydrogen", "image": "http://sae.tweek.us/static/images/emoticons/emot-hydrogen.gif", "height": 25, "width": 25, "added": 1255900969}, {"code": ":j:", "description": "j is for Jansie", "image": "http://sae.tweek.us/static/images/emoticons/emot-j.gif", "height": 16, "width": 16, "added": 1255900969}, {"code": ":jerkbag:", "description": "god damn your post sucks", "image": "http://sae.tweek.us/static/images/emoticons/emot-jerkbag.gif", "height": 19, "width": 25, "added": 1255900969}, {"code": ":jewish:", "description": "Orthodox Jew with Torah", "image": "http://sae.tweek.us/static/images/emoticons/emot-jewish.gif", "height": 19, "width": 27, "added": 1255900969}, {"code": ":jihad:", "description": "ALLAH ACKBAR!!!1", "image": "http://sae.tweek.us/static/images/emoticons/emot-jihad.gif", "height": 22, "width": 32, "added": 1255900970}, {"code": ":keke:", "description": "kekekekekekeke", "image": "http://sae.tweek.us/static/images/emoticons/emot-keke.gif", "height": 15, "width": 15, "added": 1255900970}, {"code": ":mad:", "description": "mad", "image": "http://sae.tweek.us/static/images/emoticons/mad.gif", "height": 15, "width": 15, "added": 1255900970}, {"code": ":mmmhmm:", "description": "MMMM HMM...", "image": "http://sae.tweek.us/static/images/emoticons/mmmhmm.gif", "height": 15, "width": 15, "added": 1255900970}, {"code": ":monocle:", "description": "Oh my! What a saucy lad!", "image": "http://sae.tweek.us/static/images/emoticons/emot-monocle.gif", "height": 15, "width": 21, "added": 1255900970}, {"code": ":munch:", "description": "this is gonna be good", "image": "http://sae.tweek.us/static/images/emoticons/emot-munch.gif", "height": 25, "width": 45, "added": 1255900970}, {"code": ":neckbeard:", "description": "neckbeard emot u say?", "image": "http://sae.tweek.us/static/images/emoticons/emot-neckbeard.gif", "height": 22, "width": 24, "added": 1255900970}, {"code": ":niggly:", "description": "Nigglypuff rules.", "image": "http://sae.tweek.us/static/images/emoticons/emot-niggly.gif", "height": 15, "width": 15, "added": 1255900970}, {"code": ":ninja:", "description": "Ninja", "image": "http://sae.tweek.us/static/images/emoticons/emot-ninja.gif", "height": 15, "width": 15, "added": 1255900971}, {"code": ":nyd:", "description": "Oh no you didn't", "image": "http://sae.tweek.us/static/images/emoticons/emot-nyd.gif", "height": 18, "width": 34, "added": 1255900971}, {"code": ":o:", "description": "embarrasment", "image": "http://sae.tweek.us/static/images/emoticons/redface.gif", "height": 15, "width": 15, "added": 1255900971}, {"code": ":ohdear:", "description": "oh no lidge", "image": "http://sae.tweek.us/static/images/emoticons/emot-ohdear.png", "height": 16, "width": 15, "added": 1255900971}, {"code": ":patriot:", "description": "Who the hell paid money for this stupid shit", "image": "http://sae.tweek.us/static/images/emoticons/emot-patriot.gif", "height": 28, "width": 32, "added": 1255900971}, {"code": ":pedo:", "description": "Come here little kiddie", "image": "http://sae.tweek.us/static/images/emoticons/emot-pedo.gif", "height": 17, "width": 44, "added": 1255900971}, {"code": ":pervert:", "description": "Comin' to get ya", "image": "http://sae.tweek.us/static/images/emoticons/emot-pervert.gif", "height": 17, "width": 24, "added": 1255900971}, {"code": ":pirate:", "description": "Pirate", "image": "http://sae.tweek.us/static/images/emoticons/emot-pirate.gif", "height": 25, "width": 21, "added": 1255900971}, {"code": ":pseudo:", "description": "Pseudo science", "image": "http://sae.tweek.us/static/images/emoticons/emot-pseudo.gif", "height": 19, "width": 23, "added": 1255900972}, {"code": ":raise:", "description": "Raising Eyebrow", "image": "http://sae.tweek.us/static/images/emoticons/emot-raise.gif", "height": 15, "width": 15, "added": 1255900972}, {"code": ":rant:", "description": "angry smiley ranting GRRR", "image": "http://sae.tweek.us/static/images/emoticons/emot-rant.gif", "height": 20, "width": 31, "added": 1255900972}, {"code": ":redhammer:", "description": "The Red Hammer (another waste of money)", "image": "http://sae.tweek.us/static/images/emoticons/emot-redhammer.gif", "height": 25, "width": 44, "added": 1255900972}, {"code": ":reject:", "description": "Disapproving obese smiley", "image": "http://sae.tweek.us/static/images/emoticons/emot-reject.gif", "height": 15, "width": 15, "added": 1255900972}, {"code": ":respek:", "description": "Respek", "image": "http://sae.tweek.us/static/images/emoticons/emot-respek.gif", "height": 12, "width": 16, "added": 1255900972}, {"code": ":rimshot:", "description": "Rimshot", "image": "http://sae.tweek.us/static/images/emoticons/emot-rimshot.gif", "height": 25, "width": 38, "added": 1255900972}, {"code": ":roboluv:", "description": "miss u Dono", "image": "http://sae.tweek.us/static/images/emoticons/emot-roboluv.gif", "height": 15, "width": 35, "added": 1255900973}, {"code": ":rock:", "description": "Rock", "image": "http://sae.tweek.us/static/images/emoticons/emot-rock.gif", "height": 16, "width": 47, "added": 1255900973}, {"code": ":roflolmao:", "description": "roflolmao", "image": "http://sae.tweek.us/static/images/emoticons/emot-roflolmao.gif", "height": 16, "width": 80, "added": 1255900973}, {"code": ":rolleye:", "description": "Rolleye", "image": "http://sae.tweek.us/static/images/emoticons/emot-rolleye.gif", "height": 15, "width": 15, "added": 1255900973}, {"code": ":rolleyes:", "description": "roll eyes (sarcastic)", "image": "http://sae.tweek.us/static/images/emoticons/rolleyes.gif", "height": 15, "width": 15, "added": 1255900973}, {"code": ":saddowns:", "description": "Awww. Booo.", "image": "http://sae.tweek.us/static/images/emoticons/emot-saddowns.gif", "height": 15, "width": 15, "added": 1255900973}, {"code": ":science:", "description": "For Science!", "image": "http://sae.tweek.us/static/images/emoticons/emot-science.gif", "height": 25, "width": 40, "added": 1255900973}, {"code": ":shlick:", "description": "shlick", "image": "http://sae.tweek.us/static/images/emoticons/emot-shlick.gif", "height": 25, "width": 50, "added": 1255900973}, {"code": ":shobon:", "description": "Shobon... (deflated)", "image": "http://sae.tweek.us/static/images/emoticons/emot-shobon.gif", "height": 15, "width": 15, "added": 1255900974}, {"code": ":sigh:", "description": "oh sigh", "image": "http://sae.tweek.us/static/images/emoticons/emot-sigh.gif", "height": 24, "width": 15, "added": 1255900974}, {"code": ":silent:", "description": "Nothing clever to say", "image": "http://sae.tweek.us/static/images/emoticons/emot-silent.gif", "height": 15, "width": 15, "added": 1255900974}, {"code": ":siren:", "description": "Breaking News Developing...", "image": "http://sae.tweek.us/static/images/emoticons/emot-siren.gif", "height": 20, "width": 20, "added": 1255900974}, {"code": ":ssh:", "description": "aardvarko", "image": "http://sae.tweek.us/static/images/emoticons/emot-ssh.gif", "height": 20, "width": 17, "added": 1255900974}, {"code": ":ssj:", "description": "ssj", "image": "http://sae.tweek.us/static/images/emoticons/emot-ssj.gif", "height": 25, "width": 25, "added": 1255900974}, {"code": ":suicide:", "description": "Suicide is the best side.", "image": "http://sae.tweek.us/static/images/emoticons/emot-suicide.gif", "height": 25, "width": 54, "added": 1255900974}, {"code": ":sun:", "description": "A beaming sun", "image": "http://sae.tweek.us/static/images/emoticons/emot-sun.gif", "height": 23, "width": 23, "added": 1255900975}, {"code": ":supaburn:", "description": "o snap that burn was fire", "image": "http://sae.tweek.us/static/images/emoticons/emot-supaburn.gif", "height": 25, "width": 46, "added": 1255900975}, {"code": ":sweatdrop:", "description": "oh my i am embarassed", "image": "http://sae.tweek.us/static/images/emoticons/emot-sweatdrop.gif", "height": 15, "width": 15, "added": 1255900975}, {"code": ":swoon:", "description": "Love eyes", "image": "http://sae.tweek.us/static/images/emoticons/emot-swoon.gif", "height": 23, "width": 33, "added": 1255900975}, {"code": ":sympathy:", "description": "It'll be ok :(", "image": "http://sae.tweek.us/static/images/emoticons/emot-sympathy.gif", "height": 20, "width": 47, "added": 1255900975}, {"code": ":tinfoil:", "description": "Tinfoil hat", "image": "http://sae.tweek.us/static/images/emoticons/emot-tinfoil.gif", "height": 20, "width": 18, "added": 1255900975}, {"code": ":tipshat:", "description": "Tip of the Hat", "image": "http://sae.tweek.us/static/images/emoticons/emot-tiphat.gif", "height": 28, "width": 25, "added": 1255900975}, {"code": ":toot:", "description": "Toots", "image": "http://sae.tweek.us/static/images/emoticons/emot-toot.gif", "height": 25, "width": 24, "added": 1255900975}, {"code": ":twisted:", "description": "Twisted", "image": "http://sae.tweek.us/static/images/emoticons/emot-twisted.gif", "height": 15, "width": 15, "added": 1255900976}, {"code": ":v:", "description": "v", "image": "http://sae.tweek.us/static/images/emoticons/emot-v.gif", "height": 15, "width": 15, "added": 1255900976}, {"code": ":what:", "description": "what", "image": "http://sae.tweek.us/static/images/emoticons/emot-what.gif", "height": 15, "width": 15, "added": 1255900976}, {"code": ":whip:", "description": "Whip it good", "image": "http://sae.tweek.us/static/images/emoticons/emot-whip.gif", "height": 22, "width": 31, "added": 1255900976}, {"code": ":witch:", "description": "Witch Hunt!!!", "image": "http://sae.tweek.us/static/images/emoticons/emot-witch.gif", "height": 22, "width": 21, "added": 1255900976}, {"code": ":woop:", "description": "citizen slang bro", "image": "http://sae.tweek.us/static/images/emoticons/emot-woop.gif", "height": 22, "width": 25, "added": 1255900976}, {"code": ":words:", "description": "a shovel (for digging)", "image": "http://sae.tweek.us/static/images/emoticons/emot-words.gif", "height": 15, "width": 46, "added": 1255900976}, {"code": ":worship:", "description": "bow", "image": "http://sae.tweek.us/static/images/emoticons/emot-worship.gif", "height": 24, "width": 26, "added": 1255900976}, {"code": ":wth:", "description": "what the hell?", "image": "http://sae.tweek.us/static/images/emoticons/emot-wth.gif", "height": 18, "width": 21, "added": 1255900977}, {"code": ":xd:", "description": "XD", "image": "http://sae.tweek.us/static/images/emoticons/emot-xd.gif", "height": 15, "width": 15, "added": 1255900977}, {"code": ":yarr:", "description": "Yarr!", "image": "http://sae.tweek.us/static/images/emoticons/emot-yarr.gif", "height": 20, "width": 22, "added": 1255900977}, {"code": ":zombie:", "description": "Zombie", "image": "http://sae.tweek.us/static/images/emoticons/emot-zombie.gif", "height": 15, "width": 15, "added": 1255900977}, {"code": ":zoro:", "description": "Zoro's Badass moment", "image": "http://sae.tweek.us/static/images/emoticons/emot-zoro.gif", "height": 25, "width": 25, "added": 1255900977}, {"code": ";)", "description": "wink", "image": "http://sae.tweek.us/static/images/emoticons/wink.gif", "height": 15, "width": 15, "added": 1255900977}, {"code": ";-*", "description": "Oh you lustful devil you", "image": "http://sae.tweek.us/static/images/emoticons/livestock01-14-04-whore.gif", "height": 15, "width": 15, "added": 1255900977}], "name": "Basic Smilies"}, {"emoticons": [{"code": ":10bux:", "description": "Hope u got 10 bux", "image": "http://sae.tweek.us/static/images/emoticons/emot-10bux.gif", "height": 15, "width": 30, "added": 1255900977}, {"code": ":20bux:", "description": "This cost 20 bux", "image": "http://sae.tweek.us/static/images/emoticons/emot-20bux.gif", "height": 15, "width": 30, "added": 1255900978}, {"code": ":banme:", "description": "banme", "image": "http://sae.tweek.us/static/images/emoticons/emot-banme.gif", "height": 15, "width": 60, "added": 1255900978}, {"code": ":bustem:", "description": "Chris Costa's Bust'em", "image": "http://sae.tweek.us/static/images/emoticons/emot-bustem.png", "height": 25, "width": 100, "added": 1272362404}, {"code": ":byewhore:", "description": "Bye bye, whore!", "image": "http://sae.tweek.us/static/images/emoticons/emot-byewhore.gif", "height": 15, "width": 58, "added": 1255900978}, {"code": ":byob:", "description": "BYOB Bitches", "image": "http://sae.tweek.us/static/images/emoticons/emot-byob.gif", "height": 20, "width": 92, "added": 1255900978}, {"code": ":cmon:", "description": "C'mon Son!", "image": "http://sae.tweek.us/static/images/emoticons/emot-cmon.gif", "height": 25, "width": 74, "added": 1265047205}, {"code": ":coupons:", "description": "How to crash the forums", "image": "http://sae.tweek.us/static/images/emoticons/emot-coupons.gif", "height": 20, "width": 97, "added": 1255900978}, {"code": ":damn:", "description": "......DAMN!", "image": "http://sae.tweek.us/static/images/emoticons/emot-damn.gif", "height": 25, "width": 63, "added": 1255900978}, {"code": ":dealwithit:", "description": "Don't be a drama queen", "image": "http://sae.tweek.us/static/images/emoticons/emot-dealwithit.jpg", "height": 24, "width": 52, "added": 1270900803}, {"code": ":downsowned:", "description": "Downs owned", "image": "http://sae.tweek.us/static/images/emoticons/emot-downsowned.gif", "height": 17, "width": 95, "added": 1255900978}, {"code": ":effort:", "description": "Ugh, that button...", "image": "http://sae.tweek.us/static/images/emoticons/emot-effort.gif", "height": 17, "width": 84, "added": 1255900979}, {"code": ":filez:", "description": "FLIEZ", "image": "http://sae.tweek.us/static/images/emoticons/emot-filez.gif", "height": 25, "width": 100, "added": 1255900979}, {"code": ":firstpost:", "description": "First Post", "image": "http://sae.tweek.us/static/images/emoticons/emot-firstpost.gif", "height": 15, "width": 45, "added": 1255900979}, {"code": ":frogout:", "description": "a frog saying \"get out\"", "image": "http://sae.tweek.us/static/images/emoticons/emot-frogout.gif", "height": 25, "width": 100, "added": 1255900979}, {"code": ":ftbrg:", "description": "Fuck that butt real good", "image": "http://sae.tweek.us/static/images/emoticons/emot-ftbrg.gif", "height": 19, "width": 19, "added": 1255900979}, {"code": ":gb2byob:", "description": "go bakc 2 huuurrrrrr", "image": "http://sae.tweek.us/static/images/emoticons/emot-gb2byob.gif", "height": 20, "width": 50, "added": 1255900979}, {"code": ":gb2fyad:", "description": "Go back to FYAD", "image": "http://sae.tweek.us/static/images/emoticons/emot-gb2fyad.gif", "height": 20, "width": 50, "added": 1255900979}, {"code": ":gb2gbs:", "description": "Go back to GBS", "image": "http://sae.tweek.us/static/images/emoticons/emot-gb2gbs.gif", "height": 15, "width": 29, "added": 1255900979}, {"code": ":gb2hd2k:", "description": "Damn you, Helldump!", "image": "http://sae.tweek.us/static/images/emoticons/emot-gb2hd2k.gif", "height": 25, "width": 100, "added": 1255900980}, {"code": ":getout:", "description": "GET OUT", "image": "http://sae.tweek.us/static/images/emoticons/emot-getout.png", "height": 25, "width": 30, "added": 1255901015}, {"code": ":godwin:", "description": "Hitler Reference!", "image": "http://sae.tweek.us/static/images/emoticons/emot-godwin.gif", "height": 20, "width": 97, "added": 1255900980}, {"code": ":goof:", "description": "Get out of FYAD", "image": "http://sae.tweek.us/static/images/emoticons/emot-goof.gif", "height": 14, "width": 33, "added": 1255900980}, {"code": ":hurr:", "description": "what does this do?", "image": "http://sae.tweek.us/static/images/emoticons/emot-hurr.gif", "height": 25, "width": 97, "added": 1255900980}, {"code": ":iceburn:", "description": "damn you just told son", "image": "http://sae.tweek.us/static/images/emoticons/emot-iceburn.gif", "height": 25, "width": 100, "added": 1255900980}, {"code": ":iia:", "description": "It it awesome!", "image": "http://sae.tweek.us/static/images/emoticons/emot-iia.png", "height": 22, "width": 65, "added": 1255900980}, {"code": ":iiam:", "description": "Mysterious happenings!", "image": "http://sae.tweek.us/static/images/emoticons/emot-iiam.gif", "height": 22, "width": 65, "added": 1255900980}, {"code": ":laffo:", "description": "LAFFO", "image": "http://sae.tweek.us/static/images/emoticons/emot-laffo.gif", "height": 15, "width": 88, "added": 1255900981}, {"code": ":lol:", "description": "lolololerlerlslzollin'", "image": "http://sae.tweek.us/static/images/emoticons/emot-lol.gif", "height": 15, "width": 30, "added": 1255900981}, {"code": ":master:", "description": "masterstroke", "image": "http://sae.tweek.us/static/images/emoticons/emot-master.gif", "height": 17, "width": 100, "added": 1255900981}, {"code": ":ms:", "description": "Mystery Solved", "image": "http://sae.tweek.us/static/images/emoticons/emot-ms.gif", "height": 22, "width": 65, "added": 1255900981}, {"code": ":nattyburn:", "description": "NATTY ICE BURN fbgm", "image": "http://sae.tweek.us/static/images/emoticons/emot-nattyburn.gif", "height": 25, "width": 43, "added": 1255900981}, {"code": ":nms:", "description": "Not mind safe or worksafe", "image": "http://sae.tweek.us/static/images/emoticons/emot-nms.gif", "height": 16, "width": 70, "added": 1255900981}, {"code": ":nws:", "description": "OMG SO NOT WORK SAFE", "image": "http://sae.tweek.us/static/images/emoticons/emot-nws.gif", "height": 14, "width": 44, "added": 1255900981}, {"code": ":owned:", "description": "PWNED THE AS$ OF A N00B", "image": "http://sae.tweek.us/static/images/emoticons/emot-owned.gif", "height": 17, "width": 84, "added": 1255900982}, {"code": ":protarget:", "description": "Pro Target", "image": "http://sae.tweek.us/static/images/emoticons/emot-protarget.gif", "height": 20, "width": 97, "added": 1255900982}, {"code": ":regd04:", "description": "Fucking 04's", "image": "http://sae.tweek.us/static/images/emoticons/emot-04.gif", "height": 17, "width": 51, "added": 1255900982}, {"code": ":regd05:", "description": "05 baby!", "image": "http://sae.tweek.us/static/images/emoticons/emot-05.gif", "height": 16, "width": 60, "added": 1255900982}, {"code": ":regd06:", "description": "06 HURR!", "image": "http://sae.tweek.us/static/images/emoticons/emot-06.gif", "height": 15, "width": 50, "added": 1255900982}, {"code": ":regd07:", "description": "2007", "image": "http://sae.tweek.us/static/images/emoticons/emot-07.gif", "height": 25, "width": 60, "added": 1255900982}, {"code": ":regd08:", "description": "into the ground!", "image": "http://sae.tweek.us/static/images/emoticons/emot-regd08.gif", "height": 25, "width": 100, "added": 1255900982}, {"code": ":their:", "description": "Grammer Queen Magnet", "image": "http://sae.tweek.us/static/images/emoticons/emot-their.gif", "height": 10, "width": 33, "added": 1255900982}, {"code": ":vd:", "description": "violetdragon", "image": "http://sae.tweek.us/static/images/emoticons/emot-vd.gif", "height": 25, "width": 54, "added": 1255900983}, {"code": ":w00t:", "description": "w00t", "image": "http://sae.tweek.us/static/images/emoticons/emot-w00t.gif", "height": 17, "width": 84, "added": 1255900983}, {"code": ":w2byob:", "description": "Welcome to BYOB!", "image": "http://sae.tweek.us/static/images/emoticons/emot-w2byob.gif", "height": 20, "width": 35, "added": 1255900983}, {"code": ":waycool:", "description": "Way Cool (this smilie is gay as hell)", "image": "http://sae.tweek.us/static/images/emoticons/emot-waycool.gif", "height": 20, "width": 61, "added": 1255900983}, {"code": ":whoptc:", "description": "whopkins", "image": "http://sae.tweek.us/static/images/emoticons/emot-whoptc.gif", "height": 25, "width": 58, "added": 1255900983}, {"code": ":wrongful:", "description": "STFU", "image": "http://sae.tweek.us/static/images/emoticons/emot-wrongful.gif", "height": 25, "width": 85, "added": 1255900983}, {"code": ":wtc:", "description": "#1 grandpa", "image": "http://sae.tweek.us/static/images/emoticons/emot-wtc.gif", "height": 25, "width": 58, "added": 1255900983}, {"code": ":wtf:", "description": "wtf", "image": "http://sae.tweek.us/static/images/emoticons/emot-wtf.gif", "height": 15, "width": 35, "added": 1255900983}, {"code": ":yohoho:", "description": "SKULL JOKE!", "image": "http://sae.tweek.us/static/images/emoticons/emot-yohoho.gif", "height": 25, "width": 86, "added": 1255900984}], "name": "Mostly text"}, {"emoticons": [{"code": ":aslol:", "description": "LOL for the deaf", "image": "http://sae.tweek.us/static/images/emoticons/emot-aslol.gif", "height": 25, "width": 22, "added": 1255900984}, {"code": ":awesome:", "description": "uh its AWESOME", "image": "http://sae.tweek.us/static/images/emoticons/emot-awesome.gif", "height": 18, "width": 38, "added": 1255900984}, {"code": ":backtowork:", "description": "Responsibility Scallop", "image": "http://sae.tweek.us/static/images/emoticons/emot-backtowork.gif", "height": 25, "width": 38, "added": 1255900984}, {"code": ":barf:", "description": "Look at that guy puke", "image": "http://sae.tweek.us/static/images/emoticons/emot-barf.gif", "height": 25, "width": 60, "added": 1255900984}, {"code": ":boonie:", "description": "David Boon", "image": "http://sae.tweek.us/static/images/emoticons/emot-boonie.gif", "height": 25, "width": 42, "added": 1255900984}, {"code": ":bravo:", "description": "bravo", "image": "http://sae.tweek.us/static/images/emoticons/emot-bravo.gif", "height": 25, "width": 96, "added": 1255900984}, {"code": ":buddy:", "description": "for realzzies", "image": "http://sae.tweek.us/static/images/emoticons/emot-buddy.gif", "height": 20, "width": 19, "added": 1255900985}, {"code": ":byodame:", "description": "Worst emoticonette ever.", "image": "http://sae.tweek.us/static/images/emoticons/emot-byodame.gif", "height": 19, "width": 19, "added": 1255900985}, {"code": ":byodood:", "description": "Worst emoticon ever", "image": "http://sae.tweek.us/static/images/emoticons/emot-byodood.gif", "height": 19, "width": 19, "added": 1255900985}, {"code": ":c00l:", "description": "l33t li3k j3ff k", "image": "http://sae.tweek.us/static/images/emoticons/emot-c00l.gif", "height": 15, "width": 15, "added": 1255900985}, {"code": ":c00lbert:", "description": "TAKE THAT MOTHERFUCKERS", "image": "http://sae.tweek.us/static/images/emoticons/emot-c00lbert.gif", "height": 24, "width": 24, "added": 1255900985}, {"code": ":can:", "description": "You Opened a Can of Worms", "image": "http://sae.tweek.us/static/images/emoticons/emot-can.gif", "height": 25, "width": 25, "added": 1255900985}, {"code": ":chord:", "description": "pipe dog", "image": "http://sae.tweek.us/static/images/emoticons/emot-chord.gif", "height": 24, "width": 53, "added": 1255900985}, {"code": ":crow:", "description": "caw caw", "image": "http://sae.tweek.us/static/images/emoticons/emot-crow.gif", "height": 21, "width": 28, "added": 1255900985}, {"code": ":dawkins101:", "description": "Pope Gives Up", "image": "http://sae.tweek.us/static/images/emoticons/emot-Dawkins102.gif", "height": 25, "width": 44, "added": 1255900986}, {"code": ":dogout:", "description": "out with the frog", "image": "http://sae.tweek.us/static/images/emoticons/emot-dogout.gif", "height": 25, "width": 100, "added": 1255900986}, {"code": ":downsbravo:", "description": "Bravo", "image": "http://sae.tweek.us/static/images/emoticons/emot-downsbravo.gif", "height": 25, "width": 52, "added": 1255900986}, {"code": ":fiesta:", "description": "fiesta gbs", "image": "http://sae.tweek.us/static/images/emoticons/emot-fiesta.gif", "height": 24, "width": 41, "added": 1255900986}, {"code": ":frog:", "description": "Frog Eyes", "image": "http://sae.tweek.us/static/images/emoticons/emot-frog.gif", "height": 25, "width": 38, "added": 1255900986}, {"code": ":frogbon:", "description": "R-r-r-ribbit?", "image": "http://sae.tweek.us/static/images/emoticons/emot-frogbon.gif", "height": 25, "width": 38, "added": 1255900986}, {"code": ":frogc00l:", "description": "cooler than being cool", "image": "http://sae.tweek.us/static/images/emoticons/emot-frogc00l.gif", "height": 25, "width": 38, "added": 1255900986}, {"code": ":froggonk:", "description": "Frog Gonk", "image": "http://sae.tweek.us/static/images/emoticons/emot-froggonk.gif", "height": 25, "width": 38, "added": 1255900986}, {"code": ":frogsiren:", "description": "Frogsiren", "image": "http://sae.tweek.us/static/images/emoticons/emot-frogsiren.gif", "height": 25, "width": 38, "added": 1255900987}, {"code": ":fuckoff:", "description": "Fuck off.", "image": "http://sae.tweek.us/static/images/emoticons/emot-fuckoff.gif", "height": 25, "width": 60, "added": 1255900987}, {"code": ":fyadride:", "description": "Hello, fags. -TA", "image": "http://sae.tweek.us/static/images/emoticons/emot-fyadride.gif", "height": 25, "width": 31, "added": 1255900987}, {"code": ":gbsmith:", "description": "a goon's life", "image": "http://sae.tweek.us/static/images/emoticons/emot-gbsmith.gif", "height": 25, "width": 23, "added": 1255900987}, {"code": ":goatsecx:", "description": "Goatse.cx", "image": "http://sae.tweek.us/static/images/emoticons/emot-goatse.gif", "height": 15, "width": 27, "added": 1255900987}, {"code": ":goonsay:", "description": "goon says", "image": "http://sae.tweek.us/static/images/emoticons/emot-goonsay.gif", "height": 25, "width": 86, "added": 1255900987}, {"code": ":hampants:", "description": "Pants of ham sing joyous!", "image": "http://sae.tweek.us/static/images/emoticons/emot-hampants.gif", "height": 20, "width": 34, "added": 1255900987}, {"code": ":iamafag:", "description": "Seriously I'm a big fucking faggot, look at me, I'm King Fag, and here's the smiley to prove it", "image": "http://sae.tweek.us/static/images/emoticons/emot-fuckyou.gif", "height": 20, "width": 20, "added": 1255900988}, {"code": ":mmmsmug:", "description": "holy fuck check out this", "image": "http://sae.tweek.us/static/images/emoticons/emot-mmmsmug.gif", "height": 25, "width": 26, "added": 1255900988}, {"code": ":psyboom:", "description": "Psyduck head explosion", "image": "http://sae.tweek.us/static/images/emoticons/emot-psyboom.gif", "height": 25, "width": 60, "added": 1255900988}, {"code": ":pwn:", "description": "fukken pwned nub", "image": "http://sae.tweek.us/static/images/emoticons/emot-pwn.gif", "height": 23, "width": 26, "added": 1255900988}, {"code": ":razz:", "description": "ba ba ba baa im razzin it", "image": "http://sae.tweek.us/static/images/emoticons/emot-razz.gif", "height": 20, "width": 20, "added": 1255900988}, {"code": ":regd09:", "description": "regdog", "image": "http://sae.tweek.us/static/images/emoticons/emot-regd09.gif", "height": 25, "width": 38, "added": 1255900988}, {"code": ":rodimus:", "description": "Evil toy scalper w/child", "image": "http://sae.tweek.us/static/images/emoticons/emot-rodimus.gif", "height": 21, "width": 44, "added": 1255900988}, {"code": ":rubshands:", "description": "rubshandstogetherandgrinsevilly", "image": "http://sae.tweek.us/static/images/emoticons/rubshandstogetherandgrinsevilly.gif", "height": 20, "width": 45, "added": 1255900988}, {"code": ":shivdurf:", "description": "Shivadas is king of byob.", "image": "http://sae.tweek.us/static/images/emoticons/emot-shivdurf.gif", "height": 23, "width": 54, "added": 1255900989}, {"code": ":smith:", "description": "everyman smith", "image": "http://sae.tweek.us/static/images/emoticons/emot-smith.gif", "height": 25, "width": 23, "added": 1255900989}, {"code": ":smithicide:", "description": "smith considering suicide", "image": "http://sae.tweek.us/static/images/emoticons/emot-smithicide.gif", "height": 25, "width": 35, "added": 1255900989}, {"code": ":smug:", "description": "Smug", "image": "http://sae.tweek.us/static/images/emoticons/emot-smug.gif", "height": 25, "width": 26, "added": 1255900989}, {"code": ":smugbert:", "description": "Smug Colbert", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugbert.gif", "height": 25, "width": 20, "added": 1255900989}, {"code": ":smugdog:", "description": "a smug dog", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugdog.gif", "height": 24, "width": 38, "added": 1255900989}, {"code": ":smugissar:", "description": "die you smug sonofabitch", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugissar.gif", "height": 25, "width": 64, "added": 1255900989}, {"code": ":smugspike:", "description": "Spike Witwicky being smug", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugspike.png", "height": 25, "width": 26, "added": 1255900989}, {"code": ":stoat:", "description": "Stoat Box's Emotion", "image": "http://sae.tweek.us/static/images/emoticons/emot-stoat.gif", "height": 24, "width": 19, "added": 1255900990}, {"code": ":sweep:", "description": "Spring Cleaning", "image": "http://sae.tweek.us/static/images/emoticons/emot-sweep.gif", "height": 50, "width": 50, "added": 1255900990}, {"code": ":ughh:", "description": "Picard Ughh", "image": "http://sae.tweek.us/static/images/emoticons/emot-ughh.gif", "height": 47, "width": 70, "added": 1255900990}, {"code": ":unsmigghh:", "description": "unsmigghh", "image": "http://sae.tweek.us/static/images/emoticons/emot-unsmigghh.gif", "height": 25, "width": 32, "added": 1255900990}, {"code": ":unsmith:", "description": "keep hope alive", "image": "http://sae.tweek.us/static/images/emoticons/emot-unsmith.gif", "height": 25, "width": 23, "added": 1255900990}, {"code": ":wotwot:", "description": "it is a duck emoticon", "image": "http://sae.tweek.us/static/images/emoticons/emot-wotwot.gif", "height": 25, "width": 25, "added": 1255900990}], "name": "Witty"}, {"emoticons": [{"code": ":911:", "description": "NEVER FORGET!", "image": "http://sae.tweek.us/static/images/emoticons/emot-911.gif", "height": 15, "width": 31, "added": 1255900990}, {"code": ":australia:", "description": "Australia", "image": "http://sae.tweek.us/static/images/emoticons/emot-australia.gif", "height": 16, "width": 32, "added": 1255900990}, {"code": ":belarus:", "description": "I don't know what the fuck this is or why somebody would buy it but hey, that's just me", "image": "http://sae.tweek.us/static/images/emoticons/emot-belarus.gif", "height": 15, "width": 31, "added": 1255900991}, {"code": ":britain:", "description": "Britain", "image": "http://sae.tweek.us/static/images/emoticons/emot-britain.gif", "height": 16, "width": 31, "added": 1255900991}, {"code": ":ca:", "description": "california :'(", "image": "http://sae.tweek.us/static/images/emoticons/emot-ca.gif", "height": 25, "width": 40, "added": 1255900991}, {"code": ":canada:", "description": "Canada", "image": "http://sae.tweek.us/static/images/emoticons/emot-canada.gif", "height": 15, "width": 31, "added": 1255900991}, {"code": ":china:", "description": "China", "image": "http://sae.tweek.us/static/images/emoticons/emot-china.gif", "height": 15, "width": 31, "added": 1255900991}, {"code": ":denmark:", "description": "Denmark", "image": "http://sae.tweek.us/static/images/emoticons/emot-denmark.gif", "height": 15, "width": 31, "added": 1255900991}, {"code": ":eurovision:", "description": "Eurovision", "image": "http://sae.tweek.us/static/images/emoticons/emot-eurovision.png", "height": 16, "width": 32, "added": 1275177605}, {"code": ":france:", "description": "France", "image": "http://sae.tweek.us/static/images/emoticons/emot-france.gif", "height": 15, "width": 26, "added": 1255900991}, {"code": ":fsmug:", "description": "smug with flag", "image": "http://sae.tweek.us/static/images/emoticons/emot-fsmug.gif", "height": 25, "width": 43, "added": 1255900992}, {"code": ":italy:", "description": "ital. flag with mussolini", "image": "http://sae.tweek.us/static/images/emoticons/emot-italy.gif", "height": 21, "width": 31, "added": 1255900992}, {"code": ":mexico:", "description": "Mexico", "image": "http://sae.tweek.us/static/images/emoticons/emot-mexico.gif", "height": 25, "width": 44, "added": 1255900992}, {"code": ":norway:", "description": "Norway/Norge/Noreg", "image": "http://sae.tweek.us/static/images/emoticons/emot-norway.gif", "height": 19, "width": 31, "added": 1255901016}, {"code": ":scotland:", "description": "Bonny Bonny Scotland", "image": "http://sae.tweek.us/static/images/emoticons/emot-scotland.gif", "height": 15, "width": 31, "added": 1255900992}, {"code": ":spain:", "description": "Bulls cry in Spain", "image": "http://sae.tweek.us/static/images/emoticons/emot-spain.gif", "height": 15, "width": 31, "added": 1255900992}, {"code": ":sweden:", "description": "Sweden", "image": "http://sae.tweek.us/static/images/emoticons/emot-sweden.gif", "height": 19, "width": 31, "added": 1255900992}, {"code": ":tf:", "description": "TF: 1/5/09: NEVER FORGET", "image": "http://sae.tweek.us/static/images/emoticons/emot-tf.gif", "height": 15, "width": 31, "added": 1255900992}, {"code": ":tito:", "description": "tito", "image": "http://sae.tweek.us/static/images/emoticons/emot-tito.gif", "height": 15, "width": 31, "added": 1255900992}, {"code": ":ussr:", "description": "USSR", "image": "http://sae.tweek.us/static/images/emoticons/emot-ussr.gif", "height": 15, "width": 31, "added": 1255900993}], "name": "Flags and other nationalist crap"}, {"emoticons": [{"code": ":?:", "description": "Question box", "image": "http://sae.tweek.us/static/images/emoticons/emot-question.gif", "height": 16, "width": 16, "added": 1255900993}, {"code": ":axe:", "description": "Axe Maniac", "image": "http://sae.tweek.us/static/images/emoticons/emot-axe.gif", "height": 26, "width": 25, "added": 1255900993}, {"code": ":bsg:", "description": "So say we all.", "image": "http://sae.tweek.us/static/images/emoticons/emot-bsg.gif", "height": 25, "width": 66, "added": 1255900993}, {"code": ":bubblewoop:", "description": "Bubble Bobble", "image": "http://sae.tweek.us/static/images/emoticons/emot-bubblewoop.gif", "height": 25, "width": 20, "added": 1255900993}, {"code": ":c:", "description": "poker club", "image": "http://sae.tweek.us/static/images/emoticons/emot-c.png", "height": 11, "width": 13, "added": 1255900993}, {"code": ":d:", "description": "poker diamond", "image": "http://sae.tweek.us/static/images/emoticons/emot-d.png", "height": 11, "width": 13, "added": 1255900993}, {"code": ":doink:", "description": "Doink", "image": "http://sae.tweek.us/static/images/emoticons/emot-doink.gif", "height": 25, "width": 41, "added": 1255900993}, {"code": ":doom:", "description": "RRRRRICHARDS!", "image": "http://sae.tweek.us/static/images/emoticons/emot-doom.gif", "height": 19, "width": 31, "added": 1255900994}, {"code": ":dota101:", "description": "Playing DOTA 101", "image": "http://sae.tweek.us/static/images/emoticons/emot-dota101.gif", "height": 25, "width": 42, "added": 1255900994}, {"code": ":flashfact:", "description": "Flash fact", "image": "http://sae.tweek.us/static/images/emoticons/emot-flashfact.gif", "height": 20, "width": 34, "added": 1255900994}, {"code": ":flashfap:", "description": "Flash loves the ladies", "image": "http://sae.tweek.us/static/images/emoticons/emot-flashfap.gif", "height": 19, "width": 44, "added": 1255900994}, {"code": ":foxnews:", "description": "LOL Fox News LOL", "image": "http://sae.tweek.us/static/images/emoticons/emot-foxnews.gif", "height": 25, "width": 28, "added": 1255900994}, {"code": ":fry:", "description": "Fry saying \"Oh Snap!\"", "image": "http://sae.tweek.us/static/images/emoticons/emot-fry.gif", "height": 24, "width": 66, "added": 1255900994}, {"code": ":golgo:", "description": "Duke Togo Sniper", "image": "http://sae.tweek.us/static/images/emoticons/emot-golgo.gif", "height": 25, "width": 72, "added": 1255900994}, {"code": ":h:", "description": "poker heart", "image": "http://sae.tweek.us/static/images/emoticons/emot-h.png", "height": 11, "width": 13, "added": 1255900994}, {"code": ":itjb:", "description": "I'm the juggernaut bitch", "image": "http://sae.tweek.us/static/images/emoticons/emot-itjb.gif", "height": 16, "width": 25, "added": 1255900995}, {"code": ":kakashi:", "description": "kakashi", "image": "http://sae.tweek.us/static/images/emoticons/emot-kakashi.gif", "height": 21, "width": 21, "added": 1255900995}, {"code": ":kratos:", "description": "I AM THE GOD OF WAR", "image": "http://sae.tweek.us/static/images/emoticons/emot-kratos.gif", "height": 17, "width": 33, "added": 1255900995}, {"code": ":laugh:", "description": "Laugh", "image": "http://sae.tweek.us/static/images/emoticons/emot-laugh.gif", "height": 25, "width": 33, "added": 1255900995}, {"code": ":lost:", "description": "LOST", "image": "http://sae.tweek.us/static/images/emoticons/emot-lost.gif", "height": 25, "width": 45, "added": 1255900995}, {"code": ":lovewcc:", "description": "We love Companion Cubes", "image": "http://sae.tweek.us/static/images/emoticons/emot-lovewcc.gif", "height": 20, "width": 47, "added": 1255900995}, {"code": ":lron:", "description": "Pyarmid cult Hypno", "image": "http://sae.tweek.us/static/images/emoticons/emot-lron.gif", "height": 25, "width": 84, "added": 1255900995}, {"code": ":mario:", "description": "Mario", "image": "http://sae.tweek.us/static/images/emoticons/emot-mario.gif", "height": 24, "width": 18, "added": 1255900995}, {"code": ":megaman:", "description": "Megaman", "image": "http://sae.tweek.us/static/images/emoticons/emot-megaman.gif", "height": 24, "width": 22, "added": 1255900996}, {"code": ":orks:", "description": "DAKKA DAKKA DAKKA", "image": "http://sae.tweek.us/static/images/emoticons/emot-orks.gif", "height": 16, "width": 30, "added": 1255900996}, {"code": ":pcgaming1:", "description": "PC Gaming Filez Frog", "image": "http://sae.tweek.us/static/images/emoticons/emot-pcgaming1.gif", "height": 25, "width": 100, "added": 1255900996}, {"code": ":pcgaming:", "description": "HOLY SHIT PC GAMING!", "image": "http://sae.tweek.us/static/images/emoticons/emot-pcgaming.gif", "height": 25, "width": 38, "added": 1255900996}, {"code": ":qfg:", "description": "QFG Hero Dance", "image": "http://sae.tweek.us/static/images/emoticons/emot-qfg.gif", "height": 25, "width": 19, "added": 1255900996}, {"code": ":quagmire:", "description": "Quagmire", "image": "http://sae.tweek.us/static/images/emoticons/emot-quagmire.gif", "height": 24, "width": 22, "added": 1255900996}, {"code": ":ramsay:", "description": "Gordon Ramsay", "image": "http://sae.tweek.us/static/images/emoticons/emot-ramsay.gif", "height": 25, "width": 70, "added": 1255900996}, {"code": ":s:", "description": "poker spade", "image": "http://sae.tweek.us/static/images/emoticons/emot-s.png", "height": 11, "width": 13, "added": 1255900997}, {"code": ":sg:", "description": "Shyguy", "image": "http://sae.tweek.us/static/images/emoticons/emot-sg.gif", "height": 22, "width": 21, "added": 1255900997}, {"code": ":spidey:", "description": "My Spidey Sense is tingling", "image": "http://sae.tweek.us/static/images/emoticons/emot-spidey.gif", "height": 20, "width": 15, "added": 1255900997}, {"code": ":stat:", "description": "Statler", "image": "http://sae.tweek.us/static/images/emoticons/emot-stat.gif", "height": 25, "width": 20, "added": 1255900997}, {"code": ":todd:", "description": "Plagiarism ahoy!", "image": "http://sae.tweek.us/static/images/emoticons/emot-todd.gif", "height": 25, "width": 50, "added": 1255900997}, {"code": ":twentyfour:", "description": "24 icon for TVIV", "image": "http://sae.tweek.us/static/images/emoticons/emot-twentyfour.gif", "height": 25, "width": 34, "added": 1255900997}, {"code": ":wal:", "description": "Waldorf", "image": "http://sae.tweek.us/static/images/emoticons/emot-wal.gif", "height": 25, "width": 32, "added": 1255900997}, {"code": ":wcc:", "description": "Weighted Compion Cube", "image": "http://sae.tweek.us/static/images/emoticons/emot-wcc.gif", "height": 19, "width": 19, "added": 1255900998}, {"code": ":wcw:", "description": "Vince makes Sting cry", "image": "http://sae.tweek.us/static/images/emoticons/emot-wcw.gif", "height": 15, "width": 31, "added": 1255900998}, {"code": ":wookie:", "description": "Chewbacca", "image": "http://sae.tweek.us/static/images/emoticons/emot-wookie.gif", "height": 25, "width": 28, "added": 1255900998}, {"code": ":yoshi:", "description": "Yoshi", "image": "http://sae.tweek.us/static/images/emoticons/emot-yoshi.gif", "height": 25, "width": 15, "added": 1255900998}, {"code": ":zoid:", "description": "Zoidberg", "image": "http://sae.tweek.us/static/images/emoticons/emot-zoid.gif", "height": 25, "width": 24, "added": 1255900998}], "name": "TV, Movies, Games, & Comics"}, {"emoticons": [{"code": ":am:", "description": "Atomic Monkey", "image": "http://sae.tweek.us/static/images/emoticons/emot-am.gif", "height": 16, "width": 16, "added": 1255900998}, {"code": ":awesomelon:", "description": "Awesome Cylon", "image": "http://sae.tweek.us/static/images/emoticons/emot-awesomelon.gif", "height": 20, "width": 20, "added": 1255900998}, {"code": ":bahgawd:", "description": "Bah Gawd King!", "image": "http://sae.tweek.us/static/images/emoticons/emot-bahgawd.gif", "height": 25, "width": 40, "added": 1255900998}, {"code": ":bandwagon:", "description": "All Aboard the Bandwagon", "image": "http://sae.tweek.us/static/images/emoticons/emot-bandwagon.gif", "height": 25, "width": 100, "added": 1255900999}, {"code": ":bick:", "description": "aw shit its your boy bick", "image": "http://sae.tweek.us/static/images/emoticons/emot-bick.gif", "height": 25, "width": 30, "added": 1255900999}, {"code": ":bigtran:", "description": "Bigtran!", "image": "http://sae.tweek.us/static/images/emoticons/emot-bigtran.gif", "height": 19, "width": 19, "added": 1255900999}, {"code": ":btroll:", "description": "Butter Troll", "image": "http://sae.tweek.us/static/images/emoticons/emot-buttertroll.gif", "height": 30, "width": 48, "added": 1255900999}, {"code": ":burger:", "description": "have a burger", "image": "http://sae.tweek.us/static/images/emoticons/emot-burger.gif", "height": 25, "width": 25, "added": 1255900999}, {"code": ":byobear:", "description": "Trashcanbear XP SP2", "image": "http://sae.tweek.us/static/images/emoticons/emot-byobear.gif", "height": 15, "width": 65, "added": 1255900999}, {"code": ":c00lbutt:", "description": "a star is born", "image": "http://sae.tweek.us/static/images/emoticons/emot-c00lbutt.gif", "height": 24, "width": 24, "added": 1255900999}, {"code": ":camera6:", "description": "Worst Case Scenario", "image": "http://sae.tweek.us/static/images/emoticons/emot-camera6.gif", "height": 25, "width": 49, "added": 1255901000}, {"code": ":ccb:", "description": "clown balloon cock", "image": "http://sae.tweek.us/static/images/emoticons/emot-ccb.gif", "height": 25, "width": 100, "added": 1255901000}, {"code": ":cenobite:", "description": "We have eternity to know your flesh", "image": "http://sae.tweek.us/static/images/emoticons/emot-chatter.gif", "height": 15, "width": 15, "added": 1255901000}, {"code": ":chiyo:", "description": "Some creepy ADTRW thing", "image": "http://sae.tweek.us/static/images/emoticons/emot-chio.gif", "height": 15, "width": 120, "added": 1255901000}, {"code": ":coal:", "description": "coal", "image": "http://sae.tweek.us/static/images/emoticons/emot-coal.gif", "height": 15, "width": 15, "added": 1255901000}, {"code": ":coolfish:", "description": "coolfish", "image": "http://sae.tweek.us/static/images/emoticons/emot-coolfish.gif", "height": 21, "width": 57, "added": 1255901000}, {"code": ":derp:", "description": "deepa derpa doo", "image": "http://sae.tweek.us/static/images/emoticons/emot-derp.gif", "height": 25, "width": 50, "added": 1255901000}, {"code": ":dong:", "description": "Dongs", "image": "http://sae.tweek.us/static/images/emoticons/emot-dong.gif", "height": 15, "width": 30, "added": 1255901000}, {"code": ":drum:", "description": "Get a move on", "image": "http://sae.tweek.us/static/images/emoticons/emot-drum.gif", "height": 25, "width": 28, "added": 1255901001}, {"code": ":emoticon:", "description": "Hey guys, adbot's cool!", "image": "http://sae.tweek.us/static/images/emoticons/emot-emoticon.gif", "height": 25, "width": 100, "added": 1255901001}, {"code": ":evil:", "description": "It's catching on!", "image": "http://sae.tweek.us/static/images/emoticons/evol-anim.gif", "height": 16, "width": 39, "added": 1255901001}, {"code": ":fireman:", "description": "Not worth dying for", "image": "http://sae.tweek.us/static/images/emoticons/emot-fireman.gif", "height": 25, "width": 100, "added": 1255901001}, {"code": ":flaccid:", "description": "This never happens to me", "image": "http://sae.tweek.us/static/images/emoticons/emot-flaccid.gif", "height": 25, "width": 30, "added": 1255901001}, {"code": ":flag:", "description": "Penalty flag", "image": "http://sae.tweek.us/static/images/emoticons/emot-flag.gif", "height": 25, "width": 22, "added": 1255901001}, {"code": ":fork:", "description": "Fork", "image": "http://sae.tweek.us/static/images/emoticons/emot-fork.png", "height": 25, "width": 30, "added": 1255901002}, {"code": ":frogdowns:", "description": "Downs Frog", "image": "http://sae.tweek.us/static/images/emoticons/emot-frogdowns.png", "height": 25, "width": 38, "added": 1255901002}, {"code": ":furcry:", "description": "Fursecution is a myth", "image": "http://sae.tweek.us/static/images/emoticons/emot-furcry.gif", "height": 20, "width": 31, "added": 1255901002}, {"code": ":FYH:", "description": "Fuck You Hannah", "image": "http://sae.tweek.us/static/images/emoticons/emot-FYH.gif", "height": 25, "width": 100, "added": 1255901002}, {"code": ":george:", "description": "Gorgeous George", "image": "http://sae.tweek.us/static/images/emoticons/emot-george.gif", "height": 30, "width": 47, "added": 1255901002}, {"code": ":gizz:", "description": "Gizz", "image": "http://sae.tweek.us/static/images/emoticons/emot-gizz.gif", "height": 25, "width": 55, "added": 1255901002}, {"code": ":goleft:", "description": "this ones for microwave", "image": "http://sae.tweek.us/static/images/emoticons/emot-goleft.gif", "height": 15, "width": 15, "added": 1255901002}, {"code": ":gonchar:", "description": "he looks like a puffy cow", "image": "http://sae.tweek.us/static/images/emoticons/emot-gonchar.gif", "height": 25, "width": 23, "added": 1255901003}, {"code": ":google:", "description": "Google", "image": "http://sae.tweek.us/static/images/emoticons/emot-google.gif", "height": 20, "width": 56, "added": 1255901003}, {"code": ":goon:", "description": "This smilie is gay as hell but oh well", "image": "http://sae.tweek.us/static/images/emoticons/emot-goon.gif", "height": 25, "width": 60, "added": 1255901003}, {"code": ":goonboot:", "description": "March of the GoonBoots", "image": "http://sae.tweek.us/static/images/emoticons/emot-goonboot.gif", "height": 25, "width": 20, "added": 1255901003}, {"code": ":gooncamp:", "description": "gooncamp", "image": "http://sae.tweek.us/static/images/emoticons/emot-gooncamp.gif", "height": 41, "width": 90, "added": 1255901003}, {"code": ":gtfoycs:", "description": "Get the fuck out of YCS", "image": "http://sae.tweek.us/static/images/emoticons/emot-gtfoycs.gif", "height": 15, "width": 33, "added": 1255901003}, {"code": ":guitar:", "description": "Jammin'", "image": "http://sae.tweek.us/static/images/emoticons/emot-guitar.gif", "height": 21, "width": 29, "added": 1255901003}, {"code": ":happyelf:", "description": "Warning: Israel-Palestine", "image": "http://sae.tweek.us/static/images/emoticons/emot-happyelf.gif", "height": 25, "width": 100, "added": 1255901004}, {"code": ":havlat:", "description": "Martin Havlat for Jesus", "image": "http://sae.tweek.us/static/images/emoticons/emot-havlat.gif", "height": 25, "width": 22, "added": 1255901004}, {"code": ":hchatter:", "description": "Welcome to FYAD, we fucken loooooove to drink", "image": "http://sae.tweek.us/static/images/emoticons/emot-hchatter.gif", "height": 25, "width": 32, "added": 1255901004}, {"code": ":hellyeah:", "description": "hell yeah", "image": "http://sae.tweek.us/static/images/emoticons/emot-hellyeah.gif", "height": 25, "width": 73, "added": 1255901004}, {"code": ":holymoley:", "description": "Holy Moley!", "image": "http://sae.tweek.us/static/images/emoticons/emot-holymoley.gif", "height": 25, "width": 100, "added": 1255901004}, {"code": ":horse:", "description": "horse gif A+ barbaro RIP", "image": "http://sae.tweek.us/static/images/emoticons/emot-horse.gif", "height": 22, "width": 100, "added": 1255901004}, {"code": ":hr:", "description": "Haibane Renmei", "image": "http://sae.tweek.us/static/images/emoticons/emot-hr.gif", "height": 25, "width": 50, "added": 1255901004}, {"code": ":iiaca:", "description": "It is a car analogy", "image": "http://sae.tweek.us/static/images/emoticons/emot-iiaca.gif", "height": 22, "width": 65, "added": 1255901005}, {"code": ":ironicat:", "description": "It's an ironic cat", "image": "http://sae.tweek.us/static/images/emoticons/emot-ironicat.gif", "height": 25, "width": 34, "added": 1255901005}, {"code": ":irony:", "description": "Irony Meter", "image": "http://sae.tweek.us/static/images/emoticons/emot-irony.gif", "height": 23, "width": 45, "added": 1255901005}, {"code": ":joel:", "description": "It's Joel de Bunchastu", "image": "http://sae.tweek.us/static/images/emoticons/emot-joel.gif", "height": 24, "width": 24, "added": 1255901005}, {"code": ":kamina:", "description": "KYODAI GATTAI!", "image": "http://sae.tweek.us/static/images/emoticons/emot-kamina.gif", "height": 25, "width": 24, "added": 1255901005}, {"code": ":kiddo:", "description": "Innocent youth", "image": "http://sae.tweek.us/static/images/emoticons/emot-kiddo.gif", "height": 20, "width": 20, "added": 1255901005}, {"code": ":killdozer:", "description": "legends never die", "image": "http://sae.tweek.us/static/images/emoticons/emot-killdozer.gif", "height": 25, "width": 61, "added": 1255901005}, {"code": ":krad:", "description": "Kickin' Rad (Oldschool)", "image": "http://sae.tweek.us/static/images/emoticons/emot-krad2.gif", "height": 12, "width": 100, "added": 1255901005}, {"code": ":krakken:", "description": "The Krakken", "image": "http://sae.tweek.us/static/images/emoticons/emot-kraken.gif", "height": 25, "width": 53, "added": 1255901006}, {"code": ":love:", "description": "Love heart", "image": "http://sae.tweek.us/static/images/emoticons/emot-love.gif", "height": 20, "width": 20, "added": 1255901006}, {"code": ":madmax:", "description": "Mad Max", "image": "http://sae.tweek.us/static/images/emoticons/emot-madmax.gif", "height": 25, "width": 26, "added": 1255901006}, {"code": ":mason:", "description": "Masonic", "image": "http://sae.tweek.us/static/images/emoticons/emot-mason.gif", "height": 25, "width": 25, "added": 1255901006}, {"code": ":milk:", "description": "YOU DUMBASS!", "image": "http://sae.tweek.us/static/images/emoticons/emot-milk.gif", "height": 25, "width": 70, "added": 1255901006}, {"code": ":monar:", "description": "MONAR?!?!", "image": "http://sae.tweek.us/static/images/emoticons/emot-monar.gif", "height": 25, "width": 20, "added": 1255901006}, {"code": ":moustache:", "description": "It is a moustache", "image": "http://sae.tweek.us/static/images/emoticons/emot-moustache.gif", "height": 22, "width": 75, "added": 1255901006}, {"code": ":mufasa:", "description": "Mufasa", "image": "http://sae.tweek.us/static/images/emoticons/emot-mufasa.png", "height": 25, "width": 30, "added": 1255901007}, {"code": ":negative:", "description": "NegativeMan", "image": "http://sae.tweek.us/static/images/emoticons/negativeman-55f.png", "height": 49, "width": 63, "added": 1255901007}, {"code": ":nyoron:", "description": "smoked cheese", "image": "http://sae.tweek.us/static/images/emoticons/emot-nyoron.gif", "height": 24, "width": 56, "added": 1255901007}, {"code": ":objection:", "description": "That was.. objectionable!", "image": "http://sae.tweek.us/static/images/emoticons/emot-objection.gif", "height": 19, "width": 35, "added": 1255901007}, {"code": ":page3:", "description": "page 3 conspiracy", "image": "http://sae.tweek.us/static/images/emoticons/emot-page3.gif", "height": 25, "width": 100, "added": 1255901007}, {"code": ":phone:", "description": "i wanna talk to my daddy", "image": "http://sae.tweek.us/static/images/emoticons/emot-phone.gif", "height": 19, "width": 45, "added": 1255901007}, {"code": ":phoneb:", "description": "hello have a nice day", "image": "http://sae.tweek.us/static/images/emoticons/emot-phoneb.gif", "height": 19, "width": 45, "added": 1255901007}, {"code": ":phoneline:", "description": "Reach out & touch someone", "image": "http://sae.tweek.us/static/images/emoticons/emot-phoneline.gif", "height": 19, "width": 99, "added": 1255901007}, {"code": ":pipe:", "description": "Sophistication!", "image": "http://sae.tweek.us/static/images/emoticons/emot-pipe.gif", "height": 19, "width": 19, "added": 1255901008}, {"code": ":pluto:", "description": "Still a planet to us", "image": "http://sae.tweek.us/static/images/emoticons/emot-pluto.gif", "height": 25, "width": 34, "added": 1255901008}, {"code": ":pranke:", "description": "Prankeapple", "image": "http://sae.tweek.us/static/images/emoticons/emot-pranke.gif", "height": 25, "width": 31, "added": 1255901008}, {"code": ":psyberger:", "description": "AAAAAAAAAAGGGG", "image": "http://sae.tweek.us/static/images/emoticons/emot-psyberger.gif", "height": 25, "width": 30, "added": 1255901008}, {"code": ":psyduck:", "description": "Psy-yi-yi", "image": "http://sae.tweek.us/static/images/emoticons/emot-psyduck.gif", "height": 25, "width": 30, "added": 1255901008}, {"code": ":psylon:", "description": "This fracking show!", "image": "http://sae.tweek.us/static/images/emoticons/emot-psylon.gif", "height": 25, "width": 28, "added": 1255901008}, {"code": ":psypop:", "description": "PSY EXPLOSION", "image": "http://sae.tweek.us/static/images/emoticons/emot-psypop.gif", "height": 25, "width": 60, "added": 1255901008}, {"code": ":pt:", "description": "Only option", "image": "http://sae.tweek.us/static/images/emoticons/emot-onlyoption.gif", "height": 20, "width": 40, "added": 1255901008}, {"code": ":q:", "description": "Q", "image": "http://sae.tweek.us/static/images/emoticons/emot-q.gif", "height": 28, "width": 30, "added": 1255901009}, {"code": ":qirex:", "description": "Qirex", "image": "http://sae.tweek.us/static/images/emoticons/emot-qirex.gif", "height": 25, "width": 32, "added": 1255901009}, {"code": ":rice:", "description": "Ricer", "image": "http://sae.tweek.us/static/images/emoticons/emot-rice.gif", "height": 21, "width": 81, "added": 1255901009}, {"code": ":riker:", "description": "Riker leads the away team", "image": "http://sae.tweek.us/static/images/emoticons/emot-riker.gif", "height": 25, "width": 26, "added": 1255901009}, {"code": ":rudebox:", "description": "Shake ya Rudebox!", "image": "http://sae.tweek.us/static/images/emoticons/emot-rudebox.gif", "height": 25, "width": 41, "added": 1255901009}, {"code": ":russbus:", "description": "the russ buss", "image": "http://sae.tweek.us/static/images/emoticons/emot-russbus.gif", "height": 25, "width": 100, "added": 1255901009}, {"code": ":sax:", "description": "Something so monumentally lame that I can't even comprehend it", "image": "http://sae.tweek.us/static/images/emoticons/emot-sax.gif", "height": 20, "width": 29, "added": 1255901009}, {"code": ":sharpton:", "description": "Reverend Alfred 'Al' Sharpton", "image": "http://sae.tweek.us/static/images/emoticons/emot-sharpton.gif", "height": 25, "width": 20, "added": 1255901010}, {"code": ":shibaz:", "description": "shibaz 101", "image": "http://sae.tweek.us/static/images/emoticons/emot-shibaz.png", "height": 23, "width": 27, "added": 1255901010}, {"code": ":shopkeeper:", "description": "Hello THIEF!", "image": "http://sae.tweek.us/static/images/emoticons/emot-shopkeeper.gif", "height": 25, "width": 15, "added": 1255901010}, {"code": ":signings:", "description": "Psynings", "image": "http://sae.tweek.us/static/images/emoticons/emot-signings.gif", "height": 25, "width": 30, "added": 1255901010}, {"code": ":sissies:", "description": "D&D at it's best", "image": "http://sae.tweek.us/static/images/emoticons/emot-sissies.gif", "height": 21, "width": 80, "added": 1255901010}, {"code": ":slick:", "description": "You gotta", "image": "http://sae.tweek.us/static/images/emoticons/emot-slick.gif", "height": 25, "width": 28, "added": 1255901010}, {"code": ":smugndar:", "description": "larasndar", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugndar.gif", "height": 24, "width": 25, "added": 1255901010}, {"code": ":snoop:", "description": "snoop.gif", "image": "http://sae.tweek.us/static/images/emoticons/emot-snoop.gif", "height": 25, "width": 20, "added": 1255901011}, {"code": ":sonia:", "description": "Sonia from DPPH", "image": "http://sae.tweek.us/static/images/emoticons/emot-sonia.gif", "height": 25, "width": 30, "added": 1255901011}, {"code": ":sotw:", "description": "Smilie of the Week", "image": "http://sae.tweek.us/static/images/emoticons/emot-sotw.gif", "height": 32, "width": 82, "added": 1255901011}, {"code": ":spergin:", "description": "Asperger Syndrome", "image": "http://sae.tweek.us/static/images/emoticons/emot-spergin.png", "height": 25, "width": 20, "added": 1255901011}, {"code": ":spooky:", "description": "Spooky", "image": "http://sae.tweek.us/static/images/emoticons/emot-spooky.gif", "height": 24, "width": 26, "added": 1255901011}, {"code": ":stalker:", "description": "creepy stalker thing", "image": "http://sae.tweek.us/static/images/emoticons/emot-stalker.gif", "height": 21, "width": 96, "added": 1255901011}, {"code": ":synpa:", "description": "first post on page 2!!!!", "image": "http://sae.tweek.us/static/images/emoticons/emot-synpa.gif", "height": 25, "width": 72, "added": 1255901011}, {"code": ":taco:", "description": "Taco", "image": "http://sae.tweek.us/static/images/emoticons/emot-taco.gif", "height": 25, "width": 39, "added": 1255901012}, {"code": ":tbear:", "description": "Trashbear", "image": "http://sae.tweek.us/static/images/emoticons/emot-trashbear.gif", "height": 15, "width": 65, "added": 1255901012}, {"code": ":techno:", "description": "technobabble", "image": "http://sae.tweek.us/static/images/emoticons/emot-techno.gif", "height": 25, "width": 52, "added": 1255901012}, {"code": ":toughguy:", "description": "Internet Tough Guy", "image": "http://sae.tweek.us/static/images/emoticons/emot-toughguy.gif", "height": 22, "width": 26, "added": 1255901012}, {"code": ":toxx:", "description": "Toxx Clause", "image": "http://sae.tweek.us/static/images/emoticons/emot-toxx.gif", "height": 25, "width": 100, "added": 1255901012}, {"code": ":tubular:", "description": "Tubular, Dude.", "image": "http://sae.tweek.us/static/images/emoticons/emot-tubular.gif", "height": 25, "width": 80, "added": 1255901012}, {"code": ":uhaul:", "description": "Uhaul for leaving TFR", "image": "http://sae.tweek.us/static/images/emoticons/emot-uhaul.gif", "height": 25, "width": 95, "added": 1255901012}, {"code": ":vick:", "description": "kicks a touchdown", "image": "http://sae.tweek.us/static/images/emoticons/emot-vick.gif", "height": 25, "width": 100, "added": 1255901013}, {"code": ":whatup:", "description": "sup", "image": "http://sae.tweek.us/static/images/emoticons/emot-whatup.gif", "height": 25, "width": 100, "added": 1255901013}, {"code": ":wink:", "description": "wink", "image": "http://sae.tweek.us/static/images/emoticons/emot-wink.gif", "height": 25, "width": 90, "added": 1255901013}, {"code": ":wmwink:", "description": "The mouth to wink", "image": "http://sae.tweek.us/static/images/emoticons/emot-wmwink.png", "height": 25, "width": 90, "added": 1255901013}, {"code": ":wom:", "description": "WOM WOM WOM WOM", "image": "http://sae.tweek.us/static/images/emoticons/emot-wom.gif", "height": 25, "width": 100, "added": 1255901013}, {"code": ":woof:", "description": "God Woof! Woof! is a Fag", "image": "http://sae.tweek.us/static/images/emoticons/emot-woof.gif", "height": 25, "width": 52, "added": 1255901013}, {"code": ":wooper:", "description": "woopaaaah woopaaaaah", "image": "http://sae.tweek.us/static/images/emoticons/emot-wooper.gif", "height": 24, "width": 30, "added": 1255901013}, {"code": ":xie:", "description": "Yanks postseason troubles", "image": "http://sae.tweek.us/static/images/emoticons/emot-xie.gif", "height": 25, "width": 50, "added": 1255901013}, {"code": ":zerg:", "description": "ZERG RUSH!!!", "image": "http://sae.tweek.us/static/images/emoticons/emot-zerg.gif", "height": 15, "width": 60, "added": 1255901014}], "name": "Horrible & retarded shit we can't wait to delete"}, {"emoticons": [{"code": ":2bong:", "description": "TWO BONGS AT ONCE", "image": "http://sae.tweek.us/static/images/emoticons/emot-2bong.png", "height": 19, "width": 42, "added": 1255901014}, {"code": ":350:", "description": "shivadas", "image": "http://sae.tweek.us/static/images/emoticons/emot-350.gif", "height": 25, "width": 23, "added": 1255901014}, {"code": ":420:", "description": "Some horrible drug thing!", "image": "http://sae.tweek.us/static/images/emoticons/emot-weed.gif", "height": 14, "width": 15, "added": 1255901014}, {"code": ":catdrugs:", "description": "CAT DRUGS", "image": "http://sae.tweek.us/static/images/emoticons/emot-catdrugs.gif", "height": 25, "width": 100, "added": 1255901015}, {"code": ":dominic:", "description": "repurchase Dominic", "image": "http://sae.tweek.us/static/images/emoticons/emot-dominic.gif", "height": 15, "width": 15, "added": 1255901014}, {"code": ":drugnerd:", "description": "Good nerds got the hookup", "image": "http://sae.tweek.us/static/images/emoticons/emot-drugnerd.gif", "height": 21, "width": 33, "added": 1255901014}, {"code": ":lsd:", "description": "Ingestion of LSD", "image": "http://sae.tweek.us/static/images/emoticons/emot-lsd.gif", "height": 25, "width": 30, "added": 1255901014}, {"code": ":obama:", "description": "Obama is 44th", "image": "http://sae.tweek.us/static/images/emoticons/emot-obama.gif", "height": 20, "width": 20, "added": 1255901015}, {"code": ":shroom:", "description": "Flashing Mushroom", "image": "http://sae.tweek.us/static/images/emoticons/emot-shroom.gif", "height": 25, "width": 25, "added": 1255901015}, {"code": ":tinsley:", "description": "Glug glug glug, time to write a strip", "image": "http://sae.tweek.us/static/images/emoticons/classic_fillmore.gif", "height": 15, "width": 60, "added": 1255901015}, {"code": ":weed:", "description": "A ball of weed", "image": "http://sae.tweek.us/static/images/emoticons/emot-weed_.gif", "height": 25, "width": 60, "added": 1255901015}], "name": "Hey everybody I'm on drugs!"}, {"emoticons": [{"code": ":anime:", "description": "Ego Orb", "image": "http://sae.tweek.us/static/images/emoticons/emot-anime.png", "height": 25, "width": 24, "added": 1256126404}, {"code": ":asoiaf:", "description": "hbo's game of thrones", "image": "http://sae.tweek.us/static/images/emoticons/asoiaf.001.gif", "height": 20, "width": 90, "added": 1302890490}, {"code": ":baby:", "description": "Gotta love me", "image": "http://sae.tweek.us/static/images/emoticons/emot-baby.png", "height": 25, "width": 27, "added": 1255901015}, {"code": ":beck:", "description": "tinfoil-chalkboard-smug", "image": "http://sae.tweek.us/static/images/emoticons/beck.001.gif", "height": 25, "width": 50, "added": 1301317301}, {"code": ":bunt:", "description": "Bunt", "image": "http://sae.tweek.us/static/images/emoticons/bunt.001.gif", "height": 25, "width": 90, "added": 1310788888}, {"code": ":cadfan:", "description": "We are the CAD [Fans]", "image": "http://sae.tweek.us/static/images/emoticons/cadfan.001.gif", "height": 24, "width": 85, "added": 1313085690}, {"code": ":catstare:", "description": "I'm hitler IRL", "image": "http://sae.tweek.us/static/images/emoticons/catstare.001.gif", "height": 18, "width": 24, "added": 1291262489}, {"code": ":cedric:", "description": "Graham, watch out!", "image": "http://sae.tweek.us/static/images/emoticons/cedric.001.png", "height": 25, "width": 39, "added": 1303520491}, {"code": ":circlefap:", "description": "Circle Fap", "image": "http://sae.tweek.us/static/images/emoticons/emot-circlefap.gif", "height": 19, "width": 43, "added": 1255967020}, {"code": ":confuoot:", "description": "why am i tooting", "image": "http://sae.tweek.us/static/images/emoticons/confuoot.001.gif", "height": 25, "width": 29, "added": 1295409690}, {"code": ":derptiel:", "description": "aka downsparrot", "image": "http://sae.tweek.us/static/images/emoticons/derptiel.001.gif", "height": 25, "width": 15, "added": 1310176889}, {"code": ":dice:", "description": "Battlefield more like Bugfilled!", "image": "http://sae.tweek.us/static/images/emoticons/dice.001.gif", "height": 15, "width": 54, "added": 1303160492}, {"code": ":dukedog:", "description": "Duke Nukem is Forever", "image": "http://sae.tweek.us/static/images/emoticons/dukedog.001.png", "height": 25, "width": 58, "added": 1295708490}, {"code": ":edi:", "description": "That is a joke.", "image": "http://sae.tweek.us/static/images/emoticons/edi.001.gif", "height": 22, "width": 65, "added": 1285743686}, {"code": ":faggot:", "description": "Smug Jecht", "image": "http://sae.tweek.us/static/images/emoticons/emot-faggot.gif", "height": 25, "width": 30, "added": 1259276404}, {"code": ":feelsgood:", "description": "Feels Good Man", "image": "http://sae.tweek.us/static/images/emoticons/feelsgood.001.png", "height": 19, "width": 87, "added": 1301058090}, {"code": ":fella:", "description": "TOO MANY LIMES! TOO MANY LIMES!", "image": "http://sae.tweek.us/static/images/emoticons/fella.001.gif", "height": 25, "width": 24, "added": 1286236927}, {"code": ":fsn:", "description": "Tribute to LP", "image": "http://sae.tweek.us/static/images/emoticons/emot-fsn.gif", "height": 22, "width": 35, "added": 1278961285}, {"code": ":getin:", "description": "get in not go out", "image": "http://sae.tweek.us/static/images/emoticons/getin.001.gif", "height": 25, "width": 62, "added": 1297486892}, {"code": ":gurf:", "description": "gurf", "image": "http://sae.tweek.us/static/images/emoticons/emot-gurf.gif", "height": 21, "width": 27, "added": 1278081024}, {"code": ":hb:", "description": "Henrich Von Bastard", "image": "http://sae.tweek.us/static/images/emoticons/emot-hb.gif", "height": 25, "width": 25, "added": 1264946404}, {"code": ":helladid:", "description": "CreteLP Smilie", "image": "http://sae.tweek.us/static/images/emoticons/helladid.001.gif", "height": 25, "width": 50, "added": 1287003689}, {"code": ":heysexy:", "description": "Hey sexy", "image": "http://sae.tweek.us/static/images/emoticons/heysexy.001.gif", "height": 15, "width": 15, "added": 1308445293}, {"code": ":japan:", "description": "Japan", "image": "http://sae.tweek.us/static/images/emoticons/japan.001.gif", "height": 15, "width": 31, "added": 1296741692}, {"code": ":jeb:", "description": "Jeb Kerman: Thrillmaster", "image": "http://sae.tweek.us/static/images/emoticons/jeb.001.gif", "height": 25, "width": 19, "added": 1311231692}, {"code": ":jiggled:", "description": "jiggled again", "image": "http://sae.tweek.us/static/images/emoticons/emot-jiggled.gif", "height": 25, "width": 50, "added": 1270623605}, {"code": ":jp:", "description": "John Phillipe", "image": "http://sae.tweek.us/static/images/emoticons/emot-jp.gif", "height": 25, "width": 58, "added": 1279677685}, {"code": ":legion:", "description": "Consensus: Death by Gunshot", "image": "http://sae.tweek.us/static/images/emoticons/legion.001.gif", "height": 25, "width": 90, "added": 1286114488}, {"code": ":liara:", "description": "This takes me back...", "image": "http://sae.tweek.us/static/images/emoticons/liara.001.gif", "height": 25, "width": 90, "added": 1285743687}, {"code": ":m10:", "description": "it says mac-10, cool", "image": "http://sae.tweek.us/static/images/emoticons/emot-m10.gif", "height": 25, "width": 100, "added": 1255901016}, {"code": ":mcnabb:", "description": "Happy Donovan", "image": "http://sae.tweek.us/static/images/emoticons/emot-mcnabb.png", "height": 25, "width": 17, "added": 1262228406}, {"code": ":milkie:", "description": "da Moose is loose", "image": "http://sae.tweek.us/static/images/emoticons/milkie.001.gif", "height": 21, "width": 90, "added": 1311879695}, {"code": ":mordin:", "description": "A Scientist Salarian", "image": "http://sae.tweek.us/static/images/emoticons/emot-mordin.gif", "height": 23, "width": 42, "added": 1273683605}, {"code": ":moreevil:", "description": "evil for evil's sake", "image": "http://sae.tweek.us/static/images/emoticons/moreevil.001.gif", "height": 20, "width": 80, "added": 1296500492}, {"code": ":nixon:", "description": "Nixon's back!", "image": "http://sae.tweek.us/static/images/emoticons/emot-nixon.gif", "height": 25, "width": 19, "added": 1275717604}, {"code": ":nolan:", "description": "Let's Talk Batman Guys", "image": "http://sae.tweek.us/static/images/emoticons/emot-nolan.gif", "height": 20, "width": 86, "added": 1282446088}, {"code": ":notch:", "description": "Notch of Minecraft fame", "image": "http://sae.tweek.us/static/images/emoticons/notch.001.png", "height": 25, "width": 54, "added": 1294257691}, {"code": ":notfunny:", "description": "DocEvil", "image": "http://sae.tweek.us/static/images/emoticons/emot-notfunny.gif", "height": 25, "width": 17, "added": 1255901016}, {"code": ":nyan:", "description": "nyan cat", "image": "http://sae.tweek.us/static/images/emoticons/nyan.001.gif", "height": 21, "width": 53, "added": 1304492494}, {"code": ":ocelot:", "description": "You're pretty good!", "image": "http://sae.tweek.us/static/images/emoticons/emot-ocelot.gif", "height": 17, "width": 28, "added": 1255901016}, {"code": ":ohdearsass:", "description": "Worried Santa", "image": "http://sae.tweek.us/static/images/emoticons/ohdearsass.001.png", "height": 23, "width": 20, "added": 1291845692}, {"code": ":okpos:", "description": "stare with a bong", "image": "http://sae.tweek.us/static/images/emoticons/okpos.001.gif", "height": 25, "width": 25, "added": 1298826094}, {"code": ":parrot:", "description": "That fucking bird", "image": "http://sae.tweek.us/static/images/emoticons/emot-parrot.gif", "height": 25, "width": 35, "added": 1260417604}, {"code": ":pray:", "description": "all old folks go 2 heaven", "image": "http://sae.tweek.us/static/images/emoticons/emot-pray.gif", "height": 18, "width": 18, "added": 1269626404}, {"code": ":punto:", "description": "buntbuntbunt", "image": "http://sae.tweek.us/static/images/emoticons/emot-punto.gif", "height": 25, "width": 68, "added": 1255901016}, {"code": ":pwm:", "description": "PWM mascot", "image": "http://sae.tweek.us/static/images/emoticons/emot-pwm.gif", "height": 25, "width": 35, "added": 1262714405}, {"code": ":qq:", "description": "QQ", "image": "http://sae.tweek.us/static/images/emoticons/emot-qq.gif", "height": 20, "width": 20, "added": 1255901016}, {"code": ":qqsay:", "description": "get rid of :confused:", "image": "http://sae.tweek.us/static/images/emoticons/emot-qqsay.gif", "height": 25, "width": 86, "added": 1273820403}, {"code": ":ranbowdash:", "description": "It's gonna be SO Awesome!", "image": "http://sae.tweek.us/static/images/emoticons/ranbowdash.001.png", "height": 25, "width": 36, "added": 1302994898}, {"code": ":regd10:", "description": "Holy Diver", "image": "http://sae.tweek.us/static/images/emoticons/emot-regd10.png", "height": 25, "width": 100, "added": 1255901016}, {"code": ":riot:", "description": "Best online technical", "image": "http://sae.tweek.us/static/images/emoticons/riot.001.gif", "height": 25, "width": 27, "added": 1305352896}, {"code": ":rms2:", "description": "Free as in Freedom", "image": "http://sae.tweek.us/static/images/emoticons/rms2.001.png", "height": 25, "width": 25, "added": 1296680495}, {"code": ":rms:", "description": "wget and emailed", "image": "http://sae.tweek.us/static/images/emoticons/rms.001.png", "height": 25, "width": 63, "added": 1295830893}, {"code": ":rolldice:", "description": "totally having fun", "image": "http://sae.tweek.us/static/images/emoticons/rolldice.001.gif", "height": 15, "width": 39, "added": 1296968497}, {"code": ":russo:", "description": "Vince Russo", "image": "http://sae.tweek.us/static/images/emoticons/russo.001.gif", "height": 25, "width": 40, "added": 1303084898}, {"code": ":sbahj:", "description": "Shit got too reel for me.", "image": "http://sae.tweek.us/static/images/emoticons/emot-sbahj.gif", "height": 25, "width": 80, "added": 1273971605}, {"code": ":shepface:", "description": "Sexing aliens, you say?", "image": "http://sae.tweek.us/static/images/emoticons/emot-shepface.gif", "height": 25, "width": 26, "added": 1278081028}, {"code": ":shepicide:", "description": "I have no idea...", "image": "http://sae.tweek.us/static/images/emoticons/shepicide.001.gif", "height": 25, "width": 35, "added": 1285743691}, {"code": ":sicknasty:", "description": "Space Bro Garrus", "image": "http://sae.tweek.us/static/images/emoticons/emot-sicknasty.gif", "height": 25, "width": 72, "added": 1278081028}, {"code": ":smithfrog:", "description": "A sad old frog", "image": "http://sae.tweek.us/static/images/emoticons/emot-smithfrog.png", "height": 25, "width": 38, "added": 1256544004}, {"code": ":smugbird:", "description": "Smug Orioles Bird", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugbird.gif", "height": 25, "width": 37, "added": 1255901017}, {"code": ":smuggo:", "description": "Smuggo", "image": "http://sae.tweek.us/static/images/emoticons/emot-smuggo.gif", "height": 25, "width": 26, "added": 1256673604}, {"code": ":smugteddie:", "description": "Teddie from Persona 4", "image": "http://sae.tweek.us/static/images/emoticons/emot-smugteddie.gif", "height": 25, "width": 26, "added": 1275152404}, {"code": ":solanadumb:", "description": "are u a bark bark", "image": "http://sae.tweek.us/static/images/emoticons/emot-solanadumb.png", "height": 24, "width": 24, "added": 1267131604}, {"code": ":stare:", "description": "Astonished stare", "image": "http://sae.tweek.us/static/images/emoticons/emot-stare.gif", "height": 18, "width": 18, "added": 1280793691}, {"code": ":staredog:", "description": "staredog", "image": "http://sae.tweek.us/static/images/emoticons/staredog.001.gif", "height": 24, "width": 38, "added": 1303423302}, {"code": ":steam:", "description": "Steam", "image": "http://sae.tweek.us/static/images/emoticons/steam.001.gif", "height": 16, "width": 16, "added": 1293843695}, {"code": ":suspense:", "description": "Absolutely riveting.", "image": "http://sae.tweek.us/static/images/emoticons/suspense.001.gif", "height": 25, "width": 45, "added": 1301086899}, {"code": ":tali:", "description": "Incoming sperg in 5...4...", "image": "http://sae.tweek.us/static/images/emoticons/tali.001.gif", "height": 22, "width": 65, "added": 1285743693}, {"code": ":thumbsup:", "description": "hell yeah man", "image": "http://sae.tweek.us/static/images/emoticons/emot-thumbsup.gif", "height": 25, "width": 30, "added": 1279792890}, {"code": ":thurman:", "description": "Thurman football dude", "image": "http://sae.tweek.us/static/images/emoticons/emot-thurman.gif", "height": 25, "width": 22, "added": 1255901017}, {"code": ":tizzy:", "description": "twistmaster tizz", "image": "http://sae.tweek.us/static/images/emoticons/emot-tizzy.gif", "height": 17, "width": 17, "added": 1269392404}, {"code": ":turianass:", "description": "Turian Airqoute", "image": "http://sae.tweek.us/static/images/emoticons/emot-turianass.gif", "height": 25, "width": 37, "added": 1271620804}, {"code": ":tviv:", "description": "Shit just got real on TV", "image": "http://sae.tweek.us/static/images/emoticons/emot-tviv.gif", "height": 20, "width": 100, "added": 1265245204}, {"code": ":viconia:", "description": "bad moon rising", "image": "http://sae.tweek.us/static/images/emoticons/emot-viconia.gif", "height": 25, "width": 25, "added": 1261717207}, {"code": ":viggo:", "description": "Smug scholar", "image": "http://sae.tweek.us/static/images/emoticons/emot-viggo.gif", "height": 25, "width": 46, "added": 1274889606}, {"code": ":yum:", "description": "cereal!", "image": "http://sae.tweek.us/static/images/emoticons/yum.001.gif", "height": 18, "width": 31, "added": 1292000497}, {"code": ":zaeed:", "description": "Guddamn terrorists I said.", "image": "http://sae.tweek.us/static/images/emoticons/zaeed.001.gif", "height": 25, "width": 90, "added": 1291230096}, {"code": ":zpatriot:", "description": "Zombie Patriot", "image": "http://sae.tweek.us/static/images/emoticons/zpatriot.001.gif", "height": 25, "width": 32, "added": 1311555702}], "name": "New / Uncategorized"}, {"emoticons": [{"code": ":frogout3:", "description": "Heh", "image": "http://sae.tweek.us/static/images/emoticons/frog-ssj3.gif", "height": 79, "width": 154, "added": 1256840342}, {"code": ":grandma:", "description": "Grandma", "image": "http://sae.tweek.us/static/images/emoticons/emot-grandma.gif", "height": 15, "width": 15, "added": 1268245078}, {"code": ":w-hat:", "description": "w-hat", "image": "http://sae.tweek.us/static/images/emoticons/emot-w-hat.gif", "height": 15, "width": 30, "added": 1256171073}, {"code": ":yousuck:", "description": "You suck", "image": "http://sae.tweek.us/static/images/emoticons/emot-yousuck.gif", "height": 18, "width": 73, "added": 1273600240}], "name": "The Museum"}];
SAEmoteCodes = []
SAEmoteImageMap = {}
for(i=0, l=SAEmoteJSON.length; i<l; i++) {
for(j=0, l=SAEmoteJSON[i].emoticons.length; j<l; j++) {
node = SAEmoteJSON[i].emoticons[j];
SAEmoteCodes.push(node.code.replace(/(\(|\)|\*|\/|\.|\^|\,|\+|\?)/g, '\\\$1'));
SAEmoteImageMap[node.code] = node;
}
}
SAEmoteCodes = SAEmoteCodes.sort(function(a,b) { return a.length < b.length ? 1 : (a.length > b.length ? -1 : 0) });
SAEmoteCodes = SAEmoteCodes.join('|');
SAEmoteTest = new RegExp(SAEmoteCodes);
SAEmoteExec = new RegExp('(' + SAEmoteCodes + ')', 'g');
});
@leah
Copy link

leah commented Aug 30, 2011

Does this break SSL since it's pulling in non-https img urls?

@paul
Copy link
Author

paul commented Aug 30, 2011

It won't "break" it exactly, but I think it might trigger a "mixed content" warning on some browsers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment